Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Al,
Try following PHP snippet to allow HTML tags in specific field description.
/** * Allow HTML tags in field description. */ function gd_snippet_191220_allow_html_in_field_desc( $field, $input ) { /* FIELDS HERE */ $allowed_fields = array( 'custom_email', 'custom_phone', 'my_url', ); if ( ! empty( $input['frontend_desc'] ) && ! empty( $field->htmlvar_name ) && in_array( $field->htmlvar_name, $allowed_fields ) ) { $field->frontend_desc = stripslashes( geodir_sanitize_html_field( $input['frontend_desc'] ) ); } return $field; } add_filter( 'geodir_cpt_cf_sanatize_custom_field', 'gd_snippet_191220_allow_html_in_field_desc', 20, 2 );
Regards,
KiranHi @laurence,
Recurring listings must be created with real payment gateway(ex: PayPal). Expiration of recurring listings are handled via notification received from payment gateway on renew/cancel/expire subscription.
Kiran
December 20, 2019 at 9:02 am in reply to: Category field is locked but appears differently on franchise #522520Hi Hui,
Please provide a staging site if you have. I need to check by disabling some plugins one by one to check which plugin/theme causing this issue.
Best Regards,
KiranDecember 20, 2019 at 8:59 am in reply to: Event search by date returns "something went wrong" #522519Hi Eddy,
Issue has been fixed. There was conflicts with post type field on CPT search setting.
Please check and let us know.
Regards,
KiranThis reply has been marked as private.Hi @event19,
FTP credentials are not working, please check.
Error you reported with another has been fixed. See https://wpgeodirectory.com/support/topic/warning-preg_match-expects-parameter-2-to-be-string-error-message/#post-522511
Regards,
KiranDecember 20, 2019 at 6:29 am in reply to: Warning: preg_match() expects parameter 2 to be string, error message #522511This issue has been fixed.
Kiran
December 20, 2019 at 6:03 am in reply to: Location Page – Map Zoom Error and Listing Sorting Error #522506Hi Ellory,
Google map billing issue fixed with new API key.
FTP credentials are not working. It shows following error:
Response: 530 Login authentication failed Error: Critical error: Could not connect to server
Regards,
KiranThis reply has been marked as private.December 19, 2019 at 2:05 pm in reply to: Location Page – Map Zoom Error and Listing Sorting Error #522376Hi Ellory,
Please provide FTP credentials to look into more.
Google map shows following error in console.
You must enable Billing on the Google Cloud Project at https://console.cloud.google.com/project/_/billing/enable Learn more at https://developers.google.com/maps/gmp-get-started
Kiran
Hello Hui,
That snippet will apply featured ordering first and then other ordering on search results.
You can modify snippet to use your own ordering.
Kiran
This reply has been marked as private.December 19, 2019 at 1:35 pm in reply to: Map bubbles/Map-Marker do not work in the latest version …. 73 #522372Hi,
There was issue with nonce(security token) creation. It breaks validation of nonce when WooCommerce cart is loaded on site.
We have fixed it from our side and updated in v2.0.0.74.
Kiran
Hello There,
We have released GeoDirectory v2.0.0.74 with temporary fix. We have asked Ninja Forms team to fix issue from their side.
Kiran
Hi Victor,
Please try after clearing your browser cache & let us know.
Kiran
-
AuthorPosts