• Resolved carolinebright1

    (@carolinebright1)


    Hello – The shopping cart is still displaying in my website navigation header, even though all the plugin settings are set correctly. As directed in the FAQs, I did disable all plugins and tried activating a new theme. The issue is indeed specific to my theme, Divi (which had a recent new release if that makes a difference). I do have a ticket into my theme support, but I don’t know if they will be able to help as they always say they cannot offer support on third party plugins (even though it is a Divi compatibility issue). So I am hoping (crossing my fingers, as I am facing a deadline) that you may be able to offer some support. I wonder if you have any known issues and workarounds for the Divi theme? Thank you so much for your time with this. I really appreciate it!

    This staging site is password protected:
    username: flywheel
    password: wheels-jars

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi there,
    try to add this code to your theme functions.php

    function my_ywctm_cart_widget_classes( $classes ) {
    
        $classes[] = '.' .'my-wcart-widget-class-name';
    
        return $classes;
    
    }
    
    add_filter( 'ywctm_cart_widget_classes', 'my_ywctm_cart_widget_classes' );

    then replace this my-wcart-widget-class-name with your cart class

    Have a nice day

    Hi there,

    You can also add to your custom.css:

    .et-cart-info span {
    visibility:hidden;
    display: none;
    }

    Same effect, but no need to change theme functions.php (and creating a child theme…)

    Best regards, Anna

    Plugin Author YITHEMES

    (@yithemes)

    Hi @zappallo,
    we prefer to recommend the snippet since each theme has a different CSS class.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Cart icon still showing in my theme’ is closed to new replies.