• Resolved importlamp

    (@importlamp)


    Hi

    I want need to disable the plugin on the mobile version, what code should be written in the child theme functions.php file ?

    Plugin: YITH WooCommerce Wishlist ? mobile version
    and
    Plugin: YITH WooCommerce Quick View ? mobile version

    hide icons on mobile Quick View and Wishlist from the product card.

    I talked on the Quick View and Wishlist plugin forum – they sent me to you

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author themebeez

    (@themebeez)

    Hi @importlamp,

    Paste the below CSS code to your child theme style.css file.

    @media( max-width: 575px ) {
    
        .mobile-header .flex-col.wishlist-column,
        .woocommerce ul.products li .product-main-wrap .product-hover-items,
        .woocommerce div.product .entry-summary .yith-wcwl-add-to-wishlist .view-wishlist, 
        .woocommerce div.product .entry-summary .yith-wcwl-add-to-wishlist .wish-list-button {
        
            display: none;
        }
    }

    The above code will hide the following elements on the mobile screen.

    – Wishlist icon in the header.
    – Quick view and wishlist icon in the product card.
    – Wishlist button on product single page.

    I hope this helps.

    Regards

    Thread Starter importlamp

    (@importlamp)

    @themebeez

    hi

    I need to hide only the icons on the product card:

    – Quick view and wishlist icon in the product card.

    • This reply was modified 2 years, 4 months ago by importlamp.
    • This reply was modified 2 years, 4 months ago by importlamp.
    Theme Author themebeez

    (@themebeez)

    Hi,

    if so paste the below CSS code.

    @media( max-width: 575px ) {
    
        .woocommerce ul.products li .product-main-wrap .product-hover-items {
        
            display: none;
        }
    }
    Thread Starter importlamp

    (@importlamp)

    Thanks

    Thread Starter importlamp

    (@importlamp)

    @themebeez Tell me please.

    https://import-lamp.ru/shop/

    mobile version – change the word “Filter” to the word “Фильтр”

    https://snipboard.io/c3P6HS.jpg

    • This reply was modified 2 years, 4 months ago by importlamp.
    Theme Author themebeez

    (@themebeez)

    “Filter” is not a string coming from a theme. It is coming from the plugin that you are using.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘mobile version’ is closed to new replies.