• Resolved robruifrok

    (@robruifrok)


    I use the visibility settings -> advanced -> conditional settings on several places.
    Since the update to 1.31.6 the conditionals are no longer eveluated. Rverting to versio 1.31.5 solves the problem.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Same here. Honestly I used to love this plugin but this really reminds me why WP can be such a terrible solution.

    A major part of my site functionality has broken because of this and I only became aware of it now because none of the conditional logic is being evaluated.

    What does this even mean

    Add valid PHP conditional tags for custom & advanced visibility options. The “editorskit_allow_unsafe_eval” filter must be set to true for tags to be evaluated.

    Ok anyone having this issue – add the following code to your functions.php

    
    function editors_kit_filter() {
        return true;
    }
    add_filter( 'editorskit_allow_unsafe_eval', 'editors_kit_filter' );
    
    
    • This reply was modified 3 years, 2 months ago by zactix.
    Thread Starter robruifrok

    (@robruifrok)

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Visibility settings conditional logic stopped working’ is closed to new replies.