• Resolved psychic9

    (@psychic9)


    Hi
    I’m wondering. Is it required to be logged in account to work?
    It’s not working on Opera (on this it’s doing the opposite and I touch the heart, the heart become red and it says it is removed ??) Very weird…
    And on mobile same. 1/2 it’s not working.
    Too many bugs… too bad otherwise the plugin is so great.
    Best
    SA

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pablo Pacheco

    (@karzin)

    Hi @psychic9 ,

    No, the plugin works for guest users too.

    Regarding opera and touchscreen, can you please try to add this to your functions.php?

    add_filter('alg_wc_wl_toggle_item_events', function( $events ){	
    	$events['default']     = array( 'click' );
    	$events['touchscreen'] = array( 'click' );
    	return $events;
    });

    Or maybe with ‘dblclick’:

    add_filter('alg_wc_wl_toggle_item_events', function( $events ){	
    	$events['default']     = array( 'dblclick' );
    	$events['touchscreen'] = array( 'dblclick' );
    	return $events;
    });
    Plugin Author Pablo Pacheco

    (@karzin)

    I’m closing the ticket. Let me know if you need more help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not working on Opera neither on mobile’ is closed to new replies.