I want to have a short description and a long description on all my product category (Archive) pages. I have been able to move the product archive description to the bottom of the page using the code below:
// move Product category description to bottom of pages
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 100 );
What I also need is a short description to display at the top of every product archive page, but I have no idea how to do this. My current theme (OceanWP) doesn't give an option to have short and long descriptions on the product archive. What is the way around this?
source https://stackoverflow.com/questions/73825585/short-and-long-discription-in-woocommerce-product-category
No comments:
Post a Comment