Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
You can show any info there but it will show on all list views not just favs, doing just favs would require a little customization.
Stiofan
All i did last time was go to Dashboard>Updates and reinstall WP, but i think you might have other files missing in other places. The best thing to do is look at the server error log, it will usually point you in the right direction.
Stiofan
The search form field name should be “s” but it is “disc”? That must be a cusotmisations and is likely the problem.
Thanks,
Stiofan
You have many many folders in the FTP, what is the correct path for that site?
Stiofan
February 16, 2018 at 10:28 am in reply to: GD Booster causing issues with payment update field #417901You are welcome Ian! 🙂
No it does not look like it would affect it.
I do see that it is set to only run on the details page which i assume is wrong, i think u want it on the listings page
geodir_is_page('detail')
should be
geodir_is_page('listing')
Stiofan
Please provide FTP details and we will apply a fix.
Thanks,
Stiofan
‘add-listing’ i think is what you want to look for, but why not just hide it with the price package settings?
Stiofan
This is not possible at the moment, we used to have a ip limit but it was causing problems for some customers who had users in big office blocks or university’s with shared IP.
We will look into it more in v2.
Stiofan
add_filter( 'body_class', 'my_add_package_class',10,1 ); function my_add_package_class($class){ global $post; $package_id = isset($post->package_id) ? $post->package_id :geodir_get_post_meta($post->ID, 'package_id', true); if (geodir_is_page('detail') && isset($package_id)) { $class[] = "gd-package-id-".$package_id; } return $class; }
Stiofan 🙂
February 15, 2018 at 6:29 pm in reply to: Understanding OpenStreetMap, auto-fill API and saving cities (locationss) #417800If you know how to use the chrome inspector you can see the return in the “network” tab.
The Lahr/Schwarzwald is just on one big line address, not split into sections so its impossible to grab the right info.
Stiofan
February 15, 2018 at 1:29 pm in reply to: Understanding OpenStreetMap, auto-fill API and saving cities (locationss) #417767i added the fix to your site above that fixes #2.
The suggested address does contain that part but there is no way for me to be able to reliably know what part of that string is a city/town.
The api return for the #2 is below:
country : "Germany" country_code : "de" county : "Ortenaukreis" house_number : "6" postcode : "77743" residential : "Schutterzell" road : "Unditzstraße" state : "Baden-Württemberg" state_district : "Regierungsbezirk Freiburg" suburb : "Ottenweier Hof" village : "Neuried"
February 15, 2018 at 12:00 pm in reply to: Understanding OpenStreetMap, auto-fill API and saving cities (locationss) #417748This reply has been marked as private.February 15, 2018 at 11:49 am in reply to: GD Booster causing issues with payment update field #417745Hi Ian,
Thanks for the info, i managed to replicate the problem which seemed to be related to the “magnific-popup.min.js” file requiring jquery but being loaded before jquery was loaded, i have told GDB to load it after and the issue seems to be resolved, i have now left GDB ON.
Thanks,
Stiofan
Great! 🙂
-
AuthorPosts