Kiran
Forum Replies Created
-
AuthorPosts
-
Hi,
Please check and let us know.
Regards,
KiranHi Peter,
– The page links are now replicating the country twice and I have tried editing in Permalinks to no avail.
It looks like page conflicts with country slug. Make sure you have not assigned “south-africa” slug to any page. If you have used “south-africa” for any page then change it.
—
– The lists of results arent showing in the list but are in the map (this is also true on the detail webpage):
– KwaZulu-Natal shows twice on the homepage Province list but shows no records when you click on eitherCheck after fixing page slug mentioned in 1).
—
– Is there a way to search company name in the search bar?
You can assign field in search from CPT(Places) > Settings > Search
Let us know.
KiranThanks for letting us know.
Kiran
Hi filisara,
Please try following PHP snippet for GDv2.
/** * Dequeue core scripts & styles on non GD pages. * * Note: This may cause JavaScript errors when page contains widget/shortcode from GD. */ function gd_snippet_dequeue_scripts() { if ( class_exists( 'GeoDir_Frontend_Scripts' ) && ! geodir_is_geodir_page() ) { global $geodir_location_manager; // GeoDirectory remove_action( 'wp_enqueue_scripts', array( 'GeoDir_Frontend_Scripts', 'load_scripts' ) ); remove_action( 'wp_print_scripts', array( 'GeoDir_Frontend_Scripts', 'localize_printed_scripts' ), 5 ); remove_action( 'wp_print_footer_scripts', array( 'GeoDir_Frontend_Scripts', 'localize_printed_scripts' ), 5 ); // Location Manager if ( ! empty( $geodir_location_manager ) ) { remove_action( 'wp_enqueue_scripts', array( $geodir_location_manager, 'add_styles' ), 10 ); remove_action( 'wp_enqueue_scripts', array( $geodir_location_manager, 'add_scripts' ), 10 ); } } } add_action( 'wp', 'gd_snippet_dequeue_scripts', 100 );
Regards,
KiranHi Irmgard,
I have applied patch, please check and let us know.
Regards,
KiranNovember 18, 2019 at 1:17 pm in reply to: Category search list as checkboxes instead of dropdown #517628Hi Anitra,
I have some changes to update for Beaver Builder compatibility, please provide us FTP credentials to check on your site.
Regards,
KiranNovember 18, 2019 at 7:13 am in reply to: Open listing details in new tab when click on bubble description #517597This reply has been marked as private.November 18, 2019 at 5:48 am in reply to: Open listing details in new tab when click on bubble description #517591Hi Frank,
For GDv2 use following PHP snippet to open post link in a new window from map popup.
/** * Open post link in a new window from map popup. */ function gd_snippet_191118_wp_super_duper_widget_output( $output, $instance, $args, $super_duper ) { if ( $output != '' && ! empty( $super_duper ) && ! empty( $super_duper->options['base_id'] ) && in_array( $super_duper->options['base_id'], array( 'gd_post_title', 'gd_post_images' ) ) ) { $output = str_replace( array( ' href="', " href='" ), array( ' target="_blank" href="', " target='_blank' href='" ), $output ); } return $output; } add_filter( 'wp_super_duper_widget_output', 'gd_snippet_191118_wp_super_duper_widget_output', 20, 4 );
Regards,
KiranThe Featured field is still not resolved.
Sorting works as expected as per setup. Let us know what you found wrong there.
First two listings have set price range, that’s why both listings are at the top of the results in ascending order.
Kiran
Hi Irmgard,
Provide a site link, admin & FTP credentials, i will apply patch on your site.
Regards,
KiranHi Hui,
With random sorting it cache the results(when loaded first time) for 24 hours.
Try following PHP snippet to refresh random sorted results on each page refresh.
add_filter( 'geodir_rand_seed', '__return_null' ); // Random results on each refresh.
Regards,
KiranThanks for the kind words.
Just let us know if you see any issue.
Kiran
Hi jotomas,
I have re-saved WPML Settings & Permalinks Settings and it looks like issue is fixed.
Please check and confirm.
Regards,
KiranNovember 16, 2019 at 7:23 am in reply to: Category search list as checkboxes instead of dropdown #517423Hi Anitra,
I looks like was a cache issue. I have created cache by clicking on “Purge SG Cache”. Now search page shows results fine.
Please check and let us know.
Regards,
KiranThis reply has been marked as private. -
AuthorPosts