Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
🙂
(#2 u would need some JS or u could remove the box and add your own
add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 );)
Can you please provide FTP info and i’ll debug the rest.
Thanks,
Stiofan
Yes i would guess its a conflict, something redirecting the author page.
If you provide FTP we might be able to track it down quicker.Stiofan
Yes it is cancelled.
Thanks,
Stiofan
This is not possible without customisation.
You would need to create your own JS functions like our one “function calcRoute()”
and add waypoints: https://developers.google.com/maps/documentation/javascript/examples/directions-waypointsThanks,
Stiofan
The locations depends on the url and the pages have no locations info in the url so it will not work.
Stiofan
Hello,
If you use our claim listing manager it will solve your problems, you will get a link to the users BP profile on the page and you can set what CPT’s to activate it on so you can disable it for some and have it active for others.
Thanks,
Stiofan
This reply has been marked as private.Thanks for the info, please check now.
Stiofan
July 10, 2017 at 5:26 pm in reply to: Importing Places deletes my homepage and makes one of the listings my home page #386404Hello,
I guess you are importing with ID’s and setting to update?
“Update listing if post with post_id already exists.”
instead of
“Ignore listing if post with post_id already exists.”The new listings on the site will share the same ID as the dev new PAGES and will break things like this.
Please check and let me know if you have any further problems.
Thanks,
Stiofan
Great, thanks for letting us know.
Stiofan
You are welcome 🙂
Do you have the GD BudyPress addon installed and BuddyPress?
Stiofan
You have reviews disabled for all CPTs under GD>General>Disable review stars for CPT
Please remove what ones you need, save and then try.Thanks,
Stiofan
Not tested but it would be something like this:
add_filter('body_class','gd_price_custom_body_class'); function gd_price_custom_body_class($classes) { global $post; $package_id = ''; if(geodir_is_page('detail')){ $package_id = isset($post->package_id) ? $post->package_id : ''; }elseif(geodir_is_page('preview')){ $package_id = isset($_POST['package_id']) ? $_POST['package_id'] : ''; if(!$package_id && isset($_POST['pid']) ){ $package_id = geodir_get_post_meta($_POST['pid'], 'package_id', true); } } if ( $package_id && ( $post->package_id == 64 || $post->package_id == 65 || $post->package_id == 66 || $post->package_id == 67 || $post->package_id == 68 || $post->package_id == 69 || $post->package_id == 70 || $post->package_id == 71 || $post->package_id == 72 || $post->package_id == 73 || $post->package_id == 74 || $post->package_id == 75 || $post->package_id == 76 || $post->package_id == 77 || $post->package_id == 78 || $post->package_id == 79 || $post->package_id == 80 ) ) { $classes[] = 'premium-eintrag'; } else {} // return the modified $classes array return $classes; }“Just saw this at the bottom of that documentary page:”
What page?Stiofan
-
AuthorPosts