Archived topic
Move brand descriptions below products on brand archives
3 replies · Started by Martyn on February 24, 2022
Hi Guys,
Do you know how to move brand descriptions below products on brand archives?
As an example see https://www.southernman.com.au/brands/rvca/ and https://imgur.com/a/0nXCSL2
I was able to move the category description with the following code but it didn't work for product_brand
//Move category description to bottom of page on Wordpress - start
add_action('woocommerce_archive_description', 'custom_archive_description', 2 );
function custom_archive_description(){
if( is_product_category() ) :
remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );
endif;
}
//Move category description to bottom of page on Wordpress - end
Cheers,
Marty
Hi Martyn
I would recommend going to WooCommerce support with regards to this.
Here are some links that may lead you to the correct hook though:
https://www.businessbloomer.com/woocommerce-visual-hook-guide-archiveshopcat-page/
Hope this helps! Cheers! :)
Thanks Fernando.
You’re welcome Martyn! Feel free to reach out anytime if you’ll need assistance with anything else! :)