In category view: How can I disable the 'slide' action on hovering a product? And also remove the star-rating?
I only want to show the image, product name and price.
Clicking the image/productname is the only thing a customer should be able to do at category view.

    Hi gewoon-jeroen

    You can try this custom css:

    @media (min-width: 992px) {
    div[class*="-view"] .vm-col.product .spacer:hover > div.vm-product-footer {
        display: none !important;
    }
    
    div[class*="-view"] .vm-col.product .spacer:hover {
        transition: none !important;
    }
    }
    Write a Reply...
    You need to Login to view replies.