Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Hi Joy,
We are doing final testing today, it will be monday/tuesday for release.
Thanks,
Stiofan
Hi Mike,
I just tested to be sure and it does not happen for me on our test site.
Can you please provide wp-admin details in a private reply and i will take a look.
Thanks,
Stiofan
If that did not help it might be related to the theme…
On what page did u see the DB error?Stiofan
That plugin is a 3rd party plugin, you can find the link to the support on the product page at the bottom of the sidebar.
Thanks,
Stiofan
Thanks for the info, it seems to be theme related,
i have added a temp fix to out code in custom_taxonomy_hooks_actions.php lin 755
changed to:if ($_SERVER['REQUEST_URI']!='/' && $gd_session->get('gd_multi_location') == 1) { $wp->query_vars['gd_country'] = $gd_session->get('gd_country'); $wp->query_vars['gd_region'] = $gd_session->get('gd_region'); $wp->query_vars['gd_city'] = $gd_session->get('gd_city'); }Hopefully this will be fixed in GDv2 but in the next release of GDv1 this will need to be added again, you can just ask us to do it here.
Thanks,
Stiofan
Thanks for the info.
It seems to be either the theme or the unyson plugin.
Can you try disabling parts of the unyson plugins addons and check the search to see what one it is.Thanks,
Stiofan
For the claimed thing, what values are in the claimed column when u export to CSV? If they are not claimed u can change it there and re import.
I just tried the send to friend and it worked…
Stiofan
February 2, 2018 at 2:21 pm in reply to: Customize search condition in search widget of geoDirectory #415637If you implement what we are suggestion we can then give you a code snippet that will set the category in the dropdown to be the current one pretty easily.
If not you probably want to look here:
https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/listing_filters.php#L743Thanks,
Stiofan
February 2, 2018 at 2:14 pm in reply to: Allow subscribers to link their listing to gd_place post type #415636🙂
February 2, 2018 at 12:32 pm in reply to: ANNOUNCEMENT: Upcoming change to Yelp Fusion API Authentication – What to do? #415615HI Kent,
The social importer is meant to allow users to pre populate their listing info from their facebook/yelp, the user has permission to use this info so there is no issue.
Thanks,
Stiofan
I removed the map api call via a code snippet and it now seems to have removed the JS error but it was always working for me, can u check now.
For search it seems to be a plugin conflict changing the queries, can u provide FTP and i will track down what one it is.
Thanks,
Stiofan
This reply has been marked as private.February 2, 2018 at 11:15 am in reply to: Customize search condition in search widget of geoDirectory #415594Hi Jamie,
Guust’s answer above will do exactly what you want.
( We are currently working on GDv2, any snippet i give you to change this in the query will likely break on its release. )
Thanks,
Stiofan
February 2, 2018 at 11:06 am in reply to: Remove Categories on Details – Both under title and in sidebar #415592There is not way to remove it BEFORE it processes it but you can remove it from being output on the page with this snippet
add_filter('sd_details_output_cat_links','__return_false');Thanks,
Stiofan
The closest filter is ‘sd_details_output_address’, you would use it like
add_filter('sd_details_output_address','_my_filter_function'); function _my_filter_function($sd_address){ // we need to go above $sd_address = "My sub title" . $sd_address; return $sd_address; }Thanks,
Stiofan
-
AuthorPosts