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: settings.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> <h1 class="font_bold font_18"><?php esc_html_e('Cart Discount','discountify'); ?></h1> <div class="documentation mb-1"><i class="doc"><?php esc_html_e('Set cart discount based on Cart amount or quantity','discountify'); ?></i></div> <?php $args = array('label'=>esc_html__('Cart Rules','discountify'),'id' => 'cart_rules','checked' => $cart_rules ); discountify_checkbox_field($args); $hide_cart_block = ( $cart_rules == 'no') ? 'd-none' : ''; // Apply discount in product/category $args = array( 'label'=>esc_html__('Discount On','discountify'), 'id' => 'cart_discount_in', 'condition_class' => esc_attr($hide_cart_block).' cart_rules', 'select_type' => 'single', 'selected' => $cart_discount_in, 'options'=> array( 'cart_total' => esc_html__('Cart Total','discountify') , 'cart_qty' => esc_html__('Cart Quantity','discountify') ) ); discountify_select_field($args); $args = array('label'=>esc_html__('Discount Label','discountify'),'id' => 'dis_cart_total_label', 'value' => $dis_cart_total_label, 'field_type' => 'text', 'condition_class' => esc_attr($hide_cart_block) .' cart_rules' ); discountify_number_input_field($args); if (file_exists(\Discountify::core_dir().'admin/settings/tab-content/cart-total-disc.php' ) ) { include \Discountify::core_dir(). 'admin/settings/tab-content/cart-total-disc.php' ; } if (file_exists(\Discountify::core_dir().'admin/settings/tab-content/shipping-discount.php' ) ) { include \Discountify::core_dir(). 'admin/settings/tab-content/shipping-discount.php' ; }
Save