Alex Rollin
Forum Replies Created
-
AuthorPosts
-
You have created the search page with Divi?
Please share credentials for the site in a private reply along with a link to the backend editor for the search archive so we can check the settings.
You will want to make your link to the page look like:
/add-event/?listing_type=gd_event
The code is
.geodir-loop-actions-container, .gd-search-field-near { display: none!important; }
In file: https://www.suitevacations.com/wp-content/cache/et/1733/et-core-unified-15754070809581.min.css
I cannot understand why that is happening. I have flagged your topic for the developers to take a look.
That URL does not appear to be supported by WP. Only certain services are supported for the automatic embed and that does not appear to be one of them.
December 5, 2019 at 10:13 pm in reply to: Distance to current post or Search Sorting by Distance #520180This reply has been marked as private.December 5, 2019 at 10:12 pm in reply to: Distance to current post or Search Sorting by Distance #520179Try searching for Prague on your site, and you can see the distance next to the title.
Yes! I have flagged your topic and they will look into it!
Please share WP Admin credentials in a private reply so we can check the settings.
This reply has been marked as private.We have plans to enable some form of automatica geolocation but we haven’t done it yet.
For now you can encourage your visitors to use the Near Me button, which you can place on your site with a shortcode or widget.
Pressing the button will give your uses the chance to disclose their location or set it manually.
https://wpgeodirectory.com/docs-v2/geodirectory/design-elements/#gd_location_near_me
This reply has been marked as private.Yes
1. The developers will take a look.
2. You can set your Maps API to OSM, and then force the add listing page to use Google.
First set your Maps API to Google.
Get both keys setup, one for Maps and one for GeoCoding. Place them in GD – Settings – General Maps Settings
Add this snippet (More about adding snippets)/** * Load Google map on admin backend add or edit listing page. */ function gd_snippet_admin_add_listing_map_name( $map ) { global $post, $pagenow; if( ( 'edit.php' === $pagenow || 'post.php' === $pagenow || 'post-new.php' == $pagenow ) && ! empty( $post->post_type ) && geodir_is_gd_post_type( $post->post_type ) ) { $map = 'google'; // google or osm } return $map; } add_filter( 'geodir_map_name', 'gd_snippet_admin_add_listing_map_name', 20, 1 ); /** * Load Google map on frontend add or edit listing page. */ function gd_snippet_map_name( $map ) { if ( geodir_is_page( 'add-listing' ) ) { $map = 'google'; // google or osm } return $map; } add_filter( 'geodir_map_name', 'gd_snippet_map_name', 20, 1 );
Like which one specifically should not be there?
-
AuthorPosts