Kiran
Forum Replies Created
-
AuthorPosts
-
Hello Dale,
This is fixed and it will be in next release of Event Manager.
Regards,
KiranApril 13, 2020 at 6:33 am in reply to: ERROR: You have entered an incorrect CAPTCHA value. Click the BACK button in you #539768This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Probably on next Monday.
Kiran
Hi Manfred,
When cursor is moved out of menu main element, it collapses & hides the opened menu.
Autocomplete search results are appended to body tag which is out of menu element. So when you hover the result it collapses the menu as it founds out of menu cursor move.
I have made some changes in advance search javascript file to prevent this.
Regards,
KiranThanks for letting us know.
This reply has been marked as private.April 10, 2020 at 3:31 pm in reply to: ERROR: You have entered an incorrect CAPTCHA value. Click the BACK button in you #539506Hi Robert,
I have tested ReCaptcha V3 on my test site and it worked fine there.
On your site i done some debugging and found that something conflicts there. After typing text in comment box when onblur or onkeyup, the captcha token becomes empty which is hidden input. So whenever you goes to click submit review the token value becomes empty and it results in invalid captcha.
I tried to submit review by other why in which no blur, keyup event executed.
I done following steps:
– Selected rating stars
– Typed in comment box
– Click CTRL + ENTER
and it successfully submitted review.To find what causing conflicts we need to disable some non GD plugins or have to check with other theme.
Do you have staging site where i can do more test to find what causing this issue?
Regards,
KiranApril 10, 2020 at 1:31 pm in reply to: ERROR: You have entered an incorrect CAPTCHA value. Click the BACK button in you #539483Hello Robert,
Admin credentials are not working now. did you changed it?
Regards,
KiranHello,
Can you provide path to your WORDPRESS_ROOT directory? There are 47 directories listed in FTP account.
Validation message due to invalid pattern value popup on submit form.
Regards,
KiranHello,
We have added option to show fallback image for location. When city image is not available then it will show last post’s image added under that city.
It will be in next release.
Regards,
KiranApril 9, 2020 at 10:48 am in reply to: Neighbourhood images not working in list Locations widget #539249Hello Harry,
To add, in my theme on the location pages I have my header set as the featured image for that location (region, city etc) and it works fine for them, but for neighbourhoods it does not.
This has been fixed and it will be in next release of Location Manager.
[gd_cpt_meta key=”image”] is shortcode to show CPT image on CPT archive page. It will show image which set under CPT(ex: Places) > Settings > General > Image.
Let us know.
Regards,
KiranApril 9, 2020 at 9:36 am in reply to: ERROR: You have entered an incorrect CAPTCHA value. Click the BACK button in you #539233This reply has been marked as private.Hi Josh,
There is an conflicts issue between Enfold Theme Builder & GeoDirectory v1. Try following PHP snippet to fix this conflicts.
We recommend you to move on GeoDirectory v2, it is more easy to customize and it has some more features implemented there.
/** Fix conflicts between Enfold & GDv1. */ function _gd_dnippet_enfold_edit_form_advanced( $_post ) { global $post; if ( defined( 'GEODIR_GA_CLIENTID' ) && ! empty( $_post ) && is_object( $_post ) && ! is_a( $_post, 'WP_Post' ) ) { $__post = get_post( $_post->ID ); foreach ( $_post as $key => $value ) { $__post->{$key} = $value; } $post = $__post; } } add_action( 'edit_form_advanced', '_gd_dnippet_enfold_edit_form_advanced', 100, 1 );
Regards,
Kiran -
AuthorPosts