Answer the question
In order to leave comments, you need to log in
How to add the same description for all products?
Hello!
Can you tell me how to make a description for each product?
For example: now the products have no description at all. And I want to register the same description for all products. The description is in the tabs under the product photo.
Answer the question
In order to leave comments, you need to log in
As a result, I implemented it in this way: I inserted this hook into functions.php
add_action( 'woocommerce_product_tabs', 'my_add_description', 9 );
function my_add_description() {
global $product;
echo '<span class="title-description"> Купить '.$product->get_title().' можно в компании ООО "Компания".</span><br />';
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question