Telefonia

Pin It on Pinterest

// Add "Add to Cart" button to Divi Woo Products module items add_action('woocommerce_after_shop_loop_item_title', 'custom_add_to_cart_in_woo_products', 15); function custom_add_to_cart_in_woo_products() { if (is_shop() || is_product_category() || is_product_tag()) { global $product; echo '
'; woocommerce_template_loop_add_to_cart(); echo '
'; } }