Hi,
At first, I recommend using the child theme to add any code to customize the theme
https://wordpress.org/plugins/child-theme-generator/
then put this code to the file functions.php in the child theme folder
add_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description' );
Regards.
Hi Long,
Thanks for your reply. However, I get the following error when I try to put the code into the funtions.php file:
‘syntax error, unexpected end of file’
How can we solve this, so the description is visible?
Hope to hear from you soon.
Hi Long,
The code works now, great! One more question: Is it possible to display a short introduction above the products en to display a large amount of text below the products (bottom of the page). Thanks in advance.
Hi,
Which is the page that you want to display the description to the bottom?
Hi Long,
We would like to set up this for every URL that contains /categorie/
So, every category page with products. Is this enough information?
Hi,
Because of the product category has one description input box
https://cl.ly/924a7613965b
So if you want to display it at the bottom of the category page, please change the code above with this code
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description' );
Regards.