-
AuthorPosts
-
June 25, 2018 at 11:36 pm #977700
I just recently updated to the 4.4.1 version and since then I can’t edit my “confirmations” and “notifications” form my forms on Gravity Forms. On my old version of Enfold it works fine. I’ve added the code below to my functions file per a forum complaining of the same issue but no fix.
function ww_remove_enfold_ls(){ global $pagenow; if (( $pagenow == 'admin.php' ) && isset($_GET['page']) && isset($_GET['subview'])) { if(($_GET['page'] == 'gf_edit_forms') && ($_GET['subview'] == 'notification')){ remove_filter('mce_buttons', 'ls_register_mce_buttons'); remove_filter('mce_external_plugins', 'ls_register_mce_js'); } } } add_action('init', 'ww_remove_enfold_ls', 999);
I also added
define('CONCATENATE_SCRIPTS', false );
to my wp-config file and no luck.
Also, when a form is submitted now, the confirmation message doesn’t show up anymore! It’s not GF cause it works on other themes.
Please help.June 25, 2018 at 11:42 pm #977701I used this code –
add_theme_support( 'deactivate_layerslider' );
to deactivate LayerSlider and it fixes the issue with Gravity Forms.
Luckily I don’t use it, but it is a BAD solution if someone wanted to use both. Don’t you think?June 26, 2018 at 4:12 pm #977992I used this code –
add_theme_support( ‘deactivate_layerslider’ );
to deactivate LayerSlider and it fixes the issue with Gravity Forms.
Luckily I don’t use it, but it is a BAD solution if someone wanted to use both. Don’t you think?It would appear that deactivating LayerSlider brings back the visual editor, but the “Insert Theme Shortcode” icon is missing and shortcode will not display on the front end for the GF confirmations. This is all just information to help with trouble shooting.
So it appears that LayerSlider is interfering with GravityForms ability to display the visual editor and allow the theme shortcodes to be used. Even with LayerSlider deactivated, the shortcodes can not be used.
Hope this is helpful.
July 2, 2018 at 9:02 pm #980274Hi,
Thank you for the feedback and the detailed reporting.
I have created a GitHub issue for our developers, so they can review and handle it appropriate.Best regards,
BasilisJuly 2, 2018 at 9:29 pm #980297No problem. Anything I can do to help keep this the best WP theme ever. I love the Enfold theme and want it to continue to be the best. Keep me posted on any updates.
-
AuthorPosts
- You must be logged in to reply to this topic.