/var/www/(Del)hsihk.com/wp-content/plugins/woocommerce/includes/wc-template-functions.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
<?php
/**
 * WooCommerce Template
 *
 * Functions for the templating system.
 *
 * @author         WooThemes
 * @category     Core
 * @package     WooCommerce/Functions
 * @version     2.1.0
 */

if ( ! defined'ABSPATH' ) ) {
    exit; 
// Exit if accessed directly
}

/**
 * Handle redirects before content is output - hooked into template_redirect so is_page works.
 *
 * @return void
 */
function wc_template_redirect() {
    global 
$wp_query$wp;

    
// When default permalinks are enabled, redirect shop page to post type archive url
    
if ( ! empty( $_GET['page_id'] ) && get_option'permalink_structure' ) == "" && $_GET['page_id'] == wc_get_page_id'shop' ) ) {
        
wp_safe_redirectget_post_type_archive_link('product') );
        exit;
    }

    
// When on the checkout with an empty cart, redirect to cart page
    
elseif ( is_pagewc_get_page_id'checkout' ) ) && sizeofWC()->cart->get_cart() ) == && empty( $wp->query_vars['order-pay'] ) && ! isset( $wp->query_vars['order-received'] ) ) {
        
wp_redirectget_permalinkwc_get_page_id'cart' ) ) );
        exit;
    }

    
// Logout
    
elseif ( isset( $wp->query_vars['customer-logout'] ) ) {
        
wp_redirectstr_replace'&amp;''&'wp_logout_urlget_permalinkwc_get_page_id'myaccount' ) ) ) ) );
        exit;
    }

    
// Redirect to the product page if we have a single product
    
elseif ( is_search() && is_post_type_archive'product' ) && apply_filters'woocommerce_redirect_single_search_result'true ) && $wp_query->found_posts == ) {
        
$product wc_get_product$wp_query->post );

        if ( 
$product->is_visible() ) {
            
wp_safe_redirectget_permalink$product->id ), 302 );
            exit;
        }
    }

    
// Ensure payment gateways are loaded early
    
elseif ( is_add_payment_method_page() ) {

        
WC()->payment_gateways();

    }

    
// Checkout pages handling
    
elseif ( is_checkout() ) {
        
// Buffer the checkout page
        
ob_start();

        
// Ensure gateways and shipping methods are loaded early
        
WC()->payment_gateways();
        
WC()->shipping();
    }
}
add_action'template_redirect''wc_template_redirect' );

/**
 * When the_post is called, put product data into a global.
 *
 * @param mixed $post
 * @return WC_Product
 */
function wc_setup_product_data$post ) {
    unset( 
$GLOBALS['product'] );

    if ( 
is_int$post ) )
        
$post get_post$post );

    if ( empty( 
$post->post_type ) || ! in_array$post->post_type, array( 'product''product_variation' ) ) )
        return;

    
$GLOBALS['product'] = wc_get_product$post );

    return 
$GLOBALS['product'];
}
add_action'the_post''wc_setup_product_data' );

if ( ! 
function_exists'woocommerce_reset_loop' ) ) {

    
/**
     * Reset the loop's index and columns when we're done outputting a product loop.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_reset_loop() {
        global 
$woocommerce_loop;
        
// Reset loop/columns globals when starting a new loop
        
$woocommerce_loop['loop'] = $woocommerce_loop['columns'] = '';
    }
}
add_filter'loop_end''woocommerce_reset_loop' );

/**
 * Products RSS Feed.
 *
 * @access public
 * @return void
 */
function wc_products_rss_feed() {
    
// Product RSS
    
if ( is_post_type_archive'product' ) || is_singular'product' ) ) {

        
$feed get_post_type_archive_feed_link'product' );

        echo 
'<link rel="alternate" type="application/rss+xml"  title="' __'New products''woocommerce' ) . '" href="' esc_attr$feed ) . '" />';

    } elseif ( 
is_tax'product_cat' ) ) {

        
$term get_term_by('slug'esc_attrget_query_var('product_cat') ), 'product_cat');

        
$feed add_query_arg('product_cat'$term->slugget_post_type_archive_feed_link'product' ));

        echo 
'<link rel="alternate" type="application/rss+xml"  title="' sprintf(__'New products added to %s''woocommerce' ), urlencode($term->name)) . '" href="' esc_attr$feed ) . '" />';

    } elseif ( 
is_tax'product_tag' ) ) {

        
$term get_term_by('slug'esc_attrget_query_var('product_tag') ), 'product_tag');

        
$feed add_query_arg('product_tag'$term->slugget_post_type_archive_feed_link'product' ));

        echo 
'<link rel="alternate" type="application/rss+xml"  title="' sprintf(__'New products tagged %s''woocommerce' ), urlencode($term->name)) . '" href="' esc_attr$feed ) . '" />';

    }
}

/**
 * Output generator tag to aid debugging.
 *
 * @access public
 * @return void
 */
function wc_generator_tag$gen$type ) {
    switch ( 
$type ) {
        case 
'html':
            
$gen .= "\n" '<meta name="generator" content="WooCommerce ' esc_attrWC_VERSION ) . '">';
            break;
        case 
'xhtml':
            
$gen .= "\n" '<meta name="generator" content="WooCommerce ' esc_attrWC_VERSION ) . '" />';
            break;
    }
    return 
$gen;
}

/**
 * Add body classes for WC pages
 *
 * @param  array $classes
 * @return array
 */
function wc_body_class$classes ) {
    
$classes = (array) $classes;

    if ( 
is_woocommerce() ) {
        
$classes[] = 'woocommerce';
        
$classes[] = 'woocommerce-page';
    }

    elseif ( 
is_checkout() ) {
        
$classes[] = 'woocommerce-checkout';
        
$classes[] = 'woocommerce-page';
    }

    elseif ( 
is_cart() ) {
        
$classes[] = 'woocommerce-cart';
        
$classes[] = 'woocommerce-page';
    }

    elseif ( 
is_account_page() ) {
        
$classes[] = 'woocommerce-account';
        
$classes[] = 'woocommerce-page';
    }

    if ( 
is_store_notice_showing() ) {
        
$classes[] = 'woocommerce-demo-store';
    }

    return 
array_unique$classes );
}

/**
 * Adds extra post classes for products
 *
 * @since 2.1.0
 * @param array $classes
 * @param string|array $class
 * @param int $post_id
 * @return array
 */
function wc_product_post_class$classes$class ''$post_id '' ) {
    if ( ! 
$post_id || 'product' !== get_post_type$post_id ) ) {
        return 
$classes;
    }

    
$product wc_get_product$post_id );

    if ( 
$product ) {
        if ( 
$product->is_on_sale() ) {
            
$classes[] = 'sale';
        }
        if ( 
$product->is_featured() ) {
            
$classes[] = 'featured';
        }
        if ( 
$product->is_downloadable() ) {
            
$classes[] = 'downloadable';
        }
        if ( 
$product->is_virtual() ) {
            
$classes[] = 'virtual';
        }
        if ( 
$product->is_sold_individually() ) {
            
$classes[] = 'sold-individually';
        }
        if ( 
$product->is_taxable() ) {
            
$classes[] = 'taxable';
        }
        if ( 
$product->is_shipping_taxable() ) {
            
$classes[] = 'shipping-taxable';
        }
        if ( 
$product->is_purchasable() ) {
            
$classes[] = 'purchasable';
        }
        if ( isset( 
$product->product_type ) ) {
            
$classes[] = "product-type-" $product->product_type;
        }

        
// add category slugs
        
$categories get_the_terms$product->id'product_cat' );
        if ( ! empty( 
$categories ) ) {
            foreach ( 
$categories as $key => $value ) {
                
$classes[] = 'product-cat-' $value->slug;
            }
        }

        
// add tag slugs
        
$tags get_the_terms$product->id'product_tag' );
        if ( ! empty( 
$tags ) ) {
            foreach ( 
$tags as $key => $value ) {
                
$classes[] = 'product-tag-' $value->slug;
            }
        }

        
$classes[] = $product->stock_status;
    }

    if ( 
false !== ( $key array_search'hentry'$classes ) ) ) {
        unset( 
$classes$key ] );
    }

    return 
$classes;
}

/** Template pages ********************************************************/

if ( ! function_exists'woocommerce_content' ) ) {

    
/**
     * Output WooCommerce content.
     *
     * This function is only used in the optional 'woocommerce.php' template
     * which people can add to their themes to add basic woocommerce support
     * without hooks or modifying core templates.
     *
     * @access public
     * @return void
     */
    
function woocommerce_content() {

        if ( 
is_singular'product' ) ) {

            while ( 
have_posts() ) : the_post();

                
wc_get_template_part'content''single-product' );

            endwhile;

        } else { 
?>

            <?php if ( apply_filters'woocommerce_show_page_title'true ) ) : ?>

                <h1 class="page-title"><?php woocommerce_page_title(); ?></h1>

            <?php endif; ?>

            <?php do_action'woocommerce_archive_description' ); ?>

            <?php if ( have_posts() ) : ?>

                <?php do_action('woocommerce_before_shop_loop'); ?>

                <?php woocommerce_product_loop_start(); ?>

                    <?php woocommerce_product_subcategories(); ?>

                    <?php while ( have_posts() ) : the_post(); ?>

                        <?php wc_get_template_part'content''product' ); ?>

                    <?php endwhile; // end of the loop. ?>

                <?php woocommerce_product_loop_end(); ?>

                <?php do_action('woocommerce_after_shop_loop'); ?>

            <?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_startfalse ), 'after' => woocommerce_product_loop_endfalse ) ) ) ) : ?>

                <?php wc_get_template'loop/no-products-found.php' ); ?>

            <?php endif;

        }
    }
}

/** Global ****************************************************************/

if ( ! function_exists'woocommerce_output_content_wrapper' ) ) {

    
/**
     * Output the start of the page wrapper.
     *
     * @access public
     * @return void
     */
    
function woocommerce_output_content_wrapper() {
        
wc_get_template'global/wrapper-start.php' );
    }
}
if ( ! 
function_exists'woocommerce_output_content_wrapper_end' ) ) {

    
/**
     * Output the end of the page wrapper.
     *
     * @access public
     * @return void
     */
    
function woocommerce_output_content_wrapper_end() {
        
wc_get_template'global/wrapper-end.php' );
    }
}

if ( ! 
function_exists'woocommerce_get_sidebar' ) ) {

    
/**
     * Get the shop sidebar template.
     *
     * @access public
     * @return void
     */
    
function woocommerce_get_sidebar() {
        
wc_get_template'global/sidebar.php' );
    }
}

if ( ! 
function_exists'woocommerce_demo_store' ) ) {

    
/**
     * Adds a demo store banner to the site if enabled
     *
     * @access public
     * @return void
     */
    
function woocommerce_demo_store() {
        if ( !
is_store_notice_showing() )
            return;

        
$notice get_option'woocommerce_demo_store_notice' );
        if ( empty( 
$notice ) )
            
$notice __'This is a demo store for testing purposes &mdash; no orders shall be fulfilled.''woocommerce' );

        echo 
apply_filters'woocommerce_demo_store''<p class="demo_store">' $notice '</p>'  );
    }
}

/** Loop ******************************************************************/

if ( ! function_exists'woocommerce_page_title' ) ) {

    
/**
     * woocommerce_page_title function.
     *
     * @param  boolean $echo
     * @return string
     */
    
function woocommerce_page_title$echo true ) {

        if ( 
is_search() ) {
            
$page_title sprintf__'Search Results: &ldquo;%s&rdquo;''woocommerce' ), get_search_query() );

            if ( 
get_query_var'paged' ) )
                
$page_title .= sprintf__'&nbsp;&ndash; Page %s''woocommerce' ), get_query_var'paged' ) );

        } elseif ( 
is_tax() ) {

            
$page_title single_term_title""false );

        } else {

            
$shop_page_id wc_get_page_id'shop' );
            
$page_title   get_the_title$shop_page_id );

        }

        
$page_title apply_filters'woocommerce_page_title'$page_title );

        if ( 
$echo )
            echo 
$page_title;
        else
            return 
$page_title;
    }
}

if ( ! 
function_exists'woocommerce_product_loop_start' ) ) {

    
/**
     * Output the start of a product loop. By default this is a UL
     *
     * @access public
     * @param bool $echo
     * @return string
     */
    
function woocommerce_product_loop_start$echo true ) {
        
ob_start();
        
wc_get_template'loop/loop-start.php' );
        if ( 
$echo )
            echo 
ob_get_clean();
        else
            return 
ob_get_clean();
    }
}
if ( ! 
function_exists'woocommerce_product_loop_end' ) ) {

    
/**
     * Output the end of a product loop. By default this is a UL
     *
     * @access public
     * @param bool $echo
     * @return string
     */
    
function woocommerce_product_loop_end$echo true ) {
        
ob_start();

        
wc_get_template'loop/loop-end.php' );

        if ( 
$echo )
            echo 
ob_get_clean();
        else
            return 
ob_get_clean();
    }
}
if ( ! 
function_exists'woocommerce_taxonomy_archive_description' ) ) {

    
/**
     * Show an archive description on taxonomy archives
     *
     * @access public
     * @subpackage    Archives
     * @return void
     */
    
function woocommerce_taxonomy_archive_description() {
        if ( 
is_tax( array( 'product_cat''product_tag' ) ) && get_query_var'paged' ) == ) {
            
$description wpautopdo_shortcodeterm_description() ) );
            if ( 
$description ) {
                echo 
'<div class="term-description">' $description '</div>';
            }
        }
    }
}
if ( ! 
function_exists'woocommerce_product_archive_description' ) ) {

    
/**
     * Show a shop page description on product archives
     *
     * @access public
     * @subpackage    Archives
     * @return void
     */
    
function woocommerce_product_archive_description() {
        if ( 
is_post_type_archive'product' ) && get_query_var'paged' ) == ) {
            
$shop_page   get_postwc_get_page_id'shop' ) );
            if ( 
$shop_page ) {
                
$description wpautopdo_shortcode$shop_page->post_content ) );
                if ( 
$description ) {
                    echo 
'<div class="page-description">' $description '</div>';
                }
            }
        }
    }
}

if ( ! 
function_exists'woocommerce_template_loop_add_to_cart' ) ) {

    
/**
     * Get the add to cart template for the loop.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_template_loop_add_to_cart$args = array() ) {
        
wc_get_template'loop/add-to-cart.php' $args );
    }
}
if ( ! 
function_exists'woocommerce_template_loop_product_thumbnail' ) ) {

    
/**
     * Get the product thumbnail for the loop.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_template_loop_product_thumbnail() {
        echo 
woocommerce_get_product_thumbnail();
    }
}
if ( ! 
function_exists'woocommerce_template_loop_price' ) ) {

    
/**
     * Get the product price for the loop.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_template_loop_price() {
        
wc_get_template'loop/price.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_loop_rating' ) ) {

    
/**
     * Display the average rating in the loop
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_template_loop_rating() {
        
wc_get_template'loop/rating.php' );
    }
}
if ( ! 
function_exists'woocommerce_show_product_loop_sale_flash' ) ) {

    
/**
     * Get the sale flash for the loop.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_show_product_loop_sale_flash() {
        
wc_get_template'loop/sale-flash.php' );
    }
}

if ( ! 
function_exists'woocommerce_get_product_schema' ) ) {

    
/**
     * Get a products Schema
     * @return string
     */
    
function woocommerce_get_product_schema() {
        global 
$product;

        
$schema "Product";

        
// Downloadable product schema handling
        
if ( $product->is_downloadable() ) {
            switch ( 
$product->download_type ) {
                case 
'application' :
                    
$schema "SoftwareApplication";
                break;
                case 
'music' :
                    
$schema "MusicAlbum";
                break;
                default :
                    
$schema "Product";
                break;
            }
        }

        return 
'http://schema.org/' $schema;
    }
}

if ( ! 
function_exists'woocommerce_get_product_thumbnail' ) ) {

    
/**
     * Get the product thumbnail, or the placeholder if not set.
     *
     * @access public
     * @subpackage    Loop
     * @param string $size (default: 'shop_catalog')
     * @param int $placeholder_width (default: 0)
     * @param int $placeholder_height (default: 0)
     * @return string
     */
    
function woocommerce_get_product_thumbnail$size 'shop_catalog'$placeholder_width 0$placeholder_height 0  ) {
        global 
$post;

        if ( 
has_post_thumbnail() )
            return 
get_the_post_thumbnail$post->ID$size );
        elseif ( 
wc_placeholder_img_src() )
            return 
wc_placeholder_img$size );
    }
}

if ( ! 
function_exists'woocommerce_result_count' ) ) {

    
/**
     * Output the result count text (Showing x - x of x results).
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_result_count() {
        
wc_get_template'loop/result-count.php' );
    }
}

if ( ! 
function_exists'woocommerce_catalog_ordering' ) ) {

    
/**
     * Output the product sorting options.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_catalog_ordering() {
        global 
$wp_query;

        if ( 
== $wp_query->found_posts || ! woocommerce_products_will_display() ) {
            return;
        }

        
$orderby                 = isset( $_GET['orderby'] ) ? wc_clean$_GET['orderby'] ) : apply_filters'woocommerce_default_catalog_orderby'get_option'woocommerce_default_catalog_orderby' ) );
        
$show_default_orderby    'menu_order' === apply_filters'woocommerce_default_catalog_orderby'get_option'woocommerce_default_catalog_orderby' ) );
        
$catalog_orderby_options apply_filters'woocommerce_catalog_orderby', array(
            
'menu_order' => __'Default sorting''woocommerce' ),
            
'popularity' => __'Sort by popularity''woocommerce' ),
            
'rating'     => __'Sort by average rating''woocommerce' ),
            
'date'       => __'Sort by newness''woocommerce' ),
            
'price'      => __'Sort by price: low to high''woocommerce' ),
            
'price-desc' => __'Sort by price: high to low''woocommerce' )
        ) );

        if ( ! 
$show_default_orderby ) {
            unset( 
$catalog_orderby_options['menu_order'] );
        }

        if ( 
get_option'woocommerce_enable_review_rating' ) === 'no' ) {
            unset( 
$catalog_orderby_options['rating'] );
        }

        
wc_get_template'loop/orderby.php', array( 'catalog_orderby_options' => $catalog_orderby_options'orderby' => $orderby'show_default_orderby' => $show_default_orderby ) );
    }
}

if ( ! 
function_exists'woocommerce_pagination' ) ) {

    
/**
     * Output the pagination.
     *
     * @access public
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_pagination() {
        
wc_get_template'loop/pagination.php' );
    }
}

/** Single Product ********************************************************/

if ( ! function_exists'woocommerce_show_product_images' ) ) {

    
/**
     * Output the product image before the single product summary.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_show_product_images() {
        
wc_get_template'single-product/product-image.php' );
    }
}
if ( ! 
function_exists'woocommerce_show_product_thumbnails' ) ) {

    
/**
     * Output the product thumbnails.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_show_product_thumbnails() {
        
wc_get_template'single-product/product-thumbnails.php' );
    }
}
if ( ! 
function_exists'woocommerce_output_product_data_tabs' ) ) {

    
/**
     * Output the product tabs.
     *
     * @access public
     * @subpackage    Product/Tabs
     * @return void
     */
    
function woocommerce_output_product_data_tabs() {
        
wc_get_template'single-product/tabs/tabs.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_single_title' ) ) {

    
/**
     * Output the product title.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_title() {
        
wc_get_template'single-product/title.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_single_rating' ) ) {

    
/**
     * Output the product rating.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_rating() {
        
wc_get_template'single-product/rating.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_single_price' ) ) {

    
/**
     * Output the product price.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_price() {
        
wc_get_template'single-product/price.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_single_excerpt' ) ) {

    
/**
     * Output the product short description (excerpt).
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_excerpt() {
        
wc_get_template'single-product/short-description.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_single_meta' ) ) {

    
/**
     * Output the product meta.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_meta() {
        
wc_get_template'single-product/meta.php' );
    }
}
if ( ! 
function_exists'woocommerce_template_single_sharing' ) ) {

    
/**
     * Output the product sharing.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_sharing() {
        
wc_get_template'single-product/share.php' );
    }
}
if ( ! 
function_exists'woocommerce_show_product_sale_flash' ) ) {

    
/**
     * Output the product sale flash.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_show_product_sale_flash() {
        
wc_get_template'single-product/sale-flash.php' );
    }
}

if ( ! 
function_exists'woocommerce_template_single_add_to_cart' ) ) {

    
/**
     * Trigger the single product add to cart action.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_template_single_add_to_cart() {
        global 
$product;
        
do_action'woocommerce_' $product->product_type '_add_to_cart'  );
    }
}
if ( ! 
function_exists'woocommerce_simple_add_to_cart' ) ) {

    
/**
     * Output the simple product add to cart area.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_simple_add_to_cart() {
        
wc_get_template'single-product/add-to-cart/simple.php' );
    }
}
if ( ! 
function_exists'woocommerce_grouped_add_to_cart' ) ) {

    
/**
     * Output the grouped product add to cart area.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_grouped_add_to_cart() {
        global 
$product;

        
wc_get_template'single-product/add-to-cart/grouped.php', array(
            
'grouped_product'    => $product,
            
'grouped_products'   => $product->get_children(),
            
'quantites_required' => false
        
) );
    }
}
if ( ! 
function_exists'woocommerce_variable_add_to_cart' ) ) {

    
/**
     * Output the variable product add to cart area.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_variable_add_to_cart() {
        global 
$product;

        
// Enqueue variation scripts
        
wp_enqueue_script'wc-add-to-cart-variation' );

        
// Load the template
        
wc_get_template'single-product/add-to-cart/variable.php', array(
                
'available_variations'  => $product->get_available_variations(),
                
'attributes'               => $product->get_variation_attributes(),
                
'selected_attributes'     => $product->get_variation_default_attributes()
            ) );
    }
}
if ( ! 
function_exists'woocommerce_external_add_to_cart' ) ) {

    
/**
     * Output the external product add to cart area.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_external_add_to_cart() {
        global 
$product;

        if ( ! 
$product->get_product_url() )
            return;

        
wc_get_template'single-product/add-to-cart/external.php', array(
                
'product_url' => $product->get_product_url(),
                
'button_text' => $product->single_add_to_cart_text()
            ) );
    }
}

if ( ! 
function_exists'woocommerce_quantity_input' ) ) {

    
/**
     * Output the quantity input for add to cart forms.
     *
     * @param  array $args Args for the input
     * @param  WC_Product|null $product
     * @param  boolean $echo Whether to return or echo
     * @return void|string
     */
    
function woocommerce_quantity_input$args = array(), $product null$echo true ) {
        if ( 
is_null$product ) )
            
$product $GLOBALS['product'];

        
$defaults = array(
            
'input_name'      => 'quantity',
            
'input_value'      => '1',
            
'max_value'      => apply_filters'woocommerce_quantity_input_max'''$product ),
            
'min_value'      => apply_filters'woocommerce_quantity_input_min'''$product ),
            
'step'             => apply_filters'woocommerce_quantity_input_step''1'$product )
        );

        
$args apply_filters'woocommerce_quantity_input_args'wp_parse_args$args$defaults ), $product );

        
ob_start();

        
wc_get_template'global/quantity-input.php'$args );

        if ( 
$echo ) {
            echo 
ob_get_clean();
        } else {
            return 
ob_get_clean();
        }
    }
}

if ( ! 
function_exists'woocommerce_product_description_tab' ) ) {

    
/**
     * Output the description tab content.
     *
     * @access public
     * @subpackage    Product/Tabs
     * @return void
     */
    
function woocommerce_product_description_tab() {
        
wc_get_template'single-product/tabs/description.php' );
    }
}
if ( ! 
function_exists'woocommerce_product_additional_information_tab' ) ) {

    
/**
     * Output the attributes tab content.
     *
     * @access public
     * @subpackage    Product/Tabs
     * @return void
     */
    
function woocommerce_product_additional_information_tab() {
        
wc_get_template'single-product/tabs/additional-information.php' );
    }
}
if ( ! 
function_exists'woocommerce_product_reviews_tab' ) ) {

    
/**
     * Output the reviews tab content.
     *
     * @access public
     * @subpackage    Product/Tabs
     * @return void
     */
    
function woocommerce_product_reviews_tab() {
        
wc_get_template'single-product/tabs/reviews.php' );
    }
}

if ( ! 
function_exists'woocommerce_default_product_tabs' ) ) {

    
/**
     * Add default product tabs to product pages.
     *
     * @access public
     * @param array $tabs
     * @return array
     */
    
function woocommerce_default_product_tabs$tabs = array() ) {
        global 
$product$post;

        
// Description tab - shows product content
        
if ( $post->post_content ) {
            
$tabs['description'] = array(
                
'title'    => __'Description''woocommerce' ),
                
'priority' => 10,
                
'callback' => 'woocommerce_product_description_tab'
            
);
        }

        
// Additional information tab - shows attributes
        
if ( $product && ( $product->has_attributes() || ( $product->enable_dimensions_display() && ( $product->has_dimensions() || $product->has_weight() ) ) ) ) {
            
$tabs['additional_information'] = array(
                
'title'    => __'Additional Information''woocommerce' ),
                
'priority' => 20,
                
'callback' => 'woocommerce_product_additional_information_tab'
            
);
        }

        
// Reviews tab - shows comments
        
if ( comments_open() ) {
            
$tabs['reviews'] = array(
                
'title'    => sprintf__'Reviews (%d)''woocommerce' ), get_comments_number$post->ID ) ),
                
'priority' => 30,
                
'callback' => 'comments_template'
            
);
        }

        return 
$tabs;
    }
}

if ( ! 
function_exists'woocommerce_sort_product_tabs' ) ) {

    
/**
     * Sort tabs by priority
     *
     * @access public
     * @param array $tabs
     * @return array
     */
    
function woocommerce_sort_product_tabs$tabs = array() ) {

        
// Make sure the $tabs parameter is an array
        
if ( ! is_array$tabs ) ) {
            
trigger_error"Function woocommerce_sort_product_tabs() expects an array as the first parameter. Defaulting to empty array." );
            
$tabs = array( );
        }

        
// Re-order tabs by priority
        
if ( ! function_exists'_sort_priority_callback' ) ) {
            function 
_sort_priority_callback$a$b ) {
                if ( 
$a['priority'] == $b['priority'] )
                    return 
0;
                return ( 
$a['priority'] < $b['priority'] ) ? -1;
            }
        }

        
uasort$tabs'_sort_priority_callback' );

        return 
$tabs;
    }
}

if ( ! 
function_exists'woocommerce_comments' ) ) {

    
/**
     * Output the Review comments template.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_comments$comment$args$depth ) {
        
$GLOBALS['comment'] = $comment;
        
wc_get_template'single-product/review.php', array( 'comment' => $comment'args' => $args'depth' => $depth ) );
    }
}

if ( ! 
function_exists'woocommerce_output_related_products' ) ) {

    
/**
     * Output the related products.
     *
     * @access public
     * @subpackage    Product
     * @return void
     */
    
function woocommerce_output_related_products() {

        
$args = array(
            
'posts_per_page' => 2,
            
'columns' => 2,
            
'orderby' => 'rand'
        
);

        
woocommerce_related_productsapply_filters'woocommerce_output_related_products_args'$args ) );
    }
}

if ( ! 
function_exists'woocommerce_related_products' ) ) {

    
/**
     * Output the related products.
     *
     * @access public
     * @param array Provided arguments
     * @param bool Columns argument for backwards compat
     * @param bool Order by argument for backwards compat
     * @return void
     */
    
function woocommerce_related_products$args = array(), $columns false$orderby false ) {
        if ( ! 
is_array$args ) ) {
            
_deprecated_argument__FUNCTION__'2.1'__'Use $args argument as an array instead. Deprecated argument will be removed in WC 2.2.''woocommerce' ) );

            
$argsvalue $args;

            
$args = array(
                
'posts_per_page' => $argsvalue,
                
'columns'        => $columns,
                
'orderby'        => $orderby,
            );
        }

        
$defaults = array(
            
'posts_per_page' => 2,
            
'columns'        => 2,
            
'orderby'        => 'rand'
        
);

        
$args wp_parse_args$args$defaults );

        
wc_get_template'single-product/related.php'$args );
    }
}

if ( ! 
function_exists'woocommerce_upsell_display' ) ) {

    
/**
     * Output product up sells.
     *
     * @access public
     * @param int $posts_per_page (default: -1)
     * @param int $columns (default: 2)
     * @param string $orderby (default: 'rand')
     * @return void
     */
    
function woocommerce_upsell_display$posts_per_page '-1'$columns 2$orderby 'rand' ) {
        
wc_get_template'single-product/up-sells.php', array(
                
'posts_per_page'    => $posts_per_page,
                
'orderby'            => apply_filters'woocommerce_upsells_orderby'$orderby ),
                
'columns'            => $columns
            
) );
    }
}

/** Cart ******************************************************************/

if ( ! function_exists'woocommerce_shipping_calculator' ) ) {

    
/**
     * Output the cart shipping calculator.
     *
     * @access public
     * @subpackage    Cart
     * @return void
     */
    
function woocommerce_shipping_calculator() {
        
wc_get_template'cart/shipping-calculator.php' );
    }
}

if ( ! 
function_exists'woocommerce_cart_totals' ) ) {

    
/**
     * Output the cart totals.
     *
     * @access public
     * @subpackage    Cart
     * @return void
     */
    
function woocommerce_cart_totals() {
        
wc_get_template'cart/cart-totals.php' );
    }
}

if ( ! 
function_exists'woocommerce_cross_sell_display' ) ) {

    
/**
     * Output the cart cross-sells.
     *
     * @param  integer $posts_per_page
     * @param  integer $columns
     * @param  string $orderby
     */
    
function woocommerce_cross_sell_display$posts_per_page 2$columns 2$orderby 'rand' ) {
        
wc_get_template'cart/cross-sells.php', array(
                
'posts_per_page' => $posts_per_page,
                
'orderby'        => $orderby,
                
'columns'        => $columns
            
) );
    }
}

/** Mini-Cart *************************************************************/

if ( ! function_exists'woocommerce_mini_cart' ) ) {

    
/**
     * Output the Mini-cart - used by cart widget
     *
     * @access public
     * @return void
     */
    
function woocommerce_mini_cart$args = array() ) {

        
$defaults = array(
            
'list_class' => ''
        
);

        
$args wp_parse_args$args$defaults );

        
wc_get_template'cart/mini-cart.php'$args );
    }
}

/** Login *****************************************************************/

if ( ! function_exists'woocommerce_login_form' ) ) {

    
/**
     * Output the WooCommerce Login Form
     *
     * @access public
     * @subpackage    Forms
     * @return void
     */
    
function woocommerce_login_form$args = array() ) {

        
$defaults = array(
            
'message'  => '',
            
'redirect' => '',
            
'hidden'   => false
        
);

        
$args wp_parse_args$args$defaults  );

        
wc_get_template'global/form-login.php'$args );
    }
}

if ( ! 
function_exists'woocommerce_checkout_login_form' ) ) {

    
/**
     * Output the WooCommerce Checkout Login Form
     *
     * @access public
     * @subpackage    Checkout
     * @return void
     */
    
function woocommerce_checkout_login_form() {
        
wc_get_template'checkout/form-login.php', array( 'checkout' => WC()->checkout() ) );
    }
}

if ( ! 
function_exists'woocommerce_breadcrumb' ) ) {

    
/**
     * Output the WooCommerce Breadcrumb
     *
     * @access public
     * @return void
     */
    
function woocommerce_breadcrumb$args = array() ) {

        
$defaults apply_filters'woocommerce_breadcrumb_defaults', array(
            
'delimiter'   => ' &#47; ',
            
'wrap_before' => '<nav class="woocommerce-breadcrumb" ' . ( is_single() ? 'itemprop="breadcrumb"' '' ) . '>',
            
'wrap_after'  => '</nav>',
            
'before'      => '',
            
'after'       => '',
            
'home'        => _x'Home''breadcrumb''woocommerce' ),
        ) );

        
$args wp_parse_args$args$defaults );

        
wc_get_template'global/breadcrumb.php'$args );
    }
}

if ( ! 
function_exists'woocommerce_order_review' ) ) {

    
/**
     * Output the Order review table for the checkout.
     *
     * @access public
     * @subpackage    Checkout
     * @return void
     */
    
function woocommerce_order_review$is_ajax false ) {
        
wc_get_template'checkout/review-order.php', array( 'checkout' => WC()->checkout(), 'is_ajax' => $is_ajax ) );
    }
}

if ( ! 
function_exists'woocommerce_checkout_coupon_form' ) ) {

    
/**
     * Output the Coupon form for the checkout.
     *
     * @access public
     * @subpackage    Checkout
     * @return void
     */
    
function woocommerce_checkout_coupon_form() {
        
wc_get_template'checkout/form-coupon.php', array( 'checkout' => WC()->checkout() ) );
    }
}

if ( ! 
function_exists'woocommerce_products_will_display' ) ) {

    
/**
     * Check if we will be showing products or not (and not subcats only)
     *
     * @access public
     * @subpackage    Loop
     * @return bool
     */
    
function woocommerce_products_will_display() {
        if ( 
is_shop() )
            return 
get_option'woocommerce_shop_page_display' ) != 'subcategories';

        if ( ! 
is_product_taxonomy() )
            return 
false;

        if ( 
is_search() || is_filtered() || is_paged() )
            return 
true;

        
$term get_queried_object();

        if ( 
is_product_category() ) {
            switch ( 
get_woocommerce_term_meta$term->term_id'display_type'true ) ) {
                case 
'subcategories' :
                    
// Nothing - we want to continue to see if there are products/subcats
                
break;
                case 
'products' :
                case 
'both' :
                    return 
true;
                break;
                default :
                    
// Default - no setting
                    
if ( get_option'woocommerce_category_archive_display' ) != 'subcategories' )
                        return 
true;
                break;
            }
        }

        
// Begin subcategory logic
        
global $wpdb;

        
$parent_id             = empty( $term->term_id ) ? $term->term_id;
        
$taxonomy              = empty( $term->taxonomy ) ? '' $term->taxonomy;
        
$products_will_display true;

        if ( ! 
$parent_id && ! $taxonomy ) {
            return 
true;
        }

        
$transient_name 'wc_products_will_display_' $parent_id WC_Cache_Helper::get_transient_version'product_query' );

        if ( 
false === ( $products_will_display get_transient$transient_name ) ) ) {
            
$has_children $wpdb->get_col$wpdb->prepare"SELECT term_id FROM {$wpdb->term_taxonomy} WHERE parent = %d AND taxonomy = %s"$parent_id$taxonomy ) );

            if ( 
$has_children ) {
                
// Check terms have products inside - parents first. If products are found inside, subcats will be shown instead of products so we can return false.
                
if ( sizeofget_objects_in_term$has_children$taxonomy ) ) > ) {
                    
$products_will_display false;
                } else {
                    
// If we get here, the parents were empty so we're forced to check children
                    
foreach ( $has_children as $term ) {
                        
$children get_term_children$term$taxonomy );

                        if ( 
sizeofget_objects_in_term$children$taxonomy ) ) > ) {
                            
$products_will_display false;
                            break;
                        }
                    }
                }
            } else {
                
$products_will_display true;
            }
        }

        
set_transient$transient_name$products_will_displayYEAR_IN_SECONDS );

        return 
$products_will_display;
    }
}

if ( ! 
function_exists'woocommerce_product_subcategories' ) ) {

    
/**
     * Display product sub categories as thumbnails.
     *
     * @access public
     * @subpackage    Loop
     * @param array $args
     * @return null|boolean
     */
    
function woocommerce_product_subcategories$args = array() ) {
        global 
$wp_query;

        
$defaults = array(
            
'before'        => '',
            
'after'         => '',
            
'force_display' => false
        
);

        
$args wp_parse_args$args$defaults );

        
extract$args );

        
// Main query only
        
if ( ! is_main_query() && ! $force_display ) {
            return;
        }

        
// Don't show when filtering, searching or when on page > 1 and ensure we're on a product archive
        
if ( is_search() || is_filtered() || is_paged() || ( ! is_product_category() && ! is_shop() ) ) {
            return;
        }

        
// Check categories are enabled
        
if ( is_shop() && get_option'woocommerce_shop_page_display' ) == '' ) {
            return;
        }

        
// Find the category + category parent, if applicable
        
$term             get_queried_object();
        
$parent_id         = empty( $term->term_id ) ? $term->term_id;

        if ( 
is_product_category() ) {
            
$display_type get_woocommerce_term_meta$term->term_id'display_type'true );

            switch ( 
$display_type ) {
                case 
'products' :
                    return;
                break;
                case 
'' :
                    if ( 
get_option'woocommerce_category_archive_display' ) == '' ) {
                        return;
                    }
                break;
            }
        }

        
// NOTE: using child_of instead of parent - this is not ideal but due to a WP bug ( http://core.trac.wordpress.org/ticket/15626 ) pad_counts won't work
        
$product_categories get_categoriesapply_filters'woocommerce_product_subcategories_args', array(
            
'parent'       => $parent_id,
            
'menu_order'   => 'ASC',
            
'hide_empty'   => 0,
            
'hierarchical' => 1,
            
'taxonomy'     => 'product_cat',
            
'pad_counts'   => 1
        
) ) );

        if ( ! 
apply_filters'woocommerce_product_subcategories_hide_empty'false ) ) {
            
$product_categories wp_list_filter$product_categories, array( 'count' => ), 'NOT' );
        }

        
$product_category_found false;

        if ( 
$product_categories ) {
            echo 
$before;

            foreach ( 
$product_categories as $category ) {
                
wc_get_template'content-product_cat.php', array(
                    
'category' => $category
                
) );
            }

            
// If we are hiding products disable the loop and pagination
            
if ( is_product_category() ) {
                
$display_type get_woocommerce_term_meta$term->term_id'display_type'true );

                switch ( 
$display_type ) {
                    case 
'subcategories' :
                        
$wp_query->post_count    0;
                        
$wp_query->max_num_pages 0;
                    break;
                    case 
'' :
                        if ( 
get_option'woocommerce_category_archive_display' ) == 'subcategories' ) {
                            
$wp_query->post_count    0;
                            
$wp_query->max_num_pages 0;
                        }
                    break;
                }
            }

            if ( 
is_shop() && get_option'woocommerce_shop_page_display' ) == 'subcategories' ) {
                
$wp_query->post_count    0;
                
$wp_query->max_num_pages 0;
            }

            echo 
$after;
        }

        return 
true;
    }
}

if ( ! 
function_exists'woocommerce_subcategory_thumbnail' ) ) {

    
/**
     * Show subcategory thumbnails.
     *
     * @access public
     * @param mixed $category
     * @subpackage    Loop
     * @return void
     */
    
function woocommerce_subcategory_thumbnail$category ) {
        
$small_thumbnail_size      apply_filters'single_product_small_thumbnail_size''shop_catalog' );
        
$dimensions                wc_get_image_size$small_thumbnail_size );
        
$thumbnail_id              get_woocommerce_term_meta$category->term_id'thumbnail_id'true  );

        if ( 
$thumbnail_id ) {
            
$image wp_get_attachment_image_src$thumbnail_id$small_thumbnail_size  );
            
$image $image[0];
        } else {
            
$image wc_placeholder_img_src();
        }

        if ( 
$image ) {
            
// Prevent esc_url from breaking spaces in urls for image embeds
            // Ref: http://core.trac.wordpress.org/ticket/23605
            
$image str_replace' ''%20'$image );

            echo 
'<img src="' esc_url$image ) . '" alt="' esc_attr$category->name ) . '" width="' esc_attr$dimensions['width'] ) . '" height="' esc_attr$dimensions['height'] ) . '" />';
        }
    }
}

if ( ! 
function_exists'woocommerce_order_details_table' ) ) {

    
/**
     * Displays order details in a table.
     *
     * @access public
     * @param mixed $order_id
     * @subpackage    Orders
     * @return void
     */
    
function woocommerce_order_details_table$order_id ) {
        if ( ! 
$order_id ) return;

        
wc_get_template'order/order-details.php', array(
            
'order_id' => $order_id
        
) );
    }
}


if ( ! 
function_exists'woocommerce_order_again_button' ) ) {

    
/**
     * Display an 'order again' button on the view order page.
     *
     * @access public
     * @param object $order
     * @subpackage    Orders
     * @return void
     */
    
function woocommerce_order_again_button$order ) {
        if ( ! 
$order || ! $order->has_status'completed' ) ) {
            return;
        }
        
?>
        <p class="order-again">
            <a href="<?php echo wp_nonce_urladd_query_arg'order_again'$order->id ) , 'woocommerce-order_again' ); ?>" class="button"><?php _e'Order Again''woocommerce' ); ?></a>
        </p>
        <?php
    
}
}

/** Forms ****************************************************************/

if ( ! function_exists'woocommerce_form_field' ) ) {

    
/**
     * Outputs a checkout/address form field.
     *
     * @access public
     * @subpackage    Forms
     * @param mixed $key
     * @param mixed $args
     * @param string $value (default: null)
     * @return void
     * @todo This function needs to be broken up in smaller pieces
     */
    
function woocommerce_form_field$key$args$value null ) {
        
$defaults = array(
            
'type'              => 'text',
            
'label'             => '',
            
'description'       => '',
            
'placeholder'       => '',
            
'maxlength'         => false,
            
'required'          => false,
            
'id'                => $key,
            
'class'             => array(),
            
'label_class'       => array(),
            
'input_class'       => array(),
            
'return'            => false,
            
'options'           => array(),
            
'custom_attributes' => array(),
            
'validate'          => array(),
            
'default'           => '',
        );

        
$args wp_parse_args$args$defaults  );

        if ( ( ! empty( 
$args['clear'] ) ) ) $after '<div class="clear"></div>'; else $after '';

        if ( 
$args['required'] ) {
            
$args['class'][] = 'validate-required';
            
$required ' <abbr class="required" title="' esc_attr__'required''woocommerce'  ) . '">*</abbr>';
        } else {
            
$required '';
        }

        
$args['maxlength'] = ( $args['maxlength'] ) ? 'maxlength="' absint$args['maxlength'] ) . '"' '';

        if ( 
is_string$args['label_class'] ) )
            
$args['label_class'] = array( $args['label_class'] );

        if ( 
is_null$value ) )
            
$value $args['default'];

        
// Custom attribute handling
        
$custom_attributes = array();

        if ( ! empty( 
$args['custom_attributes'] ) && is_array$args['custom_attributes'] ) )
            foreach ( 
$args['custom_attributes'] as $attribute => $attribute_value )
                
$custom_attributes[] = esc_attr$attribute ) . '="' esc_attr$attribute_value ) . '"';

        if ( ! empty( 
$args['validate'] ) )
            foreach( 
$args['validate'] as $validate )
                
$args['class'][] = 'validate-' $validate;

        switch ( 
$args['type'] ) {
        case 
"country" :

            
$countries $key == 'shipping_country' WC()->countries->get_shipping_countries() : WC()->countries->get_allowed_countries();

            if ( 
sizeof$countries ) == ) {

                
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

                if ( 
$args['label'] )
                    
$field .= '<label class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']  . '</label>';

                
$field .= '<strong>' currentarray_values$countries ) ) . '</strong>';

                
$field .= '<input type="hidden" name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" value="' currentarray_keys($countries ) ) . '" ' implode' '$custom_attributes ) . ' class="country_to_state" />';

                if ( 
$args['description'] )
                    
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

                
$field .= '</p>' $after;

            } else {

                
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">'
                        
'<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label'] . $required  '</label>'
                        
'<select name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" class="country_to_state country_select" ' implode' '$custom_attributes ) . '>'
                        
'<option value="">'.__'Select a country&hellip;''woocommerce' ) .'</option>';

                foreach ( 
$countries as $ckey => $cvalue )
                    
$field .= '<option value="' esc_attr$ckey ) . '" '.selected$value$ckeyfalse ) .'>'.__$cvalue'woocommerce' ) .'</option>';

                
$field .= '</select>';

                
$field .= '<noscript><input type="submit" name="woocommerce_checkout_update_totals" value="' __'Update country''woocommerce' ) . '" /></noscript>';

                if ( 
$args['description'] )
                    
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

                
$field .= '</p>' $after;

            }

            break;
        case 
"state" :

            
/* Get Country */
            
$country_key $key == 'billing_state''billing_country' 'shipping_country';
            
$current_cc  WC()->checkout->get_value$country_key );
            
$states      WC()->countries->get_states$current_cc );

            if ( 
is_array$states ) && empty( $states ) ) {

                
$field  '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field" style="display: none">';

                if ( 
$args['label'] )
                    
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label'] . $required '</label>';
                
$field .= '<input type="hidden" class="hidden" name="' esc_attr$key )  . '" id="' esc_attr$args['id'] ) . '" value="" ' implode' '$custom_attributes ) . ' placeholder="' esc_attr$args['placeholder'] ) . '" />';

                if ( 
$args['description'] )
                    
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

                
$field .= '</p>' $after;

            } elseif ( 
is_array$states ) ) {

                
$field  '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

                if ( 
$args['label'] )
                    
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']. $required '</label>';
                
$field .= '<select name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" class="state_select" ' implode' '$custom_attributes ) . ' placeholder="' esc_attr$args['placeholder'] ) . '">
                    <option value="">'
.__'Select a state&hellip;''woocommerce' ) .'</option>';

                foreach ( 
$states as $ckey => $cvalue )
                    
$field .= '<option value="' esc_attr$ckey ) . '" '.selected$value$ckeyfalse ) .'>'.__$cvalue'woocommerce' ) .'</option>';

                
$field .= '</select>';

                if ( 
$args['description'] )
                    
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

                
$field .= '</p>' $after;

            } else {

                
$field  '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

                if ( 
$args['label'] )
                    
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']. $required '</label>';
                
$field .= '<input type="text" class="input-text ' esc_attrimplode' '$args['input_class'] ) ) .'" value="' esc_attr$value ) . '"  placeholder="' esc_attr$args['placeholder'] ) . '" name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" ' implode' '$custom_attributes ) . ' />';

                if ( 
$args['description'] )
                    
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

                
$field .= '</p>' $after;

            }

            break;
        case 
"textarea" :

            
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

            if ( 
$args['label'] )
                
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']. $required  '</label>';

            
$field .= '<textarea name="' esc_attr$key ) . '" class="input-text ' esc_attrimplode' '$args['input_class'] ) ) .'" id="' esc_attr$args['id'] ) . '" placeholder="' esc_attr$args['placeholder'] ) . '"' . ( empty( $args['custom_attributes']['rows'] ) ? ' rows="2"' '' ) . ( empty( $args['custom_attributes']['cols'] ) ? ' cols="5"' '' ) . implode' '$custom_attributes ) . '>'esc_textarea$value  ) .'</textarea>';

            if ( 
$args['description'] )
                
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

            
$field .= '</p>' $after;

            break;
        case 
"checkbox" :

            
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">
                    <input type="' 
esc_attr$args['type'] ) . '" class="input-checkbox" name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" value="1" '.checked$value1false ) .' />
                    <label for="' 
esc_attr$args['id'] ) . '" class="checkbox ' implode' '$args['label_class'] ) .'" ' implode' '$custom_attributes ) . '>' $args['label'] . $required '</label>';

            if ( 
$args['description'] )
                
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

            
$field .= '</p>' $after;

            break;
        case 
"password" :

            
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

            if ( 
$args['label'] )
                
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']. $required '</label>';

            
$field .= '<input type="password" class="input-text ' esc_attrimplode' '$args['input_class'] ) ) .'" name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" placeholder="' esc_attr$args['placeholder'] ) . '" value="' esc_attr$value ) . '" ' implode' '$custom_attributes ) . ' />';

            if ( 
$args['description'] )
                
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

            
$field .= '</p>' $after;

            break;
        case 
"text" :

            
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

            if ( 
$args['label'] )
                
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label'] . $required '</label>';

            
$field .= '<input type="text" class="input-text ' esc_attrimplode' '$args['input_class'] ) ) .'" name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" placeholder="' esc_attr$args['placeholder'] ) . '" '.$args['maxlength'].' value="' esc_attr$value ) . '" ' implode' '$custom_attributes ) . ' />';

            if ( 
$args['description'] )
                
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

            
$field .= '</p>' $after;

            break;
        case 
"select" :

            
$options '';

            if ( ! empty( 
$args['options'] ) )
                foreach ( 
$args['options'] as $option_key => $option_text )
                    
$options .= '<option value="' esc_attr$option_key ) . '" 'selected$value$option_keyfalse ) . '>' esc_attr$option_text ) .'</option>';

                
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

                if ( 
$args['label'] )
                    
$field .= '<label for="' esc_attr$args['id'] ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']. $required '</label>';

                
$field .= '<select name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '" class="select" ' implode' '$custom_attributes ) . '>
                        ' 
$options '
                    </select>'
;

                if ( 
$args['description'] )
                    
$field .= '<span class="description">' esc_attr$args['description'] ) . '</span>';

                
$field .= '</p>' $after;

            break;
        case 
"radio" :

            
$field '<p class="form-row ' esc_attrimplode' '$args['class'] ) ) .'" id="' esc_attr$args['id'] ) . '_field">';

            if ( 
$args['label'] )
                
$field .= '<label for="' esc_attrcurrentarray_keys$args['options'] ) ) ) . '" class="' esc_attrimplode' '$args['label_class'] ) ) .'">' $args['label']. $required  '</label>';

            if ( ! empty( 
$args['options'] ) ) {
                foreach ( 
$args['options'] as $option_key => $option_text ) {
                    
$field .= '<input type="radio" class="input-radio" value="' esc_attr$option_key ) . '" name="' esc_attr$key ) . '" id="' esc_attr$args['id'] ) . '_' esc_attr$option_key ) . '"' checked$value$option_keyfalse ) . ' />';
                    
$field .= '<label for="' esc_attr$args['id'] ) . '_' esc_attr$option_key ) . '" class="radio ' implode' '$args['label_class'] ) .'">' $option_text '</label>';
                }
            }

            
$field .= '</p>' $after;

            break;
        default :

            
$field apply_filters'woocommerce_form_field_' $args['type'], ''$key$args$value );

            break;
        }

        if ( 
$args['return'] ) return $field; else echo $field;
    }
}

if ( ! 
function_exists'get_product_search_form' ) ) {

    
/**
     * Output Product search forms.
     *
     * @access public
     * @subpackage    Forms
     * @param bool $echo (default: true)
     * @return string
     * @todo This function needs to be broken up in smaller pieces
     */
    
function get_product_search_form$echo true  ) {
        
do_action'get_product_search_form'  );

        
$search_form_template locate_template'product-searchform.php' );
        if ( 
'' != $search_form_template  ) {
            require 
$search_form_template;
            return;
        }

        
$form '<form role="search" method="get" id="searchform" action="' esc_urlhome_url'/'  ) ) . '">
            <div>
                <label class="screen-reader-text" for="s">' 
__'Search for:''woocommerce' ) . '</label>
                <input type="text" value="' 
get_search_query() . '" name="s" id="s" placeholder="' __'Search for products''woocommerce' ) . '" />
                <input type="submit" id="searchsubmit" value="'
esc_attr__'Search''woocommerce' ) .'" />
                <input type="hidden" name="post_type" value="product" />
            </div>
        </form>'
;

        if ( 
$echo  )
            echo 
apply_filters'get_product_search_form'$form );
        else
            return 
apply_filters'get_product_search_form'$form );
    }
}