Viewing 1 replies (of 1 total)
  • Plugin Contributor dudo

    (@dudo)

    Hello!

    I’m so sorry, I totally forgot it.

    I’ve made some tests, but I can’t replicate the issue: everything is working fine, with both Chrome and Firefox, with 2 different mobile devices and with browser dev tools from desktop.

    I’m having instead a lot of php warning in my debug log and a js error in the console, both from WpTouch.

    What I suggest to do in your case, is to hook into this filter, yasr_add_front_script_css and add your rater version of the file, e.g.

    add_action('yasr_add_front_script_css', 'yasr_my_rater', 9);
    
    function yasr_my_rater () {
        wp_enqueue_script(
            'rater',
            'pathtoyourfile' //CHANGE ME
             '',
             YASR_VERSION_NUM,
             true
        );
    }
    

    You only need to change the second line.

    Let me know!

    • This reply was modified 4 years, 8 months ago by dudo.
    • This reply was modified 4 years, 8 months ago by dudo.
    • This reply was modified 4 years, 8 months ago by dudo.
Viewing 1 replies (of 1 total)
  • The topic ‘Conflict between YASR and WPTouch’ is closed to new replies.