Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
It looks like you have it set to random sort, which makes all queries “random”…
Stiofan
We restricted the term search from searching multiple terms , it was sometimes giving false positives and could slow down search times when searching multiple words.
We are currently working on the best way to handle this. (do we match all, or just one word etc, yelp for example must match all words)Stiofan
When you first moved the site did u do a text search and replace of the site url? I am guessing you did as this would be the exact result..
Copy the DB again and this time only change the option values home_url and site_url then you will have access to thebackend, there u can use better search replace to replace the url everywhere else.If you are asking then i guess you have not, it is usually done with hooks.
Have u looked at the source code of the page to confirm its not loading all locations?
Stiofan
I made a slight change to the code but i also noticed your address seesm to be the whole address, it shoudl just be the street as the region and city are already filled in.
if i enter “대한민국 성산로 31” then it works.Stiofan
The ajax switcher should ajax load anyway, it only loads a few by default unless you set itt o load more.
Stiofan
Thanks for letting us know! 🙂
Thanks for the info, the problem seems to be a conflict between GD and the AviaBuilder, i added the snippet below to fix it.
add_action( 'add_meta_boxes', '_my_remove_actions',0 ); function _my_remove_actions(){ global $post; if(isset($post->post_type) && in_array($post->post_type, geodir_get_posttypes())){ remove_action('dbx_post_sidebar', array( Avia_Builder(), 'handler_wp_dbx_post_sidebar'), 10); } }
Stiofan
Not tested but something like below:
add_filter('geodir_action_get_request_info','_my_edit_save_request'); function _my_edit_save_request($request_info){ //print_r($request_info);exit; // for testing // anything changed here will change the post info $request_info['post_title' = 'zzzzz'; return $request_info; }
As i stated here: https://wpgeodirectory.com/support/topic/diffuse-pins/#post-419602
There was problems with the Google implementation the last time i tried to implement this.It is on our list of things to look at again but there are many things to be done first.
It is not possible at the moment.Stiofan
Please provide FTP details and i will look further.
Thanks,
Stiofan
@guust, yes that will work in GDv2.
Stiofan
March 5, 2018 at 12:05 pm in reply to: Send to a friend and review notifications not legal in Germany #420348Most servers won’t send email from a random email address, hence why they are sent from the website address. are u sure this applies if the action is initiated by a friend?
GDv2 will change this up a bit, i’m interested to hear others views.
Stiofan
Hi Tom,
Things will be changing in GDv2 but for now i think the hook u want is
$request_info = apply_filters('geodir_action_get_request_info', $request_info);
This filters the save listing request info.
Thanks,
Stiofan
Yelp changed the API system again, i have released a new ver of social importer, please update and then enter your new api key in the setting.
Thanks,
Stiofan
-
AuthorPosts