Kiran
Forum Replies Created
-
AuthorPosts
-
October 26, 2017 at 10:39 am in reply to: validate_field() Not Called After Setting Value of Address From Map Dragend #402679
Hi Lauren,
We have updated the fix. https://github.com/GeoDirectory/geodirectory/commit/0cfe2ea347f4f13335234827f081ebcde3e0398b
Thanks for spotting.Kiran
Thanks for letting us know 🙂
Hello,
This is because you have chosen “Current location page (ex: mysite.com/location/glasgow/)” at GeoDirectory > MultiLocations > Location Settings > Home page should go to.
If you have chosen to set home page to current location then it uses current location url as a home page link.Let us know.
Thanks,
KiranHi Peter,
Now option added in related listing widget to sort nearest listings. It will be available in next release.
If you want to fix right now on your site then update this patch https://github.com/GeoDirectory/geodirectory/pull/450/commits/80f2ec17be163edce3bd7a45c117622911cb62b7Kiran
Hi Josh,
I have done some debugging and now seems problem has been fixed.
I have done:
– Run GeoDirectory > GD Tools > GD pages check & GeoDirectory > GD Tools > Clear all GD version numbers
– Re-saved GeoDirectory > Permalinks > GEODIRECTORY PAGES
– Re-saved Settings > Permalinks
– Cleared cache (site & browser)and it fixed the problem.
Please check and confirm from your side.
Thanks,
KiranThis reply has been marked as private.This reply has been marked as private.Hi Matthew,
Not sure why column not added to wp_geodir_invoice table. Normally it adds column to table during plugin update process.
Anyway the problem has been fixed, please check and let us know.
Thanks,
KiranOctober 25, 2017 at 11:00 am in reply to: Google search displays "Location" in tile instead of #402481This reply has been marked as private.Hi Wilfred,
I have fixed problem that showing PHP warning message within GeoDirectory plugin.
Kiran
This reply has been marked as private.Thanks, now i have full admin access.
I have checked and found the site using old version of GeoDirectory & GeoDirectory Plugins.
Please update those plugins, so i can investigate what causing problem in home link.Kiran
This reply has been marked as private.Hi Neil,
We have recently added review field validation. The plugin “TinyMCE Comment Field” breaks the review field validation after rendering the textarea field to editor.
Please ask the plugin author about this conflict OR add following code snippet to disable “TinyMCE Comment Field” for GeoDirectory post types.
// Disable TinyMCE Comment Field for GD post types to fix comment validation. function _gd_custom_fix_tinymce_comment_field( $return ) { global $post; if ( !empty( $post->post_type ) ) { if ( ( geodir_is_page( 'detail' ) || geodir_is_page( 'preview' ) ) && in_array( $post->post_type, geodir_get_posttypes() ) ) { $return = false; } } return $return; } add_filter( 'user_can_richedit', '_gd_custom_fix_tinymce_comment_field', 10, 1 );Let us know in case you get any feedback from plugin author.
Kiran
Hi Lydia,
If you want separate custom text above Sign In & Sign Up form then use following code snippet.
// Custom text on GD Sign Up form function _gd_custom_text_on_signup_form( $value, $option ) { $value = __( 'If you would like to become a member and add a listing, you must first register using Sign Up Now.', 'your-text-domain' ); return $value; } add_filter( 'pre_option_ptthemes_reg_page_content', '_gd_custom_text_on_signup_form', 10, 2 ); // Custom text on GD Sign In form function _gd_custom_text_on_signin_form( $value, $option ) { $value = __( 'If you already have an account, please Sign In.', 'your-text-domain' ); return $value; } add_filter( 'pre_option_ptthemes_logoin_page_content', '_gd_custom_text_on_signin_form', 10, 2 );If you want to add custom text on page top then use following code snippet.
function _gd_custom_text_on_signin_signup_page() { echo __( 'If you already have an account, please Sign In. If you would like to become a member and add a listing, you must first register using Sign Up Now.', 'your-text-domain' ); } add_action( 'geodir_signup_forms', '_gd_custom_text_on_signin_signup_page', 9 );Add any one of snippet to your child theme functions.php.
Let us know.
Thanks,
Kiran -
AuthorPosts