Hi,
I need to change on thing in the product-cat pages. With the last theme update I see firstly the term-description of the category, and secondly I see the product’s grid.
I need to see first the product-grid and below the term-description, how can I do it?
Example: (first link)
Other question. I need to see the short description product in the product grid, below the title. How can I do it?
Example: (second link)
Best regards!
Hello,
This is the kriesi support?? Only a forum where nobody answer 4 days later?? Can any moderator help me?? I think my question must be so easy to solve.
Thank you
Hi,
We are very sorry for the late response.
You should be able to move the content of the product archive pages using hooks.
Example:
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 40 );
add_action( 'woocommerce_after_main_content', 'woocommerce_product_archive_description', 40 );
That code should move the description below the product grid.
Best regards,
Ismael
Hi Ismael,
I got it some days ago, because it was quite urgent.
Regards