Paolo

Forum Replies Created

Viewing 15 posts - 10,306 through 10,320 (of 27,715 total)
  • Author
    Posts
  • in reply to: Error since last update #263396

    Paolo
    Site Admin
    Post count: 31211

    Sometimes simply the FB API doesn’t pass the right information.

    In this case it seems a bit weird, especially for the date and address fields.

    I asked to the developers to double check and let us know if they see anything wrong on our side.

    Thanks for your patience,

    in reply to: Problem with url translation #263363

    Paolo
    Site Admin
    Post count: 31211

    Hi Giacomo,

    You are running a mix of updated and outdated add-ons with an outdated version of the core plugin.

    In addition both WordPress, WPML and other plugins are not up to date.

    Please update everything and let us know if the problem is still there after it.

    Thanks

    in reply to: GD Stripe payment manager #263360

    Paolo
    Site Admin
    Post count: 31211

    You are welcome 🙂

    in reply to: Near Me Home Page Breadcrumbs #263358

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    the near me page is not the home page is a location page and the location page has a breadcrumb.

    If you provide admin credentials in a private reply I’ll have a look at your website directly. Probably there is a css conflict with something else.

    Let us know,

    Thanks

    in reply to: upcoming events widget and events not displaying #263357

    Paolo
    Site Admin
    Post count: 31211

    Thanks for letting us know 🙂

    in reply to: GD Stripe payment manager #263356

    Paolo
    Site Admin
    Post count: 31211

    Thanks for letting us know 🙂

    in reply to: Restricting Search Criteria #263353

    Paolo
    Site Admin
    Post count: 31211

    My bad, I mixed up the css:

    
    
    .ac_input, .near-compass, ..sd.home .featured-area .geodir-category-list-in  {
        display: none;
    }

    This will work. Let me know when you fixed this so that I check the near me page.

    Thanks

    in reply to: upcoming events widget and events not displaying #263347

    Paolo
    Site Admin
    Post count: 31211

    HI,

    I’m not sure I see the same problem that you see on your website. Everything looks correct to me. i see the events widget in home page and events are showing everywhere.

    The plugin must be activated per website, never network activate them.

    Let me know specifically what’s not working if you still see problems.

    Thanks

    in reply to: Restricting Search Criteria #263338

    Paolo
    Site Admin
    Post count: 31211

    If you want to remove the 2 fields from every form change the css I’ve given you with this:

    
    
    .ac_input, .near-compass, .sd.home .featured-area .sd.home .featured-area .geodir-category-list-in  {
        display: none;
    }

    For the near me page I’ll need a link, images cannot be inspected.

    Thanks

    p.s. if you are enjoying GD and our support, please consider leaving a nice review here: https://wordpress.org/support/plugin/geodirectory/reviews/

    We would really appreciate it… 🙂

    in reply to: GD Stripe payment manager #263332

    Paolo
    Site Admin
    Post count: 31211

    You need to remove the Stripe plugin from the plugin folder via FTP to restore it, or install the Multibyte String PHP extension that is also needed for plenty of other things and should take seconds for your server admin to do.

    Let us know when the site is back up, otherwise please provide FTP credentials.

    Thanks

    in reply to: Restricting Search Criteria #263331

    Paolo
    Site Admin
    Post count: 31211

    In that case you will need:

    
    
    .sd.home .featured-area .ac_input, .sd.home .featured-area .near-compass {
        display: none;
    }

    The only way to add a link below the search form is to edit this function: sd_homepage_featured_content which uses this action:

    sd_homepage_content

    .

    This is how I would do it.

    
    
    // we remove everything from the home page
    remove_action('sd_homepage_content','sd_homepage_featured_content');
    
    // we copy the function sd_homepage_featured_content rename it and edit it
    function my_sd_homepage_featured_content(){
    
                    if (is_singular() && $location = do_shortcode('[gd_current_location_name]')) { ?>
                        <h1 class="entry-title"><?php echo $location; ?></h1>
                    <?php } else { ?>
                        <h1 class="entry-title"><?php the_title(); ?></h1>
                    <?php }
    
                    $sub_title = get_post_meta(get_the_ID(), 'subtitle', true);
    
                    if (geodir_is_page('location') && defined('GEODIRLOCATION_VERSION')) {
                        $loc = geodir_get_current_location_terms();
                        $location_type = geodir_what_is_current_location();
                        $country_slug = '';
                        $region_slug = '';
                        if ($location_type == 'city') {
                            $slug = $loc['gd_city'];
                            $region_slug = $loc['gd_region'];
                            $country_slug = $loc['gd_country'];
    
                        } else if ($location_type == 'region') {
                            $slug = $loc['gd_region'];
                            $country_slug = $loc['gd_country'];
                        } elseif($location_type == 'country') {
                            $slug = $loc['gd_country'];
                            $country_slug = $loc['gd_country'];
                        }
                        else {
                            $slug = '';
    
                        }
                        $seo = geodir_location_seo_by_slug($slug, $location_type, $country_slug, $region_slug);
                        $tagline = (isset($seo->seo_image_tagline)) ? $seo->seo_image_tagline : '';
                        if ($tagline) {
                            $sub_title = stripslashes($tagline);
                        }
    
                    }
                    if (isset($sub_title)) {
                        echo '<div class="entry-subtitle">' . $sub_title . '</div>';
                    }
    
                echo do_shortcode('[gd_advanced_search]');
    // we comment out the popular category shortcode completely.
                //echo do_shortcode('[gd_popular_post_category category_limit=5]');
    // we add the link needed before the chevron
                echo '<a href="YOUR_URL">YOUR_ANCHOR_TEXT</a>';
                echo '<div class="home-more" id="sd-home-scroll"><a href="#sd-home-scroll" ><i class="fa fa-chevron-down"></i></a></div>';
    
    }
    
    // we add everything back on the home page
    add_action('sd_homepage_content','my_sd_homepage_featured_content');

    Remember to change echo ‘YOUR_ANCHOR_TEXT‘; and add your url and anchor text.

    The best way would be to use code snippet plugin to make this changes so that future updates will not wipe them out.https://wordpress.org/plugins/code-snippets/

    Thanks

    in reply to: Search no longer works #263328

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    you don’t have a Google Maps API key : https://wpgeodirectory.com/docs/add-google-api-key/

    Once you create and set one for your website everything will start working correctly.

    Thanks

    in reply to: Sliding search #263324

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    currently not without a customization, the Advance search add-on doesn’t provide sliders as selectors.

    Thanks

    in reply to: Map not showing #263323

    Paolo
    Site Admin
    Post count: 31211

    Hi Scott,

    there is no need to open a new topic if there is already one about this: https://wpgeodirectory.com/support/topic/map-cluster-not-working-2/

    We’ll continue there to avoid confusion.

    Thanks

    in reply to: Problem with url translation #263322

    Paolo
    Site Admin
    Post count: 31211

    Ciao Giacomo,

    please provide a link and admin credentials and we will have a look at your settings.

    Let us know,

    Thanks

Viewing 15 posts - 10,306 through 10,320 (of 27,715 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount