Archive links to brands page
-
I have added the following code to display the brand name on the products but I cannot click on the link to go to the brand page.
How can i make de link clickable?
function yith_ywbr_show_woocommerce_brands_loop() {
global $product;
$product_brands = get_the_terms( $product->get_id() , ‘yith_product_brand’);
if ( is_array( $product_brands ) ){
foreach ($product_brands as $product_brand ){
echo ‘<div>’ . $product_brand->name . ‘</div>’;}
}
}
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘yith_ywbr_show_woocommerce_brands_loop’ );Thanks
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Archive links to brands page’ is closed to new replies.