PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
themify-builder-pro
/
templates
/
wc
/
loop
<?php global $product; if(!is_object($product)){ return; } $isAvaialble=$product->is_purchasable() && $product->is_in_stock(); if($isAvaialble===true && !empty($args['label'])){ global $label; $label=$args['label']; if(!function_exists('tb_pro_add_to_cart_text')){ function tb_pro_add_to_cart_text(?string $text):?string{ remove_filter('woocommerce_product_single_add_to_cart_text','tb_pro_add_to_cart_text'); remove_filter('woocommerce_product_add_to_cart_text','tb_pro_add_to_cart_text'); global $label; $text = $label; $label=null; return $text; } add_filter('woocommerce_product_add_to_cart_text','tb_pro_add_to_cart_text'); add_filter('woocommerce_product_single_add_to_cart_text','tb_pro_add_to_cart_text'); } } ?> <div class="tb_pro_loop_add_to_cart tb_pro_add_to_cart<?php if(!empty($args['fullwidth']) && 'no' !== $args['fullwidth']):?> buttons-fullwidth<?php endif;?>"> <?php if($args['quantity']!=='yes' || $isAvaialble===false){ woocommerce_template_loop_add_to_cart(); } else{ $origVal=isset($_POST['quantity'])?$_POST['quantity']:false; $_POST['quantity'] =1; woocommerce_simple_add_to_cart(); if($origVal!==false){ $_POST['quantity'] =$origVal; } } $args=null; ?> </div>
[+]
..
[-] simple-archive.php
[edit]
[-] image.php
[edit]
[-] add-to-cart.php
[edit]
[-] loop-product-cart.php
[edit]