Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • The problem is that avada has a .popup style declared in its css.
    What I did was, I changed the displet-pop popup class to displetpopup. I edited these two files:
    – wp-content/plugins/displet-pop/displet-pop.php
    – wp-content/plugins/displet-pop/style.css

    and replaced alli instances of
    #displetpop .popup with
    #displetpop .displetpopup

    and
    <div class="popup"> with
    <div class="displetpopup">

    This is what did it for me. Instead of chaking for the cookie, the plugin saved a cookie. So in displet-pop.php file I editet line 1408 from:
    if ((($.cookie('displetpop_recentpop', {path:'/'}) != 'yes' && '<?php echo $_SESSION["views"]; ?>' >= '<?php echo get_option("displetpop_pageviews"); ?>') || ('<?php echo get_option("displetpop_testmode"); ?>' == '1' && '<?php echo current_user_can("manage_options"); ?>' == '1')) && urlmatch != 'no'){
    to:
    if ((($.cookie('displetpop_recentpop') != 'yes' && '<?php echo $_SESSION["views"]; ?>' >= '<?php echo get_option("displetpop_pageviews"); ?>') || ('<?php echo get_option("displetpop_testmode"); ?>' == '1' && '<?php echo current_user_can("manage_options"); ?>' == '1')) && urlmatch != 'no'){

    Thread Starter Andro_

    (@andro_)

    Yes, I had no problem installing 2.8.6 I’m only struggling with the database backup

Viewing 3 replies - 1 through 3 (of 3 total)