Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hello Martin,
Please try now after clearing your browser cache.
Kiran
This reply has been marked as private.Hello memorex13,
I have fixed issue and patch applied on your site.
Do following steps to check:
– Go to GeoDirectory > Settings > Social Importer > Refresh Token
– Select FB page
– Save changesNow check Post To Facebook from any listing(Edit Listing page).
Let us know.
Kiran
Hello Carl,
I have applied patch in your site. Now you can manage sidebar for GD Pages from Pages > GD Archive > Sidebars & Pages > GD Details > Sidebars
Kiran
Hello Carl,
1. A bullet pount has appeared before the categpry check ;ist on the map.
I have added following CSS at Appearance > Customize > Additional CSS.
.entry .geodir-map-wrap .geodir-map-terms li, .entry .geodir-post-slider .geodir-direction-nav > li { list-style-type: inherit; } .widget-container [class*="geodir-"] li { background: none; padding: inherit; }—
2. The Places are displaying an excerpt on the top of the page.
This excerpt is added by theme. I added following CSS to hide it..post-listing.gd_place > .single-post-caption { display: none; }—
3. I cant switch off the default sidebars (various adverts) It should be the places address, map, ratings and contact/social media details.
I have added some compatibility changes for Jarida theme. But FTP credentials are not working so can’t apply patch on your site. Please provide FTP credentials so we can check patch on your site.
Let us know.
Best Regards,
KiranThis reply has been marked as private.Hello There,
This has been implemented and it will be in next version v2.0.0.65.
Patch available at here: https://github.com/AyeCode/geodirectory/pull/854/commits/0405f5e7294773d52c8f778cd482a187d1c4a444
Kiran
This reply has been marked as private.This reply has been marked as private.Hi Angela,
Google Geocode API is not working with API Key which are restricted by HTTP Referrer. We have added new option under GeoDirectory > Settings > General to add API Key for Geocode service. If main API Key has HTTP Referrer restriction added then it must have separate API Key wihout HTTP Referrer restriction for Geocode service.
We have released v2.0.0.64 please update and let us know how it goes.
Kiran
This reply has been marked as private.July 10, 2019 at 11:32 am in reply to: Supreme (v1) 'Claim Listing ' shortcode or widget required if possible. #496946Hello Ian,
Please try following PHP snippet.
//usage editor: [gd_claim_link class="" icon="false"] //usage php: echo do_shortcode('[gd_claim_link class="" icon="false"]'); function geodir_claim_link_sc($atts) { if (function_exists('geodir_load_translation_geodirclaim')) { global $post, $preview; $defaults = array( 'class' => 'supreme-btn supreme-btn-small supreme-edit-btn', 'icon' => "true", 'link_text' => __('Claim', 'directory-starter') ); $params = shortcode_atts($defaults, $atts); ob_start(); $geodir_post_type = array(); if (get_option('geodir_post_types_claim_listing')) $geodir_post_type = get_option('geodir_post_types_claim_listing'); $posttype = (isset($post->post_type)) ? $post->post_type : ''; if (in_array($posttype, $geodir_post_type) && !$preview) { $is_owned = absint(geodir_get_post_meta($post->ID, 'claimed', true)); if (get_option('geodir_claim_enable') == 'yes' && empty($is_owned)) { if (is_user_logged_in()) { echo '<div class="geodir-company_info" style="border: none;margin: 0;padding: 0">'; echo '<div class="geodir_display_claim_popup_forms"></div>'; echo '<a href="javascript:void(0);" class="'.$params['class'].' geodir_claim_enable">'; if ($params['icon'] == 'true') { echo '<i class="fa fa-question-circle"></i>'; } echo $params['link_text']; echo '</a>'; echo '</div>'; echo '<input type="hidden" name="geodir_claim_popup_post_id" value="' . $post->ID . '" />'; } else { $site_login_url = geodir_login_url(); echo '<a href="' . $site_login_url . '" class="'.$params['class'].'">'; if ($params['icon'] == 'true') { echo '<i class="fa fa-question-circle"></i>'; } echo $params['link_text']; echo '</a>'; } } } $output = ob_get_contents(); ob_end_clean(); return $output; } } add_shortcode('gd_claim_link', 'geodir_claim_link_sc');Add above code via PHP snippet plugin or add in parent theme/child theme functions.php file.
Use shortcode
[gd_claim_link class="" icon="false"]to show claim link with text.
Kiran
Hi Adam,
I have fixed issue and patch applied on your site. Please check and let us know.
Kiran
Hello,
You have “Partner: Musik & Entertainment” field mandatory, but in field setting no required field error saved.
If during submit anu required field is empty then it will scroll to field and shows the error. If no required field error saved in setting then it just scroll to the field.Let us know if this is not the case.
Kiran
-
AuthorPosts