Site logo

Archived topic

Move brand descriptions below products on brand archives

3 replies · Started by Martyn on February 24, 2022

Viewing posts 1–4 of 4

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

Thanks Fernando.

You’re welcome Martyn! Feel free to reach out anytime if you’ll need assistance with anything else! :)

This archived topic is closed to new replies.