Karl Sellsted
asked 10 years ago

Thank you in advance!

2 Answers
DominicStaff
answered 10 years ago

Please find here for the document guide on how to configure the theme: http://www.designwall.com/guide/dw-trendy/If you still face there issue, you can tell us know detail about the position that you want to modify.
Regards,

Karl Sellsted
replied 10 years ago

The guide was very helpful, but did not resolve my quandary. I would like to: remove the price section (but still allow Add to Cart button to show up and function), move the “Share this” section to below the Add to Cart button, remove “tags”, “categories”, “Availability”, and the quantity selector, make the “Quick Overview” section go the entire width of the page, and lastly, change the Additional Information tab to a new name, and custom content. Thank you Dominic!

DominicStaff
answered 10 years ago

To resolve this issue, you can do as the following:
– Remove Price section:
you can add the following code to the style.css file:

.price { display: none; }

– Move the “Share this” section to below the Add to Cart button.
you can add the following code to the functions.php file:

remove_action( 'woocommerce_single_product_summary', 
               'woocommerce_template_single_sharing', 50 );
add_action( 'woocommerce_single_product_summary',
            'woocommerce_template_single_sharing', 31 );

Then add the following code to the style.css file:

.dw-sharing { margin-top: 0px; }

– Remove “tags”, “categories”, “Availability”, and the quantity selector.
You can add the following code to the style.css file:

.availability { display: none; }
.product_meta { display: none; }

–  Our theme does not support to change the “Quick Overview” section as you want.
Regards,
 
 

Karl Sellsted
replied 10 years ago

Thanks for the code! It mostly worked. The only thing that didn’t happen was the quantity selector is still displayed. Can you help with this? Thanks again!

Powered by DW Question & Answer Pro