Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1333036
    Ramon Olivencia
    Guest

    I cannot find the new License Key for Premium Support just bought for my Enfold theme. Basically, my footer has disappeared after updating to the latest version of the theme today.

    #1333071

    Hi Ramon,

    I see that you are overriding header.php in your child theme. Please try placing that file with the file from the parent theme, then add your customisations back in after that.

    Best regards,
    Rikard

    #1333147
    Ramon Olivencia
    Guest
    This reply has been marked as private.
    #1333151

    Hey Ramon,

    You can go to https://kriesi.at/support/forum/enfold#new-post and insert your existing purchase code to validate it. If you have renewed support, it should work.

    I checked header.php file and it seems like the only change is following

    <!-- WPForms suggested this code to add autofocus (10-jul-20) -->
    <script>
        jQuery(document).ready(function(){                
                jQuery('#wpforms-8382-field_0').focus().css("border", "1px solid blue");       
        });
    </script>

    If that is correct, you can add following code to bottom of Functions.php file of your child theme

    //-------------------------------
    // WPForms script in head section
    //-------------------------------
    
    function custom_wpforms_script_name(){
    ?>
    <!-- WPForms suggested this code to add autofocus (10-jul-20) -->
    <script>
        jQuery(document).ready(function(){                
                jQuery('#wpforms-8382-field_0').focus().css("border", "1px solid blue");       
        });
    </script>
    <?php
    }
    add_action('wp_head', 'custom_wpforms_script_name');

    and then delete header.php file from your child theme via FTP.

    Regards,
    Yigit

    • This reply was modified 2 years, 11 months ago by Yigit.
    #1333167
    This reply has been marked as private.
    #1333211

    Hi,

    Great, I’m glad that you got things working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1333260
    This reply has been marked as private.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Need Support but did not Receive New License Key’ is closed to new replies.