Hello there,
hope you are doing well ??
The brand page is a taxonomy page, so you should search for the list of hooks available in a taxonomy page, and use one of them to add the shortcode you want.
In order to set the brand description at the bottom of the page, please, add the following code to the functions.php file of your active theme:
if ( class_exists( 'YITH_WCBR' ) && ! function_exists( 'yith_wcbr_move_brand_description' ) ) {
function yith_wcbr_move_brand_description() {
if ( version_compare( WC()->version, '2.7.0', '>=' ) ) {
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description' );
}
remove_action( 'woocommerce_archive_description', array( YITH_WCBR(), 'add_archive_brand_template' ), 7 );
add_action( 'woocommerce_after_shop_loop', array( YITH_WCBR(), 'add_archive_brand_template' ), 5 );
}
add_action( 'init', 'yith_wcbr_move_brand_description' );
}
Let us know any news, please.
Have a nice day!