/var/www/html_us/wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
/**
 * Tax settings.
 *
 * @package WooCommerce\Admin\Settings.
 */

defined'ABSPATH' ) || exit;

$settings = array(

    array(
        
'title' => __'Tax options''woocommerce' ),
        
'type'  => 'title',
        
'desc'  => '',
        
'id'    => 'tax_options',
    ),

    array(
        
'title'    => __'Prices entered with tax''woocommerce' ),
        
'id'       => 'woocommerce_prices_include_tax',
        
'default'  => 'no',
        
'type'     => 'radio',
        
'desc_tip' => __'This option is important as it will affect how you input prices. Changing it will not update existing products.''woocommerce' ),
        
'options'  => array(
            
'yes' => __'Yes, I will enter prices inclusive of tax''woocommerce' ),
            
'no'  => __'No, I will enter prices exclusive of tax''woocommerce' ),
        ),
    ),

    array(
        
'title'    => __'Calculate tax based on''woocommerce' ),
        
'id'       => 'woocommerce_tax_based_on',
        
'desc_tip' => __'This option determines which address is used to calculate tax.''woocommerce' ),
        
'default'  => 'shipping',
        
'type'     => 'select',
        
'class'    => 'wc-enhanced-select',
        
'options'  => array(
            
'shipping' => __'Customer shipping address''woocommerce' ),
            
'billing'  => __'Customer billing address''woocommerce' ),
            
'base'     => __'Shop base address''woocommerce' ),
        ),
    ),

    
'shipping-tax-class' => array(
        
'title'    => __'Shipping tax class''woocommerce' ),
        
'desc'     => __'Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves.''woocommerce' ),
        
'id'       => 'woocommerce_shipping_tax_class',
        
'css'      => 'min-width:150px;',
        
'default'  => 'inherit',
        
'type'     => 'select',
        
'class'    => 'wc-enhanced-select',
        
'options'  => array( 'inherit' => __'Shipping tax class based on cart items''woocommerce' ) ) + wc_get_product_tax_class_options(),
        
'desc_tip' => true,
    ),

    array(
        
'title'   => __'Rounding''woocommerce' ),
        
'desc'    => __'Round tax at subtotal level, instead of rounding per line''woocommerce' ),
        
'id'      => 'woocommerce_tax_round_at_subtotal',
        
'default' => 'no',
        
'type'    => 'checkbox',
    ),

    array(
        
'title'     => __'Additional tax classes''woocommerce' ),
        
'desc_tip'  => __'List additional tax classes you need below (1 per line, e.g. Reduced Rates). These are in addition to "Standard rate" which exists by default.''woocommerce' ),
        
'id'        => 'woocommerce_tax_classes',
        
'css'       => 'height: 65px;',
        
'type'      => 'textarea',
        
'default'   => '',
        
'is_option' => false,
        
'value'     => implode"\n"WC_Tax::get_tax_classes() ),
    ),

    array(
        
'title'   => __'Display prices in the shop''woocommerce' ),
        
'id'      => 'woocommerce_tax_display_shop',
        
'default' => 'excl',
        
'type'    => 'select',
        
'class'   => 'wc-enhanced-select',
        
'options' => array(
            
'incl' => __'Including tax''woocommerce' ),
            
'excl' => __'Excluding tax''woocommerce' ),
        ),
    ),

    array(
        
'title'   => __'Display prices during cart and checkout''woocommerce' ),
        
'id'      => 'woocommerce_tax_display_cart',
        
'default' => 'excl',
        
'type'    => 'select',
        
'class'   => 'wc-enhanced-select',
        
'options' => array(
            
'incl' => __'Including tax''woocommerce' ),
            
'excl' => __'Excluding tax''woocommerce' ),
        ),
    ),

    array( 
'type' => 'conflict_error' ), // React mount point for embedded banner slotfill.
    
array( 'type' => 'add_settings_slot' ), // React mount point for settings slotfill.

    
array(
        
'title'       => __'Price display suffix''woocommerce' ),
        
'id'          => 'woocommerce_price_display_suffix',
        
'default'     => '',
        
'placeholder' => __'N/A''woocommerce' ),
        
'type'        => 'text',
        
'desc_tip'    => __'Define text to show after your product prices. This could be, for example, "inc. Vat" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}.''woocommerce' ),
    ),

    array(
        
'title'    => __'Display tax totals''woocommerce' ),
        
'id'       => 'woocommerce_tax_total_display',
        
'default'  => 'itemized',
        
'type'     => 'select',
        
'class'    => 'wc-enhanced-select',
        
'options'  => array(
            
'single'   => __'As a single total''woocommerce' ),
            
'itemized' => __'Itemized''woocommerce' ),
        ),
        
'autoload' => false,
    ),

    array(
        
'type' => 'sectionend',
        
'id'   => 'tax_options',
    ),

);

if ( ! 
wc_shipping_enabled() ) {
    unset( 
$settings['shipping-tax-class'] );
}

return 
apply_filters'woocommerce_tax_settings'$settings );