Repository › Forums › Support › WooCommerce Extended Coupon Features PRO › Free Product Quantity Message › Reply To: Free Product Quantity Message
August 21, 2018 at 8:58 am
#3683
Soft79
Keymaster
You can do this with a template override.
Copy wp-content/plugins/woocommerce-auto-added-coupons-pro/templates/coupon-select-free-product.php
to: wp-content/themes/YOUR_CHILD_THEME/woocommerce-auto-added-coupons/coupon-select-free-product.php
Then find the the following line (probably #55):
<h3><?php echo WJECF_API()->get_select_free_product_message( $coupon ); ?></h3>
and replace it with something like this:
<h3><?php
if ($max_quantity > 1)
echo "Please select {$max_quantity} free gifts";
else
echo "Please select one free gift";
?></h3>