Say Hello!

We love connecting with fellow tea lovers! Reach out and say hello – share your favorite blends, ask us a question, or just let us know what's on your mind.

Address

1234 Divi St. #1000, San Francisco, CA 94220

Phone

(255) 352-6258

add_action('woocommerce_after_shop_loop_item_title', 'custom_divi_product_extra_info', 15); function custom_divi_product_extra_info() { global $product; // Product Category $categories = wc_get_product_category_list($product->get_id()); // Attribute example: Location $location = $product->get_attribute('pa_location'); echo '
'; if($categories){ echo ''.$categories.''; } if($location){ echo ''.$location.''; } echo '
'; }