golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/discountify/core/admin/settings/tab-content
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
127 B
Del
OK
cart-total-disc.php
1.17 KB
Del
OK
settings.php
1.58 KB
Del
OK
shipping-discount.php
2.47 KB
Del
OK
Edit: cart-total-disc.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; use Discountify\Utils\Helper; $cart_label = $cart_discount_in == 'cart_qty' ? esc_html__('Quantity','discountify') : esc_html__('Cart','discountify'); $repeater_field = array( array( 'label'=> $cart_label .' '. esc_html__('Total:','discountify'), 'label_class' => 'cart-total-label', 'field_type' => 'number', 'id' => 'total', 'value' => '', ), array( 'label'=>esc_html__('Discount:','discountify'), 'label_class' => 'cart-total-fees', 'field_type' => 'number', 'id' => 'discount', 'value' => '', ), array( 'field_type' => 'span', 'id' => 'currency', 'condition_class'=>'cart-total-sym', 'value' => get_woocommerce_currency_symbol(), ), ); // Repeater field for extra fees $args = array( 'label' =>esc_html__('Cart Total:','discountify'), 'id' => 'cart_total', 'name' => 'multi_discounts[cart_total]', 'condition_class' => Helper::instance()->d_none_class( $cart_rules ) .' cart_rules cart_total', 'repeat_field' => $repeater_field ); discountify_repeater_field( 'cart_total' , $args );
Save