forked from jigoshop/jigoshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjigoshop_template_actions.php
92 lines (75 loc) · 4.5 KB
/
jigoshop_template_actions.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
<?php
/**
* Actions used in template files
*
* DISCLAIMER
*
* Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer
* versions in the future. If you wish to customise Jigoshop core for your needs,
* please use our GitHub repository to publish essential changes for consideration.
*
* @package Jigoshop
* @category Core
* @author Jigowatt
* @copyright Copyright © 2011-2012 Jigowatt Ltd.
* @license http://jigoshop.com/license/commercial-edition
*/
/* Content Wrappers */
add_action( 'jigoshop_before_main_content', 'jigoshop_output_content_wrapper' , 10);
add_action( 'jigoshop_after_main_content' , 'jigoshop_output_content_wrapper_end', 10);
/* Shop Messages */
add_action( 'jigoshop_before_single_product', 'jigoshop::show_messages', 10);
add_action( 'jigoshop_before_shop_loop' , 'jigoshop::show_messages', 10);
/* Sale flashes */
add_action( 'jigoshop_before_shop_loop_item_title' , 'jigoshop_show_product_sale_flash', 10, 2);
add_action( 'jigoshop_before_single_product_summary_thumbnails', 'jigoshop_show_product_sale_flash', 10, 2);
/* Breadcrumbs */
add_action( 'jigoshop_before_main_content', 'jigoshop_breadcrumb', 20, 0);
/* Sidebar */
add_action( 'jigoshop_sidebar', 'jigoshop_get_sidebar', 10);
/* Products Loop */
add_action( 'jigoshop_after_shop_loop_item' , 'jigoshop_template_loop_add_to_cart' , 10, 2);
add_action( 'jigoshop_before_shop_loop_item_title', 'jigoshop_template_loop_product_thumbnail', 10, 2);
add_action( 'jigoshop_after_shop_loop_item_title' , 'jigoshop_template_loop_price' , 10, 2);
/* Before Single Products Summary Div */
add_action( 'jigoshop_before_single_product_summary', 'jigoshop_show_product_images' , 20);
add_action( 'jigoshop_product_thumbnails' , 'jigoshop_show_product_thumbnails', 20 );
/* After Single Products Summary Div */
add_action( 'jigoshop_after_single_product_summary', 'jigoshop_output_product_data_tabs', 10);
add_action( 'jigoshop_after_single_product_summary', 'jigoshop_output_related_products' , 20);
/* Product Summary Box */
add_action( 'jigoshop_template_single_summary', 'jigoshop_template_single_title' , 5, 2);
add_action( 'jigoshop_template_single_summary', 'jigoshop_template_single_price' , 10, 2);
add_action( 'jigoshop_template_single_summary', 'jigoshop_template_single_excerpt', 20, 2);
add_action( 'jigoshop_template_single_summary', 'jigoshop_template_single_meta' , 40, 2);
add_action( 'jigoshop_template_single_summary', 'jigoshop_template_single_sharing', 50, 2);
/* Product Add to cart */
add_action( 'jigoshop_template_single_summary', 'jigoshop_template_single_add_to_cart', 30, 2 );
add_action( 'simple_add_to_cart' , 'jigoshop_simple_add_to_cart' );
add_action( 'virtual_add_to_cart' , 'jigoshop_simple_add_to_cart' );
add_action( 'downloadable_add_to_cart' , 'jigoshop_downloadable_add_to_cart' );
add_action( 'grouped_add_to_cart' , 'jigoshop_grouped_add_to_cart' );
add_action( 'variable_add_to_cart' , 'jigoshop_variable_add_to_cart' );
add_action( 'external_add_to_cart' , 'jigoshop_external_add_to_cart' );
/* Product Add to Cart forms */
add_action( 'jigoshop_add_to_cart_form', 'jigoshop_add_to_cart_form_nonce', 10);
/* Pagination in loop-shop */
add_action( 'jigoshop_pagination', 'jigoshop_pagination', 10 );
/* Product page tabs */
add_action( 'jigoshop_product_tabs', 'jigoshop_product_description_tab', 10 );
add_action( 'jigoshop_product_tabs', 'jigoshop_product_attributes_tab' , 20 );
add_action( 'jigoshop_product_tabs', 'jigoshop_product_reviews_tab' , 30 );
add_action( 'jigoshop_product_tabs', 'jigoshop_product_customize_tab' , 40 );
add_action( 'jigoshop_product_tab_panels', 'jigoshop_product_description_panel', 10 );
add_action( 'jigoshop_product_tab_panels', 'jigoshop_product_attributes_panel' , 20 );
add_action( 'jigoshop_product_tab_panels', 'jigoshop_product_reviews_panel' , 30 );
add_action( 'jigoshop_product_tab_panels', 'jigoshop_product_customize_panel' , 40 );
/* Checkout */
add_action( 'before_checkout_form' , 'jigoshop_checkout_login_form', 10 );
add_action( 'jigoshop_checkout_order_review', 'jigoshop_order_review' , 10 );
/* Remove the singular class for jigoshop single product */
add_action( 'after_setup_theme', 'jigoshop_body_classes_check' );
function jigoshop_body_classes_check () {
if( has_filter( 'body_class', 'twentyeleven_body_classes' ) )
add_filter( 'body_class', 'jigoshop_body_classes' );
}