Viewing 9 replies - 1 through 9 (of 9 total)
  • I’m currently having the same problem.

    Were you able to fix the issue?

    Thanks a lot!

    Having the same problem with SiteOrigin Page Builder. Did anybody fixed this?

    I managed to fix it I think. Open up “class-sticky-popup.php” and search for “the_content” and delete this line:

    $this->popup_content = apply_filters(‘the_content’, $this->popup_content );

    But now shortcodes doesnt work anymore

    Hello all,
    AzRalL really thank…..as you mentioned before go to class-sticky-popup.php line 575 comment or remove these two lines

    $this->popup_content = apply_filters(‘the_content’, $this->popup_content );
    $this->popup_content = str_replace( ‘]]>’, ‘]]>’, $this->popup_content );

    then add this line this in there place:
    $this->popup_content = do_shortcode($this->popup_content);3

    For me I am using contact form and this worked perfectly.

    Works perfectly! Thanks a lot!

    Your are welcome!

    Hi Ascker,

    I have removed the two lines of code below:

    $this->popup_content = apply_filters(‘the_content’, $this->popup_content );
    $this->popup_content = str_replace( ‘]]>’, ‘]]>’, $this->popup_content );

    and replaced it with this line below:

    $this->popup_content = do_shortcode($this->popup_content);3

    However before I save it I keep getting Syntax error but saved it anyhow and replaced the old file with the new one. And that is done it fails to start wordpress unless I change it back.
    any idea’s?? I would be most grateful if anyone knows where I am going wrong.

    Many thanks in advance,
    Matt

    maybe because you pasted:
    “$this->popup_content = do_shortcode($this->popup_content);3”
    and for me works:
    “$this->popup_content = do_shortcode($this->popup_content);”
    ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘sticky popup showing page builder content’ is closed to new replies.