Understrap: WooCommerce - How To Edit Single Product Page Layout?

Created on 16 Jan 2018  路  7Comments  路  Source: understrap/understrap

Hello!

We've built a few themes now using Understrap, it's been working great so far.

We're building out our first WooCommerce theme on Understrap. We would like like edit the Single Product page layout.

According to the WooComm docs, you have to create an override (which we've done), and then edit single-product.php in your override folder.

We've tried that, in order to edit the layout, and none of it works. We've even deleted the single-product.php in both the override and WooComm core entirely, and nothing happens. No change takes.

Any idea why this is happening?

Most helpful comment

Worst templating i have ever seen.

All 7 comments

Don't know if this is the 'right' way to do it, but if you copy single-product.php from the woocommerce templates and drop it in understrap's woocommerce overwrites. You can then change woocommerce.php:31-33 to the following

if ( is_singular( 'product' ) ) {

    wc_get_template_part( '/single-product', $args, $template_path, $default_path  );

}

The single-product.php just calls the layout from content-single-product.php so if you are wanting to alter the layout you need to override this.

I just came by your issue and I want to point out that it's explained in the docs. Here a link https://docs.woocommerce.com/document/template-structure/

templating is discussed but not really explained, if you ask me. The docs explain that you can change what is hooked in the template but not really how to use a different template such as an alternate single-product.php, which would be a great idea in some cases.

Worst templating i have ever seen.

You can simply customize single-product.php through CSS. or single.php in your theme. if any person has good knowledge in the woo-commerce plugin.

How about the "woocommerce_single_product_summary"?
how How can I edit the "woocommerce_single_product_summary" ?
I want to put the prices of other stores ( more offer ) in this section.
This is very important to me
please help
thank you.

Was this page helpful?
0 / 5 - 0 ratings