Brand Image in Loop page
-
Hi there.
Nice plugin, upgraded with the loop brand name code.function pwb_show_brands_in_loop(){ global $product; $product_id = $product->id; $product_brands = wp_get_post_terms($product_id, 'pwb-brand'); if(!empty($product_brands)){ echo '<div class="custom-loop-brands">'; foreach ($product_brands as $brand) { echo '<span>'.$brand->name.'</span>'; } echo '</div>'; } } add_action('woocommerce_before_shop_loop_item_title', 'pwb_show_brands_in_loop');Is there a way to show the image (logo) of the brand instead of the name?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Brand Image in Loop page’ is closed to new replies.