• Hi
    we face problem when this plugin enabled pop up don’t work. note : it have cookie and show it one per 24 hour.
    then we deactivate wp ulike, pop up is working fine.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Alimir

    (@alimir)

    Hi @qooqnos
    Probably This is a jQuery conflict. put the following code in your functions.php file:
    wp_deregister_script( 'wp_ulike_plugins' );
    Remember that should use this function in the enqueue scripts action. e.g.

    add_action( 'wp_enqueue_scripts', 'my_deregister_javascript' );
    function my_deregister_javascript() {
            wp_deregister_script( 'wp_ulike_plugins' );
    }
    Thread Starter qooqnos

    (@qooqnos)

    Hi again I used this code in functions of theme. but still have a problem and pop up not show and set cookie

    Thread Starter qooqnos

    (@qooqnos)

    I add this code to functions

    add_action( 'wp_enqueue_scripts', 'my_deregister_javascript' );
    function my_deregister_javascript() {
            wp_deregister_script( 'wp_ulike_plugins' );
    }
    • This reply was modified 6 years, 10 months ago by qooqnos.
    Plugin Author Alimir

    (@alimir)

    @qooqnos
    Could you please give me an online link?!

    Thread Starter qooqnos

    (@qooqnos)

    behtarmusic.com
    in this case for now I disabled wp ulike and pop up work correctly

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Pop Up don’t work with enable wp ulike’ is closed to new replies.