Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #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.

    #977701

    I 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?

    #977992

    I 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.

    #980274

    Hi,

    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,
    Basilis

    #980297

    No 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.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.