Brady Louveau
Forum Replies Created
-
Simple Social Off
Simple Social On
Forum: Plugins
In reply to: [Fresh Forms for Gravity] Latest Update – Critical ErrorThank you for looking into it, Samuel! ??
Forum: Plugins
In reply to: [Fresh Forms for Gravity] Latest Update – Critical ErrorThis is being added into our pages directly through the Elementor toolbar using Essential Addons for Elementor Pro Version 5.8.9
- This reply was modified 1 year ago by Brady Louveau.
Forum: Plugins
In reply to: [Fresh Forms for Gravity] Latest Update – Critical ErrorWe received the standard WP critical error message. I have since removed the plugin from the site until this can be resolved so I do not have the exact error message as Chris was able to provide.
It is 100% an issue related to the plugin update, but it may be some conflict with the update and an existing plugin?
We embed the forms using Elementor. Perhaps there is some conflict with Elementor?
Thank you for your quick response. ??
WP 6.4.3
Elementor v3.19.4
Elementor Pro v3.19.3
PHP 8.2
All plugins are updated to the latest version.- This reply was modified 1 year ago by Brady Louveau.
- This reply was modified 1 year ago by Brady Louveau.
Forum: Plugins
In reply to: [Yoast SEO] Yoast Only Shows Focus Keyword BoxI have sourced this issue to a conflict with modernizr.min.js, when using WordPress 4.9.7. I updated modernizr.min.js to the latest version and voila… it’s all working as intended.
- This reply was modified 6 years, 7 months ago by Brady Louveau.
Forum: Plugins
In reply to: [Post Grid By PickPlugins] Post grids all broken after updateI had the same error on line 105 of functions for the plugin.
It appears that the variable term_list is supposed to be an array, but the array is not set for my custom post types.
I have temporarily replaced the foreach code chunk starting at line 105 to get this working until there is an update from the plugin author…
At line 105, replace this:
foreach($term_list as $term_key=>$term) { foreach($term as $term_id=>$term){ $term_slug_list .= $term->slug.' '; } }
with this:
if (is_array($term_list)): foreach($term_list as $term_key=>$term) { foreach($term as $term_id=>$term){ $term_slug_list .= $term->slug.' '; } } endif;