Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Peter,
The problem has been fixed.
Please check and let us know.
Kiran
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hello,
Let us provide site url and admin credentials in private reply, so we can look into there.
Kiran
Thanks you 🙂
This reply has been marked as private.Hi Roman,
The problem has been fixed.
Please check and let us know.
Thanks,
KiranHi LLK,
Please see this post to know about how to use latitude & longitude to filter listings. https://wpgeodirectory.com/support/topic/json-api-to-search-near-by-venues/#post-382051
Merry Christmas from our GeoDirectory Team 🙂
Kiran
Hi Javier,
We have added a option in Stripe gateway setting to specify the language for the Stripe checkout modal. It will be available in next release.
Thanks,
KiranDecember 22, 2017 at 10:45 am in reply to: Details Page Sidebar – not displaying correct info #410342Hi Ryan,
The detail page address issue has been fixed.
There is BadgeOS plugin that causes problem by overwriting global post.
I have added following code snippet in your child theme functions.php file to fix this conflict.// Fix Details Page Sidebar – not displaying correct info function _gd_custom_fix_detail_page_address() { if ( class_exists( 'BadgeOS' ) && ( geodir_is_page( 'detail' ) || geodir_is_page( 'preview' ) ) ) { remove_filter('next_post_link', 'badgeos_hide_next_hidden_achievement_link'); remove_filter('previous_post_link', 'badgeos_hide_previous_hidden_achievement_link'); } } add_action( 'template_redirect', '_gd_custom_fix_detail_page_address', 10 );Try after clearing GD Booster cache & your browser cache.
Let us know.Thanks,
KiranHi Piyush,
Thanks for letting us know :).
Use following code snippet to prevent GD detail page for non logged user.
function _gd_custom_prevent_detail_page() { if ( ! is_user_logged_in() && geodir_is_page( 'detail' ) ) { $redirect_to = geodir_login_url( array( 'redirect_to' => urlencode( geodir_curPageURL() ) ) ); // Redirect to GD login page //$redirect_to = home_url(); // Redirect to home page wp_redirect( $redirect_to ); exit; } } add_action( 'template_redirect', '_gd_custom_prevent_detail_page' );Kiran
December 22, 2017 at 7:26 am in reply to: Details Page Sidebar – not displaying correct info #410328This reply has been marked as private.Hi Piyush,
Finally found that the Yoast setting causing conflict with GeoDirectory search variables.
When i checked “No redirect” for SEO > Advanced > Permalinks > “Redirect ugly URLs to clean permalinks. (Not recommended in many cases!)” the near me search worked fine.
So to work near me search, you have to disable that redirect option as it already says “(Not recommended in many cases!)”.
Let us know.
Thanks,
Kiran -
AuthorPosts