• viorel

    (@vioreleremia)


    Hi guys,
    I am one of the developers of the plugin brizy. Several users use our plugins together and they are stuck in an issue.
    The problem is the function tonjoo_ecae_execute it is trying to modify our html and break it.
    I tried to fix it in our end by removing this function from the hooks of the_content hook but this will break your excerpts for example in a loop where the_content is applying on every post in this loop so I will never know when to put it back.
    The only solution, in my opinion, is to fix it from your end. for example to check the content that comes in function like here:

    
    if ( strpos( $content, 'brz-root__container' ) ) {
       return $content;
    }
    

    This if should be somewhere after the excerpt was checked so if the excerpt exists perform your actions on it if it is not and the content has the string brz-root__container then return it.

    Can you guys have a look at these things?

    All the Best,
    Viorel

    The page I need help with: [log in to see the link]

The topic ‘Compatibility with Brizy Plugin’ is closed to new replies.