Skip to content

Instantly share code, notes, and snippets.

View Sirineidriss's full-sized avatar
🙃
I may be slow to respond.

Sirineidriss

🙃
I may be slow to respond.
View GitHub Profile
@ibndawood
ibndawood / functions.php
Created January 30, 2019 08:37
Electro v2 - Show brand name in product loop
add_action( 'woocommerce_shop_loop_item_title', 'ec_template_loop_product_brand', 41 );
function ec_template_loop_product_brand() {
global $product;
$product_id = electro_wc_get_product_id( $product );
$brands_tax = electro_get_brands_taxonomy();
$terms = get_the_terms( $product_id, $brands_tax );
$brand_name = '';