Home Forums WoodMart support forum Is it possible to create a description page for brands Reply To: Is it possible to create a description page for brands

#95396

Artem Temos
Keymaster

You can’t do this if you are using brand filter and not brand archives. Try to turn on Enable archive option for the brand attribute and then add a description for your brand terms. You can add the following code to the functions.php file in the child theme to change brands link structure there

add_filter( 'woodmart_brands_link', function( $link, $brand ){
   return get_term_link( $brand->term_id, $brand->taxonomy );
}, 10, 2 );

Kind Regards