Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #777603

    I’m noticing on all of my Enfold sites, now that you’ve modified the Text Block content element, that when you edit in Visual mode, you have to toggle back and forth to Text mode for the edits to hold.

    #778589

    I’ve located the problem on this.

    I had recently added in the following script to defer parsing (to speed up the site) in functions.php:

    function defer_parsing_of_js ( $url ) {
    if ( FALSE === strpos( $url, '.js' ) ) return $url;
    if ( strpos( $url, 'jquery.js' ) ) return $url;
    return "$url' defer ";
    }
    add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );

    When I removed it, the problem went away.

    #778943

    Hi,

    Glad you figured it out!
    Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Text Block problems with new version’ is closed to new replies.