Home Forums WoodMart support forum Product page changes

Product page changes

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #87931

    PD11
    Participant

    Hi,

    I’d like to make a few changes to the product page, but can’t find it in the theme settings. Could you provide custom css or something to make the changes below?

    1. for description, specifications etc i’ve chosen the accordion. I’d like to open all accordion items by default (not the only the first one
    2. accordion items with more content have a maximum height (and scroll bar is visible). I would like to remove the maximum hide, so all content is visible
    3. I’d like the number input field (before add to cart button) removed.

    Please attached screenshots for more info. Thanks!

    Paul

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

    Hello,

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

    .tabs-layout-accordion .woocommerce-Tabs-panel {
    	display: block !important;
    } 
    
    .tabs-layout-accordion .woodmart-accordion-title {
    	pointer-events: none;
    }
    
    .tabs-layout-accordion .woodmart-accordion-title:after {
    	display: none;
    }
    
    .tabs-layout-accordion .woodmart-accordion-title.active {
    	color: #333;
    }
    
    .tabs-layout-accordion .woocommerce-Tabs-panel .woodmart-scroll .woodmart-scroll-content {
    	max-height: none;
    }
    
    .product-image-summary .quantity {
    	display: none !important;
    }

    Best Regards

    #88092

    PD11
    Participant

    Thanks Elise, all changes are made with you provided code!

    #88124

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

    Best Regards

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

The topic ‘Product page changes’ is closed to new replies.