Alex Rollin
Forum Replies Created
-
AuthorPosts
-
Yes, we have issued several fixes while waiting for Ninja Forms to do a fix.
December 20, 2019 at 11:57 pm in reply to: Openstreetmaps map not showing pins after WP update #522641This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.The site is still not secure. We can’t fix that for you, you should contact your host.
If you send WP Admin credentials or use the chrome inspector console we or you can check the console error on that page to see why it won’t load.
I suspect one of the items in the sort is not compatible with the other filters applicable to events, but will have to ask the developers to comment.
Thanks for your patience while they look into it.
Thank you, the developers will take a look.
This does not sound like a GD specific issue, in any case. Those are good questions for your host or server admin.
Please share WP Admin credentials so we can take a look
You can use widget logic or something like it to add conditional visibility to widgets.
Try adding this as a code snippet:
/** * Skip sanitize for the post_content field * * WARNING – Skipping sanitize routine for field values may result in a Cross-Site Scripting Attack (XSS) on your site. */ function gd_snippet_custom_skip_sanitize_field( $value, $gd_post, $custom_field, $post_id, $post, $update ) { // Fields to skip strip tags. $skip_strip_tags = array(); $skip_strip_tags[] = ‘post_content’; if ( in_array( $custom_field->htmlvar_name, $skip_strip_tags ) ) { $value = $gd_post[ $custom_field->htmlvar_name ]; if ( isset( $custom_field->data_type ) && ( $custom_field->data_type == ‘DECIMAL’ || $custom_field->data_type == ‘INT’ ) && $value === ” ) { $value = null; } } return $value; }
From: https://wpgeodirectory.com/docs-v2/places/custom/#scripts
For info about code snippets: https://wpgeodirectory.com/docs-v2/faq/customizing/#snippetsAh, there you have it, then.
I have asked the developers to look at that for future versions, to be able to select a date format. Right now it is reading the value straight out of the db. To change it now you would change the format in the DB or have to customize it.
Other folks using that type of badge have just wanted to use the math function and say something like “Recently Updated” instead of posting the date.
You are already using Divi on that page. Each Divi module/section etc has settings for styles. I just wanted to point out that you should try those first.
If you need help with Divi they have extensive docs.
Just make sure to use the backend editor and preview your changes with a listing instead of editing the template on the frontend.
December 20, 2019 at 4:30 pm in reply to: "Location detection not supported in browser" error on mobile phone #522591Works for me on Android. Make sure you have reset your site settings on your phone to allow location.
-
AuthorPosts