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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
<?php /** * WooCommerce Cart Functions * * Functions for cart specific things. * * @author WooThemes * @category Core * @package WooCommerce/Functions * @version 2.1.0 */
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly }
/** * Prevent password protected products being added to the cart * * @param bool $passed * @param int $product_id * @return bool */ function wc_protected_product_add_to_cart( $passed, $product_id ) { if ( post_password_required( $product_id ) ) { $passed = false; wc_add_notice( __( 'This product is protected and cannot be purchased.', 'woocommerce' ), 'error' ); } return $passed; } add_filter( 'woocommerce_add_to_cart_validation', 'wc_protected_product_add_to_cart', 10, 2 );
/** * Clears the cart session when called * * @return void */ function wc_empty_cart() { if ( ! isset( WC()->cart ) || WC()->cart == '' ) { WC()->cart = new WC_Cart(); } WC()->cart->empty_cart( false ); }
/** * Load the cart upon login * * @param mixed $user_login * @param integer $user * @return void */ function wc_load_persistent_cart( $user_login, $user = 0 ) {
if ( ! $user ) return;
$saved_cart = get_user_meta( $user->ID, '_woocommerce_persistent_cart', true );
if ( $saved_cart ) if ( empty( WC()->session->cart ) || ! is_array( WC()->session->cart ) || sizeof( WC()->session->cart ) == 0 ) WC()->session->cart = $saved_cart['cart']; } add_action( 'wp_login', 'wc_load_persistent_cart', 1, 2 );
/** * Add to cart messages. * * @access public * @param int|array $product_id * @return void */ function wc_add_to_cart_message( $product_id ) {
if ( is_array( $product_id ) ) {
$titles = array();
foreach ( $product_id as $id ) { $titles[] = get_the_title( $id ); }
$added_text = sprintf( __( 'Added "%s" to your cart.', 'woocommerce' ), join( __( '" and "', 'woocommerce' ), array_filter( array_merge( array( join( '", "', array_slice( $titles, 0, -1 ) ) ), array_slice( $titles, -1 ) ) ) ) );
} else { $added_text = sprintf( __( '"%s" was successfully added to your cart.', 'woocommerce' ), get_the_title( $product_id ) ); }
// Output success messages if ( get_option( 'woocommerce_cart_redirect_after_add' ) == 'yes' ) :
$return_to = apply_filters( 'woocommerce_continue_shopping_redirect', wp_get_referer() ? wp_get_referer() : home_url() );
$message = sprintf('<a href="%s" class="button wc-forward">%s</a> %s', $return_to, __( 'Continue Shopping', 'woocommerce' ), $added_text );
else :
$message = sprintf('<a href="%s" class="button wc-forward">%s</a> %s', get_permalink( wc_get_page_id( 'cart' ) ), __( 'View Cart', 'woocommerce' ), $added_text );
endif;
wc_add_notice( apply_filters( 'wc_add_to_cart_message', $message, $product_id ) ); }
/** * Clear cart after payment. * * @access public * @return void */ function wc_clear_cart_after_payment() { global $wp;
if ( ! empty( $wp->query_vars['order-received'] ) ) {
$order_id = absint( $wp->query_vars['order-received'] );
if ( isset( $_GET['key'] ) ) $order_key = $_GET['key']; else $order_key = '';
if ( $order_id > 0 ) { $order = wc_get_order( $order_id );
if ( $order->order_key == $order_key ) { WC()->cart->empty_cart(); } }
}
if ( WC()->session->order_awaiting_payment > 0 ) {
$order = wc_get_order( WC()->session->order_awaiting_payment );
if ( $order->id > 0 ) { // If the order has not failed, or is not pending, the order must have gone through if ( ! $order->has_status( array( 'failed', 'pending' ) ) ) { WC()->cart->empty_cart(); } } } } add_action( 'get_header', 'wc_clear_cart_after_payment' );
/** * Get the subtotal * * @access public * @return string */ function wc_cart_totals_subtotal_html() { echo WC()->cart->get_cart_subtotal(); }
/** * Get shipping methods * * @access public * @return void */ function wc_cart_totals_shipping_html() { $packages = WC()->shipping->get_packages();
foreach ( $packages as $i => $package ) { $chosen_method = isset( WC()->session->chosen_shipping_methods[ $i ] ) ? WC()->session->chosen_shipping_methods[ $i ] : '';
wc_get_template( 'cart/cart-shipping.php', array( 'package' => $package, 'available_methods' => $package['rates'], 'show_package_details' => ( sizeof( $packages ) > 1 ), 'index' => $i, 'chosen_method' => $chosen_method ) ); } }
/** * Get taxes total * * @access public * @return void */ function wc_cart_totals_taxes_total_html() { echo apply_filters( 'woocommerce_cart_totals_taxes_total_html', wc_price( WC()->cart->get_taxes_total() ) ); }
/** * Get a coupon label * * @access public * @param string $coupon * @return void */ function wc_cart_totals_coupon_label( $coupon ) { if ( is_string( $coupon ) ) $coupon = new WC_Coupon( $coupon );
echo apply_filters( 'woocommerce_cart_totals_coupon_label', esc_html( __( 'Coupon:', 'woocommerce' ) . ' ' . $coupon->code ), $coupon ); }
/** * Get a coupon value * * @access public * @param string $coupon * @return void */ function wc_cart_totals_coupon_html( $coupon ) { if ( is_string( $coupon ) ) { $coupon = new WC_Coupon( $coupon ); }
$value = array();
if ( ! empty( WC()->cart->coupon_discount_amounts[ $coupon->code ] ) ) { $discount_html = '-' . wc_price( WC()->cart->coupon_discount_amounts[ $coupon->code ] ); } else { $discount_html = ''; }
$value[] = apply_filters( 'woocommerce_coupon_discount_amount_html', $discount_html, $coupon );
if ( $coupon->enable_free_shipping() ) { $value[] = __( 'Free shipping coupon', 'woocommerce' ); }
// get rid of empty array elements $value = array_filter( $value );
$value = implode( ', ', $value ) . ' <a href="' . add_query_arg( 'remove_coupon', $coupon->code, defined( 'WOOCOMMERCE_CHECKOUT' ) ? WC()->cart->get_checkout_url() : WC()->cart->get_cart_url() ) . '" class="woocommerce-remove-coupon">' . __( '[Remove]', 'woocommerce' ) . '</a>';
echo apply_filters( 'woocommerce_cart_totals_coupon_html', $value, $coupon ); }
/** * Get order total html including inc tax if needed * * @access public * @return void */ function wc_cart_totals_order_total_html() { echo '<strong>' . WC()->cart->get_total() . '</strong> ';
// If prices are tax inclusive, show taxes here if ( get_option( 'woocommerce_calc_taxes' ) == 'yes' && WC()->cart->tax_display_cart == 'incl' ) { $tax_string_array = array();
if ( get_option( 'woocommerce_tax_total_display' ) == 'itemized' ) { foreach ( WC()->cart->get_tax_totals() as $code => $tax ) $tax_string_array[] = sprintf( '%s %s', $tax->formatted_amount, $tax->label ); } else { $tax_string_array[] = sprintf( '%s %s', wc_price( WC()->cart->get_taxes_total( true, true ) ), WC()->countries->tax_or_vat() ); }
if ( ! empty( $tax_string_array ) ) echo '<small class="includes_tax">' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ) . '</small>'; } }
/** * Get the fee value * * @param object $fee * @return void */ function wc_cart_totals_fee_html( $fee ) { $cart_totals_fee_html = ( 'excl' == WC()->cart->tax_display_cart ) ? wc_price( $fee->amount ) : wc_price( $fee->amount + $fee->tax );
echo apply_filters( 'woocommerce_cart_totals_fee_html', $cart_totals_fee_html, $fee ); }
/** * Get a shipping methods full label including price * @param object $method * @return string */ function wc_cart_totals_shipping_method_label( $method ) { $label = $method->label;
if ( $method->cost > 0 ) { if ( WC()->cart->tax_display_cart == 'excl' ) { $label .= ': ' . wc_price( $method->cost ); if ( $method->get_shipping_tax() > 0 && WC()->cart->prices_include_tax ) { $label .= ' <small>' . WC()->countries->ex_tax_or_vat() . '</small>'; } } else { $label .= ': ' . wc_price( $method->cost + $method->get_shipping_tax() ); if ( $method->get_shipping_tax() > 0 && ! WC()->cart->prices_include_tax ) { $label .= ' <small>' . WC()->countries->inc_tax_or_vat() . '</small>'; } } } elseif ( $method->id !== 'free_shipping' ) { $label .= ' (' . __( 'Free', 'woocommerce' ) . ')'; }
return apply_filters( 'woocommerce_cart_shipping_method_full_label', $label, $method ); }
|