Home Forums WoodMart support forum Multiple Questions for my theme

Multiple Questions for my theme

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #152170

    funkypidev
    Participant

    1. I have variable products however I need to only show 1 price and I do not want it to show 2 prices when I choose a variable option. (IMAGE 2)
    2. How can I remove the categories list on the product details page. I can remove them using .css however there is a gap. (IMAGE 1)
    3. Remove add to cart on all products in catalog when hover. (IMAGE 3)

    Thank you for your help

    Attachments:
    You must be logged in to view attached files.
    #152197

    funkypidev
    Participant

    Please disregard
    1. I have variable products however I need to only show 1 price and I do not want it to show 2 prices when I choose a variable option. (IMAGE 2)

    I have fixed this. I still need help on 2 and 3

    Thank you

    #152270

    Hello,

    Thank you very much for choosing our theme and for contacting us.

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

    /*to remove the add to cart button*/
    .woodmart-hover-quick:hover .woodmart-add-btn {
        -webkit-transform: none;
        transform: none;
    	display:none;
    }
    
    /*to hide the categories*/
    
    body .product_meta > span.posted_in {
    display:none;
    } 

    Best Regards

    #152322

    funkypidev
    Participant

    Hello,

    Thank you for your quick reply. I have added the code and it works on most of the catalog. However it does not hide the small button. Please see screenshot.

    Thank you

    Attachments:
    You must be logged in to view attached files.
    #152334

    Hello,

    Please provide your shop page URL to the private area. If your site is under maintenance, please provide your site admin access in the private area

    Best Regards

    #152352

    funkypidev
    Participant

    Here is the requested info

    #152398

    Hello,

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

    body .product-grid-item:hover .woodmart-buttons[class*=wd-pos-r]{
    display:none;
    }
    body .product-grid-item .woodmart-buttons[class*=wd-pos-r]{
    display:none;
    }

    Best Regards

    #152399

    funkypidev
    Participant

    That is perfect! Thank you

    #152527

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

    Best Regards

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

The topic ‘Multiple Questions for my theme’ is closed to new replies.