Kiran

Forum Replies Created

Viewing 15 posts - 1,816 through 1,830 (of 6,022 total)
  • Author
    Posts
  • in reply to: Multiple issue after V2 upgrade #497314

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Business Hours translation #497307

    Kiran
    Moderator
    Post count: 7069

    Hello Martin,

    Please try now after clearing your browser cache.

    Kiran

    in reply to: Location Page Map #497114

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Fail post to facebook #497113

    Kiran
    Moderator
    Post count: 7069

    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 changes

    Now check Post To Facebook from any listing(Edit Listing page).

    Let us know.

    Kiran

    in reply to: Multiple issue after V2 upgrade #497102

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Multiple issue after V2 upgrade #497096

    Kiran
    Moderator
    Post count: 7069

    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,
    Kiran

    in reply to: updates to CPT saving, but not showing. #497072

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Filter for geodir_listing_belong_to_user #497069

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Business Hours translation #497066

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Fail post to facebook #496979

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Google geocode failed #496951

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: custom fields are not showing #496948

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.

    Kiran
    Moderator
    Post count: 7069

    Hello 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

    in reply to: User Frontend Updates Failing #496945

    Kiran
    Moderator
    Post count: 7069

    Hi Adam,

    I have fixed issue and patch applied on your site. Please check and let us know.

    Kiran

    in reply to: edit / upgrade listing not possible -> page not found #496933

    Kiran
    Moderator
    Post count: 7069

    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

Viewing 15 posts - 1,816 through 1,830 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount