D
D
DimDim77782019-11-02 13:21:04
WordPress
DimDim7778, 2019-11-02 13:21:04

In which file is the Woocommerce product card generated?

Hello.
I want to change the standard display of elements in the product card, so that it looks like this:
5dbd58d6b9033011686219.png
In this regard, two questions:
1. Is it possible, in principle, to transfer the full description of the product to the sidebar or display it in the sidebar as a widget? For example, here is a hook to transfer the full description under the add to cart button:

function woocommerce_template_product_description() {
woocommerce_get_template( 'single-product/tabs/description.php' );
}
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_product_description', 80 );

Is there a hook that allows you to display the full description in the sidebar?
2. In what file is the markup of the product card physically located in order to remove the sidebar output directly in the file and display the full description of the product?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
its2easyy, 2019-11-02
@its2easyy

The main template is content-single-product.php https://github.com/woocommerce/woocommerce/blob/ma... ,
there is the main frame into which separate blocks are connected through hooks. In a simple case, you can unbind the function from the default hook and call it somewhere else, or add it to your action. If there are a lot of changes, then it's easier to create your own content-single-product.php template and display blocks in any order.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question