• On PC, everything is running perfectly. But when I browse the website on mobile devices, the Cart is still there. What can it be?

    • This topic was modified 1 year, 11 months ago by anamagmramos.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Alberto Ruggiero

    (@witcher83)

    Hello @anamagmramos

    try to add this code in the functions.php file of your theme:

    if ( ! function_exists( 'my_ywctm_cart_widget_classes' ) ) {
    	add_filter( 'ywctm_cart_widget_classes', 'my_ywctm_cart_widget_classes' );
    
    	function my_ywctm_cart_widget_classes( $classes ) {
    		$classes[] = '.storefront-handheld-footer-bar li.cart';
    
    		return $classes;
    
    	}
    }

    Thread Starter anamagmramos

    (@anamagmramos)

    it’s not perfect. it kind of created an empty button that opens the keyboard when clicked but doesn’t allow to type at the same time.

    Plugin Support Alberto Ruggiero

    (@witcher83)

    Hello @anamagmramos ,

    this depends on the theme, unfortunately the plugin can only hide via CSS the element, but this kind of fine tuning must be managed separately

    Thread Starter anamagmramos

    (@anamagmramos)

    And is it possible to replace the cart with the quote?

    Plugin Support Alberto Ruggiero

    (@witcher83)

    Hello @anamagmramos

    unfortunately the plugin does not manage this.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Not running on mobile’ is closed to new replies.