Home Forums WoodMart support forum Hide Information (Text, Price, On Hover) of Related Products in Single Product

Hide Information (Text, Price, On Hover) of Related Products in Single Product

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #203265

    Devrental
    Participant

    Hi,

    I am using custom hooks to Change the Position of Related Products to show it under Main Images.
    I want to hide the text , on hover etc for it. Only the Image and with link will show. I believe it can be done with Specific Page Css. need some guidance here.

    So it will look like

    #203278

    Hello,

    I am checking the product page and do not see the text to hide. Please provide the product page URL.

    Best Regards

    #203285

    Devrental
    Participant

    I was trying some CSS and those worked. I was able to hide necessary things that i wanted.

    Only works remain is the resizing of the Each Related Products.

    Any suggestions ?

    #203335

    Devrental
    Participant

    After playing with the CSS a little I was able to Resize them, But cant reduce the gap/margin in between

    #203499

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body.single .woodmart-hover-base.hover-ready:hover .content-product-imagin  {
        visibility: hidden; 
        opacity: 0;
    }
    @media (min-width: 769px){
    body.single .product-grid-item.col-md-3 {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    	  min-width:50px;
    }
    }
    @media (min-width: 576px){
    body.single .product-grid-item.col-sm-4 {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    }
    body.single .product-grid-item.col-6 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    Best Regards

    #203673

    Devrental
    Participant

    The Spacing is ok. But hover is still working. Kindly check

    #203733

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body.single .product-grid-item:hover .woodmart-buttons{
        opacity: 0;
        -webkit-transform: none;
        transform: none;
    }

    Best Regards

    #203761

    Devrental
    Participant

    Hi, its working , But the Add to Cart Hover is still showing.
    The CSS hides Compare, Wish-list and Quick View button

    #203841

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body.single .woodmart-hover-quick .woodmart-add-btn {
    display:none;
    }

    Best Regards

    #203886

    Devrental
    Participant

    Thank you , the hover is hidden.

    But one more small issue, on mouse hover still different links/functions are there e.g Links to Compare, Links to Quick View. Only by clicking Upper left portion it takes to the Product.

    I want only the link to Product. Can it be done with CSS ?

    #203937

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body.single .woodmart-buttons {
    display:none;
    }

    Best Regards

    #203962

    Devrental
    Participant

    Thank you ! Working Perfectly !

    #203963

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 13 posts - 1 through 13 (of 13 total)

The topic ‘Hide Information (Text, Price, On Hover) of Related Products in Single Product’ is closed to new replies.