@@ -7,38 +7,38 @@ discard block |
||
7 | 7 | |
8 | 8 | |
9 | 9 | function lsx_hp_single_plan_products() { |
10 | - global $product; |
|
10 | + global $product; |
|
11 | 11 | |
12 | - $restricted = false; |
|
13 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
14 | - $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
15 | - } |
|
16 | - if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
17 | - $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
18 | - $product_count = count( $products ); |
|
19 | - if ( 1 === (int) $product_count ) { |
|
20 | - $class = 'col-md-12'; |
|
21 | - } else { |
|
22 | - $class = 'col-md-6'; |
|
23 | - } |
|
24 | - ?> |
|
12 | + $restricted = false; |
|
13 | + if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
14 | + $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
15 | + } |
|
16 | + if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
17 | + $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
18 | + $product_count = count( $products ); |
|
19 | + if ( 1 === (int) $product_count ) { |
|
20 | + $class = 'col-md-12'; |
|
21 | + } else { |
|
22 | + $class = 'col-md-6'; |
|
23 | + } |
|
24 | + ?> |
|
25 | 25 | <div class="plans-products-wrapper row"> |
26 | 26 | <?php |
27 | - foreach ( $products as $product ) { |
|
28 | - $product = wc_get_product( $product ); |
|
29 | - ?> |
|
27 | + foreach ( $products as $product ) { |
|
28 | + $product = wc_get_product( $product ); |
|
29 | + ?> |
|
30 | 30 | <div class="plan-product <?php echo esc_attr( $class ); ?>"> |
31 | 31 | <h3 class="title"><a href="<?php echo esc_html( $product->get_permalink() ); ?>"><?php echo esc_html( $product->get_title() ); ?></a></h3> |
32 | 32 | <?php |
33 | - $description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description(); |
|
34 | - if ( '' !== $description ) { |
|
35 | - ?> |
|
33 | + $description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description(); |
|
34 | + if ( '' !== $description ) { |
|
35 | + ?> |
|
36 | 36 | <div class="description"> |
37 | 37 | <?php echo esc_html( $description ); ?> |
38 | 38 | </div> |
39 | 39 | <?php |
40 | - } |
|
41 | - ?> |
|
40 | + } |
|
41 | + ?> |
|
42 | 42 | <?php echo wp_kses_post( $product->get_price_html() ); ?> |
43 | 43 | |
44 | 44 | <div class="add-to-cart"> |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | </div> |
47 | 47 | </div> |
48 | 48 | <?php |
49 | - } |
|
50 | - ?> |
|
49 | + } |
|
50 | + ?> |
|
51 | 51 | </div> |
52 | 52 | <?php |
53 | - } |
|
53 | + } |
|
54 | 54 | } |
@@ -22,17 +22,17 @@ discard block |
||
22 | 22 | <?php } ?> |
23 | 23 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
24 | 24 | <?php |
25 | - $featured_image = get_the_post_thumbnail(); |
|
26 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
28 | - 'class' => 'aligncenter', |
|
29 | - ) ); |
|
30 | - } else { |
|
31 | - ?> |
|
25 | + $featured_image = get_the_post_thumbnail(); |
|
26 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | + the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
28 | + 'class' => 'aligncenter', |
|
29 | + ) ); |
|
30 | + } else { |
|
31 | + ?> |
|
32 | 32 | <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
33 | 33 | <?php |
34 | - } |
|
35 | - ?> |
|
34 | + } |
|
35 | + ?> |
|
36 | 36 | </a> |
37 | 37 | </div> |
38 | 38 | <div class="content-box workout-content-box white-bg"> |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | <?php the_title( '<h3 class="workout-title">', '</h3>' ); ?> |
41 | 41 | </a> |
42 | 42 | <?php |
43 | - if ( ! has_excerpt() ) { |
|
44 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
45 | - $content = '<p>' . $content . '</p>'; |
|
46 | - } else { |
|
47 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
48 | - } |
|
49 | - echo wp_kses_post( $content ); |
|
50 | - ?> |
|
43 | + if ( ! has_excerpt() ) { |
|
44 | + $content = wp_trim_words( get_the_content(), 20 ); |
|
45 | + $content = '<p>' . $content . '</p>'; |
|
46 | + } else { |
|
47 | + $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
48 | + } |
|
49 | + echo wp_kses_post( $content ); |
|
50 | + ?> |
|
51 | 51 | <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See workout', 'lsx-health-plan' ); ?></a> |
52 | 52 | </div> |
53 | 53 | <?php lsx_entry_bottom(); ?> |
@@ -14,14 +14,14 @@ discard block |
||
14 | 14 | * @return boolean |
15 | 15 | */ |
16 | 16 | function is_search_enabled() { |
17 | - $enabled = false; |
|
18 | - if ( function_exists( 'lsx_search' ) ) { |
|
19 | - $search_instance = \LSX_Search::get_instance(); |
|
20 | - if ( null !== $search_instance ) { |
|
21 | - $enabled = $search_instance->frontend->is_search_enabled(); |
|
22 | - } |
|
23 | - } |
|
24 | - return $enabled; |
|
17 | + $enabled = false; |
|
18 | + if ( function_exists( 'lsx_search' ) ) { |
|
19 | + $search_instance = \LSX_Search::get_instance(); |
|
20 | + if ( null !== $search_instance ) { |
|
21 | + $enabled = $search_instance->frontend->is_search_enabled(); |
|
22 | + } |
|
23 | + } |
|
24 | + return $enabled; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -31,13 +31,13 @@ discard block |
||
31 | 31 | * @return boolean |
32 | 32 | */ |
33 | 33 | function has_sections( $plan_id = 0 ) { |
34 | - $sections = false; |
|
35 | - if ( 0 === $plan_id ) { |
|
36 | - $plan_id = get_the_ID(); |
|
37 | - } |
|
38 | - $lsx_hp = lsx_health_plan(); |
|
39 | - $sections = $lsx_hp->frontend->plan_query->query_sections( $plan_id ); |
|
40 | - return $sections; |
|
34 | + $sections = false; |
|
35 | + if ( 0 === $plan_id ) { |
|
36 | + $plan_id = get_the_ID(); |
|
37 | + } |
|
38 | + $lsx_hp = lsx_health_plan(); |
|
39 | + $sections = $lsx_hp->frontend->plan_query->query_sections( $plan_id ); |
|
40 | + return $sections; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | * @return array |
49 | 49 | */ |
50 | 50 | function get_sections( $group_sections = false ) { |
51 | - $lsx_hp = lsx_health_plan(); |
|
52 | - $sections = $lsx_hp->frontend->plan_query->get_sections( $group_sections ); |
|
53 | - return $sections; |
|
51 | + $lsx_hp = lsx_health_plan(); |
|
52 | + $sections = $lsx_hp->frontend->plan_query->get_sections( $group_sections ); |
|
53 | + return $sections; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -60,18 +60,18 @@ discard block |
||
60 | 60 | * @return array |
61 | 61 | */ |
62 | 62 | function get_section_info( $section_key = '' ) { |
63 | - $section_info = array(); |
|
63 | + $section_info = array(); |
|
64 | 64 | |
65 | - $sections = get_sections(); |
|
66 | - if ( ! empty( $sections ) ) { |
|
67 | - foreach ( $sections as $key => $values ) { |
|
68 | - $current_key = sanitize_title( $values['title'] ); |
|
69 | - if ( $current_key === $section_key ) { |
|
70 | - return $values; |
|
71 | - } |
|
72 | - } |
|
73 | - } |
|
74 | - return $section_info; |
|
65 | + $sections = get_sections(); |
|
66 | + if ( ! empty( $sections ) ) { |
|
67 | + foreach ( $sections as $key => $values ) { |
|
68 | + $current_key = sanitize_title( $values['title'] ); |
|
69 | + if ( $current_key === $section_key ) { |
|
70 | + return $values; |
|
71 | + } |
|
72 | + } |
|
73 | + } |
|
74 | + return $section_info; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -81,14 +81,14 @@ discard block |
||
81 | 81 | * @return array |
82 | 82 | */ |
83 | 83 | function get_group_title( $sections = array() ) { |
84 | - $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
85 | - if ( ! empty( $sections ) ) { |
|
86 | - $first_section = reset( $sections ); |
|
87 | - if ( isset( $first_section['group'] ) && '' !== $first_section['group'] ) { |
|
88 | - $group_title = $first_section['group']; |
|
89 | - } |
|
90 | - } |
|
91 | - return $group_title; |
|
84 | + $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
85 | + if ( ! empty( $sections ) ) { |
|
86 | + $first_section = reset( $sections ); |
|
87 | + if ( isset( $first_section['group'] ) && '' !== $first_section['group'] ) { |
|
88 | + $group_title = $first_section['group']; |
|
89 | + } |
|
90 | + } |
|
91 | + return $group_title; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -99,14 +99,14 @@ discard block |
||
99 | 99 | * @return array |
100 | 100 | */ |
101 | 101 | function get_permalink( $plan_id = 0, $title = '' ) { |
102 | - if ( 0 === $plan_id ) { |
|
103 | - $plan_id = get_the_ID(); |
|
104 | - } |
|
105 | - $url = \get_permalink( $plan_id ); |
|
106 | - if ( '' !== $title ) { |
|
107 | - $url .= sanitize_title( $title ) . '/'; |
|
108 | - } |
|
109 | - return $url; |
|
102 | + if ( 0 === $plan_id ) { |
|
103 | + $plan_id = get_the_ID(); |
|
104 | + } |
|
105 | + $url = \get_permalink( $plan_id ); |
|
106 | + if ( '' !== $title ) { |
|
107 | + $url .= sanitize_title( $title ) . '/'; |
|
108 | + } |
|
109 | + return $url; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | * @return boolean |
116 | 116 | */ |
117 | 117 | function is_filters_disabled( $disabled = false ) { |
118 | - $is_disabled = \lsx_health_plan\functions\get_option( 'plan_filters_disabled', false ); |
|
119 | - if ( false !== $is_disabled ) { |
|
120 | - $disabled = true; |
|
121 | - } |
|
122 | - return $disabled; |
|
118 | + $is_disabled = \lsx_health_plan\functions\get_option( 'plan_filters_disabled', false ); |
|
119 | + if ( false !== $is_disabled ) { |
|
120 | + $disabled = true; |
|
121 | + } |
|
122 | + return $disabled; |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
@@ -130,17 +130,17 @@ discard block |
||
130 | 130 | * @return string |
131 | 131 | */ |
132 | 132 | function generate_section_id( $section_key = '' ) { |
133 | - $key = get_the_ID(); |
|
134 | - if ( '' === $section_key ) { |
|
135 | - $section_key = get_query_var( 'section' ); |
|
136 | - } |
|
133 | + $key = get_the_ID(); |
|
134 | + if ( '' === $section_key ) { |
|
135 | + $section_key = get_query_var( 'section' ); |
|
136 | + } |
|
137 | 137 | |
138 | - $section_key = sanitize_title( $section_key ); |
|
138 | + $section_key = sanitize_title( $section_key ); |
|
139 | 139 | |
140 | - if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
141 | - $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
142 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
143 | - $key .= '_' . sanitize_key( $group_title ) . '_' . sanitize_key( $section_info['title'] ); |
|
144 | - } |
|
145 | - return $key; |
|
140 | + if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
141 | + $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
142 | + $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
143 | + $key .= '_' . sanitize_key( $group_title ) . '_' . sanitize_key( $section_info['title'] ); |
|
144 | + } |
|
145 | + return $key; |
|
146 | 146 | } |
@@ -8,120 +8,120 @@ |
||
8 | 8 | */ |
9 | 9 | class Frontend { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Frontend() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
19 | - |
|
20 | - /** |
|
21 | - * @var object \lsx_health_plan\classes\frontend\Endpoints(); |
|
22 | - */ |
|
23 | - public $endpoints; |
|
24 | - |
|
25 | - /** |
|
26 | - * @var object \lsx_health_plan\classes\frontend\Modals(); |
|
27 | - */ |
|
28 | - public $modals; |
|
29 | - |
|
30 | - /** |
|
31 | - * @var object \lsx_health_plan\classes\frontend\Gallery(); |
|
32 | - */ |
|
33 | - public $gallery; |
|
34 | - |
|
35 | - /** |
|
36 | - * @var object \lsx_health_plan\classes\frontend\Plan_Status(); |
|
37 | - */ |
|
38 | - public $plan_status; |
|
39 | - |
|
40 | - /** |
|
41 | - * @var object \lsx_health_plan\classes\frontend\Plan_Query(); |
|
42 | - */ |
|
43 | - public $plan_query; |
|
44 | - |
|
45 | - /** |
|
46 | - * @var object \lsx_health_plan\classes\frontend\General(); |
|
47 | - */ |
|
48 | - public $general; |
|
49 | - |
|
50 | - /** |
|
51 | - * @var object \lsx_health_plan\classes\frontend\Template_Redirects(); |
|
52 | - */ |
|
53 | - public $template_redirects; |
|
54 | - |
|
55 | - /** |
|
56 | - * Constructor |
|
57 | - */ |
|
58 | - public function __construct() { |
|
59 | - if ( ! is_admin() ) { |
|
60 | - $this->load_classes(); |
|
61 | - add_action( 'template_redirect', array( $this, 'redirect' ) ); |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Frontend() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | + |
|
20 | + /** |
|
21 | + * @var object \lsx_health_plan\classes\frontend\Endpoints(); |
|
22 | + */ |
|
23 | + public $endpoints; |
|
24 | + |
|
25 | + /** |
|
26 | + * @var object \lsx_health_plan\classes\frontend\Modals(); |
|
27 | + */ |
|
28 | + public $modals; |
|
29 | + |
|
30 | + /** |
|
31 | + * @var object \lsx_health_plan\classes\frontend\Gallery(); |
|
32 | + */ |
|
33 | + public $gallery; |
|
34 | + |
|
35 | + /** |
|
36 | + * @var object \lsx_health_plan\classes\frontend\Plan_Status(); |
|
37 | + */ |
|
38 | + public $plan_status; |
|
39 | + |
|
40 | + /** |
|
41 | + * @var object \lsx_health_plan\classes\frontend\Plan_Query(); |
|
42 | + */ |
|
43 | + public $plan_query; |
|
44 | + |
|
45 | + /** |
|
46 | + * @var object \lsx_health_plan\classes\frontend\General(); |
|
47 | + */ |
|
48 | + public $general; |
|
49 | + |
|
50 | + /** |
|
51 | + * @var object \lsx_health_plan\classes\frontend\Template_Redirects(); |
|
52 | + */ |
|
53 | + public $template_redirects; |
|
54 | + |
|
55 | + /** |
|
56 | + * Constructor |
|
57 | + */ |
|
58 | + public function __construct() { |
|
59 | + if ( ! is_admin() ) { |
|
60 | + $this->load_classes(); |
|
61 | + add_action( 'template_redirect', array( $this, 'redirect' ) ); |
|
62 | 62 | |
63 | - } |
|
64 | - } |
|
65 | - |
|
66 | - /** |
|
67 | - * Return an instance of this class. |
|
68 | - * |
|
69 | - * @since 1.0.0 |
|
70 | - * |
|
71 | - * @return object \lsx_health_plan\classes\Frontend() A single instance of this class. |
|
72 | - */ |
|
73 | - public static function get_instance() { |
|
74 | - // If the single instance hasn't been set, set it now. |
|
75 | - if ( null === self::$instance ) { |
|
76 | - self::$instance = new self(); |
|
77 | - } |
|
78 | - return self::$instance; |
|
79 | - } |
|
80 | - |
|
81 | - /** |
|
82 | - * Loads the variable classes and the static classes. |
|
83 | - */ |
|
84 | - private function load_classes() { |
|
85 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-endpoints.php'; |
|
86 | - $this->endpoints = frontend\Endpoints::get_instance(); |
|
87 | - |
|
88 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-modals.php'; |
|
89 | - $this->modals = Modals::get_instance(); |
|
90 | - |
|
91 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-gallery.php'; |
|
92 | - $this->gallery = frontend\Gallery::get_instance(); |
|
93 | - |
|
94 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-status.php'; |
|
95 | - $this->plan_status = frontend\Plan_Status::get_instance(); |
|
96 | - |
|
97 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-query.php'; |
|
98 | - $this->plan_query = frontend\Plan_Query::get_instance(); |
|
99 | - |
|
100 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-general.php'; |
|
101 | - $this->general = frontend\General::get_instance(); |
|
102 | - |
|
103 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-template-redirects.php'; |
|
104 | - $this->template_redirects = frontend\Template_Redirects::get_instance(); |
|
105 | - } |
|
106 | - |
|
107 | - /** |
|
108 | - * Redirect the user from the cart or checkout page if they have purchased the product already. |
|
109 | - * |
|
110 | - * @return void |
|
111 | - */ |
|
112 | - public function redirect() { |
|
113 | - if ( ! is_user_logged_in() || ! function_exists( 'wc_get_page_id' ) || is_home() ) { |
|
114 | - return; |
|
115 | - } |
|
116 | - if ( lsx_health_plan_user_has_purchase() && ( is_page( wc_get_page_id( 'cart' ) ) || is_page( wc_get_page_id( 'checkout' ) ) ) ) { |
|
117 | - wp_redirect( get_permalink( wc_get_page_id( 'myaccount' ) ) ); |
|
118 | - die; |
|
119 | - } |
|
120 | - |
|
121 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
122 | - if ( false !== $product_id && is_single( $product_id ) ) { |
|
123 | - wp_redirect( home_url() ); |
|
124 | - wp_die(); |
|
125 | - } |
|
126 | - } |
|
63 | + } |
|
64 | + } |
|
65 | + |
|
66 | + /** |
|
67 | + * Return an instance of this class. |
|
68 | + * |
|
69 | + * @since 1.0.0 |
|
70 | + * |
|
71 | + * @return object \lsx_health_plan\classes\Frontend() A single instance of this class. |
|
72 | + */ |
|
73 | + public static function get_instance() { |
|
74 | + // If the single instance hasn't been set, set it now. |
|
75 | + if ( null === self::$instance ) { |
|
76 | + self::$instance = new self(); |
|
77 | + } |
|
78 | + return self::$instance; |
|
79 | + } |
|
80 | + |
|
81 | + /** |
|
82 | + * Loads the variable classes and the static classes. |
|
83 | + */ |
|
84 | + private function load_classes() { |
|
85 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-endpoints.php'; |
|
86 | + $this->endpoints = frontend\Endpoints::get_instance(); |
|
87 | + |
|
88 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-modals.php'; |
|
89 | + $this->modals = Modals::get_instance(); |
|
90 | + |
|
91 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-gallery.php'; |
|
92 | + $this->gallery = frontend\Gallery::get_instance(); |
|
93 | + |
|
94 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-status.php'; |
|
95 | + $this->plan_status = frontend\Plan_Status::get_instance(); |
|
96 | + |
|
97 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-query.php'; |
|
98 | + $this->plan_query = frontend\Plan_Query::get_instance(); |
|
99 | + |
|
100 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-general.php'; |
|
101 | + $this->general = frontend\General::get_instance(); |
|
102 | + |
|
103 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-template-redirects.php'; |
|
104 | + $this->template_redirects = frontend\Template_Redirects::get_instance(); |
|
105 | + } |
|
106 | + |
|
107 | + /** |
|
108 | + * Redirect the user from the cart or checkout page if they have purchased the product already. |
|
109 | + * |
|
110 | + * @return void |
|
111 | + */ |
|
112 | + public function redirect() { |
|
113 | + if ( ! is_user_logged_in() || ! function_exists( 'wc_get_page_id' ) || is_home() ) { |
|
114 | + return; |
|
115 | + } |
|
116 | + if ( lsx_health_plan_user_has_purchase() && ( is_page( wc_get_page_id( 'cart' ) ) || is_page( wc_get_page_id( 'checkout' ) ) ) ) { |
|
117 | + wp_redirect( get_permalink( wc_get_page_id( 'myaccount' ) ) ); |
|
118 | + die; |
|
119 | + } |
|
120 | + |
|
121 | + $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
122 | + if ( false !== $product_id && is_single( $product_id ) ) { |
|
123 | + wp_redirect( home_url() ); |
|
124 | + wp_die(); |
|
125 | + } |
|
126 | + } |
|
127 | 127 | } |
@@ -8,88 +8,88 @@ |
||
8 | 8 | */ |
9 | 9 | class Endpoints { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\frontend\Endpoints() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\frontend\Endpoints() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - add_action( 'init', array( $this, 'setup' ) ); |
|
25 | - } |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + add_action( 'init', array( $this, 'setup' ) ); |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * Return an instance of this class. |
|
29 | - * |
|
30 | - * @since 1.0.0 |
|
31 | - * |
|
32 | - * @return object \lsx_health_plan\classes\frontend\Endpoints() A single instance of this class. |
|
33 | - */ |
|
34 | - public static function get_instance() { |
|
35 | - // If the single instance hasn't been set, set it now. |
|
36 | - if ( null === self::$instance ) { |
|
37 | - self::$instance = new self(); |
|
38 | - } |
|
39 | - return self::$instance; |
|
40 | - } |
|
27 | + /** |
|
28 | + * Return an instance of this class. |
|
29 | + * |
|
30 | + * @since 1.0.0 |
|
31 | + * |
|
32 | + * @return object \lsx_health_plan\classes\frontend\Endpoints() A single instance of this class. |
|
33 | + */ |
|
34 | + public static function get_instance() { |
|
35 | + // If the single instance hasn't been set, set it now. |
|
36 | + if ( null === self::$instance ) { |
|
37 | + self::$instance = new self(); |
|
38 | + } |
|
39 | + return self::$instance; |
|
40 | + } |
|
41 | 41 | |
42 | - /** |
|
43 | - * Runs on init |
|
44 | - */ |
|
45 | - public function setup() { |
|
46 | - $this->add_rewrite_rules(); |
|
47 | - } |
|
42 | + /** |
|
43 | + * Runs on init |
|
44 | + */ |
|
45 | + public function setup() { |
|
46 | + $this->add_rewrite_rules(); |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * Registers the rewrites. |
|
51 | - */ |
|
52 | - public function add_rewrite_rules() { |
|
53 | - // Here is where we add in the rewrite rules above the normal WP ones. |
|
54 | - add_rewrite_tag( '%endpoint%', '([^&]+)' ); |
|
55 | - add_rewrite_tag( '%section%', '([^&]+)' ); |
|
49 | + /** |
|
50 | + * Registers the rewrites. |
|
51 | + */ |
|
52 | + public function add_rewrite_rules() { |
|
53 | + // Here is where we add in the rewrite rules above the normal WP ones. |
|
54 | + add_rewrite_tag( '%endpoint%', '([^&]+)' ); |
|
55 | + add_rewrite_tag( '%section%', '([^&]+)' ); |
|
56 | 56 | |
57 | - // Plan Sections. |
|
58 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/?$', 'index.php?plan=$matches[1]§ion=$matches[2]', 'top' ); |
|
57 | + // Plan Sections. |
|
58 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/?$', 'index.php?plan=$matches[1]§ion=$matches[2]', 'top' ); |
|
59 | 59 | |
60 | - // Warm up. |
|
61 | - $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
62 | - if ( false === $warm_up ) { |
|
63 | - $warm_up = 'warm-up'; |
|
64 | - } |
|
60 | + // Warm up. |
|
61 | + $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
62 | + if ( false === $warm_up ) { |
|
63 | + $warm_up = 'warm-up'; |
|
64 | + } |
|
65 | 65 | |
66 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $warm_up . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=warm-up', 'top' ); |
|
66 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $warm_up . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=warm-up', 'top' ); |
|
67 | 67 | |
68 | - // Workout. |
|
69 | - if ( post_type_exists( 'workout' ) ) { |
|
70 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
71 | - if ( false === $workout ) { |
|
72 | - $workout = 'workout'; |
|
73 | - } |
|
74 | - } |
|
75 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $workout . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=workout', 'top' ); |
|
68 | + // Workout. |
|
69 | + if ( post_type_exists( 'workout' ) ) { |
|
70 | + $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
71 | + if ( false === $workout ) { |
|
72 | + $workout = 'workout'; |
|
73 | + } |
|
74 | + } |
|
75 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $workout . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=workout', 'top' ); |
|
76 | 76 | |
77 | - // Meal. |
|
78 | - if ( post_type_exists( 'meal' ) ) { |
|
79 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
80 | - if ( false === $meal ) { |
|
81 | - $meal = 'meal'; |
|
82 | - } |
|
83 | - } |
|
84 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $meal . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=meal', 'top' ); |
|
77 | + // Meal. |
|
78 | + if ( post_type_exists( 'meal' ) ) { |
|
79 | + $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
80 | + if ( false === $meal ) { |
|
81 | + $meal = 'meal'; |
|
82 | + } |
|
83 | + } |
|
84 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $meal . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=meal', 'top' ); |
|
85 | 85 | |
86 | - // Recipe. |
|
87 | - if ( post_type_exists( 'recipe' ) ) { |
|
88 | - $recipe = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
89 | - if ( false === $recipe ) { |
|
90 | - $recipe = 'recipes'; |
|
91 | - } |
|
92 | - } |
|
93 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $recipe . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=recipes', 'top' ); |
|
94 | - } |
|
86 | + // Recipe. |
|
87 | + if ( post_type_exists( 'recipe' ) ) { |
|
88 | + $recipe = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
89 | + if ( false === $recipe ) { |
|
90 | + $recipe = 'recipes'; |
|
91 | + } |
|
92 | + } |
|
93 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $recipe . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=recipes', 'top' ); |
|
94 | + } |
|
95 | 95 | } |
@@ -8,53 +8,53 @@ |
||
8 | 8 | */ |
9 | 9 | class Plan_Status { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\frontend\Plan_Status() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\frontend\Plan_Status() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - add_action( 'init', array( $this, 'handle_day_action' ), 100 ); |
|
25 | - } |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + add_action( 'init', array( $this, 'handle_day_action' ), 100 ); |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * Return an instance of this class. |
|
29 | - * |
|
30 | - * @since 1.0.0 |
|
31 | - * |
|
32 | - * @return object \lsx_health_plan\classes\frontend\Plan_Status() A single instance of this class. |
|
33 | - */ |
|
34 | - public static function get_instance() { |
|
35 | - // If the single instance hasn't been set, set it now. |
|
36 | - if ( null === self::$instance ) { |
|
37 | - self::$instance = new self(); |
|
38 | - } |
|
39 | - return self::$instance; |
|
40 | - } |
|
27 | + /** |
|
28 | + * Return an instance of this class. |
|
29 | + * |
|
30 | + * @since 1.0.0 |
|
31 | + * |
|
32 | + * @return object \lsx_health_plan\classes\frontend\Plan_Status() A single instance of this class. |
|
33 | + */ |
|
34 | + public static function get_instance() { |
|
35 | + // If the single instance hasn't been set, set it now. |
|
36 | + if ( null === self::$instance ) { |
|
37 | + self::$instance = new self(); |
|
38 | + } |
|
39 | + return self::$instance; |
|
40 | + } |
|
41 | 41 | |
42 | - /** |
|
43 | - * Registers the rewrites. |
|
44 | - */ |
|
45 | - public function handle_day_action() { |
|
46 | - if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'complete' ) ) { |
|
47 | - update_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete', true ); |
|
48 | - $plan_id = sanitize_key( $_POST['lsx-health-plan-id'] ); |
|
49 | - $plan_parent = wp_get_post_parent_id( $plan_id ); |
|
50 | - if ( 0 !== $plan_parent ) { |
|
51 | - $plan_id = $plan_parent; |
|
52 | - } |
|
53 | - wp_safe_redirect( get_permalink( $plan_id ) ); |
|
54 | - } |
|
42 | + /** |
|
43 | + * Registers the rewrites. |
|
44 | + */ |
|
45 | + public function handle_day_action() { |
|
46 | + if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'complete' ) ) { |
|
47 | + update_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete', true ); |
|
48 | + $plan_id = sanitize_key( $_POST['lsx-health-plan-id'] ); |
|
49 | + $plan_parent = wp_get_post_parent_id( $plan_id ); |
|
50 | + if ( 0 !== $plan_parent ) { |
|
51 | + $plan_id = $plan_parent; |
|
52 | + } |
|
53 | + wp_safe_redirect( get_permalink( $plan_id ) ); |
|
54 | + } |
|
55 | 55 | |
56 | - if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'unlock' ) ) { |
|
57 | - delete_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete' ); |
|
58 | - } |
|
59 | - } |
|
56 | + if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'unlock' ) ) { |
|
57 | + delete_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete' ); |
|
58 | + } |
|
59 | + } |
|
60 | 60 | } |
@@ -8,68 +8,68 @@ |
||
8 | 8 | */ |
9 | 9 | class Modals { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Modals() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Modals() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Holds the modals to be outputted |
|
22 | - * |
|
23 | - * @var array |
|
24 | - */ |
|
25 | - public $modals = array(); |
|
20 | + /** |
|
21 | + * Holds the modals to be outputted |
|
22 | + * |
|
23 | + * @var array |
|
24 | + */ |
|
25 | + public $modals = array(); |
|
26 | 26 | |
27 | - /** |
|
28 | - * Constructor |
|
29 | - */ |
|
30 | - public function __construct() { |
|
31 | - add_action( 'wp_footer', array( $this, 'output_modals' ) ); |
|
32 | - } |
|
27 | + /** |
|
28 | + * Constructor |
|
29 | + */ |
|
30 | + public function __construct() { |
|
31 | + add_action( 'wp_footer', array( $this, 'output_modals' ) ); |
|
32 | + } |
|
33 | 33 | |
34 | - /** |
|
35 | - * Return an instance of this class. |
|
36 | - * |
|
37 | - * @since 1.0.0 |
|
38 | - * |
|
39 | - * @return object \lsx_health_plan\classes\Endpoints() A single instance of this class. |
|
40 | - */ |
|
41 | - public static function get_instance() { |
|
42 | - // If the single instance hasn't been set, set it now. |
|
43 | - if ( null === self::$instance ) { |
|
44 | - self::$instance = new self(); |
|
45 | - } |
|
46 | - return self::$instance; |
|
47 | - } |
|
34 | + /** |
|
35 | + * Return an instance of this class. |
|
36 | + * |
|
37 | + * @since 1.0.0 |
|
38 | + * |
|
39 | + * @return object \lsx_health_plan\classes\Endpoints() A single instance of this class. |
|
40 | + */ |
|
41 | + public static function get_instance() { |
|
42 | + // If the single instance hasn't been set, set it now. |
|
43 | + if ( null === self::$instance ) { |
|
44 | + self::$instance = new self(); |
|
45 | + } |
|
46 | + return self::$instance; |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * Registers a modal to be outputted |
|
51 | - * |
|
52 | - * @param array $modal |
|
53 | - * @param string $index |
|
54 | - * @return void |
|
55 | - */ |
|
56 | - public function register_modal( $modal = array(), $index = '' ) { |
|
57 | - if ( '' !== $index && ! empty( $modal ) ) { |
|
58 | - $modal['id'] = $index; |
|
59 | - $this->modals[ $index ] = $modal; |
|
60 | - } |
|
61 | - } |
|
49 | + /** |
|
50 | + * Registers a modal to be outputted |
|
51 | + * |
|
52 | + * @param array $modal |
|
53 | + * @param string $index |
|
54 | + * @return void |
|
55 | + */ |
|
56 | + public function register_modal( $modal = array(), $index = '' ) { |
|
57 | + if ( '' !== $index && ! empty( $modal ) ) { |
|
58 | + $modal['id'] = $index; |
|
59 | + $this->modals[ $index ] = $modal; |
|
60 | + } |
|
61 | + } |
|
62 | 62 | |
63 | - /** |
|
64 | - * Registers the rewrites. |
|
65 | - */ |
|
66 | - public function output_modals() { |
|
67 | - if ( ! empty( $this->modals ) ) { |
|
68 | - wp_enqueue_script( 'lsx-health-plan-modals', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-modals.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
63 | + /** |
|
64 | + * Registers the rewrites. |
|
65 | + */ |
|
66 | + public function output_modals() { |
|
67 | + if ( ! empty( $this->modals ) ) { |
|
68 | + wp_enqueue_script( 'lsx-health-plan-modals', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-modals.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
69 | 69 | |
70 | - foreach ( $this->modals as $index => $modal ) { |
|
71 | - \lsx_health_plan\functions\output_modal( $modal ); |
|
72 | - } |
|
73 | - } |
|
74 | - } |
|
70 | + foreach ( $this->modals as $index => $modal ) { |
|
71 | + \lsx_health_plan\functions\output_modal( $modal ); |
|
72 | + } |
|
73 | + } |
|
74 | + } |
|
75 | 75 | } |
@@ -8,264 +8,264 @@ |
||
8 | 8 | */ |
9 | 9 | class Gallery { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @var object \lsx_health_plan\classes\lib\Gallery() |
|
15 | - */ |
|
16 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @var object \lsx_health_plan\classes\lib\Gallery() |
|
15 | + */ |
|
16 | + protected static $instance = null; |
|
17 | 17 | |
18 | - /** |
|
19 | - * The current item ID. |
|
20 | - * |
|
21 | - * @var boolean | int |
|
22 | - */ |
|
23 | - public $item_id = false; |
|
18 | + /** |
|
19 | + * The current item ID. |
|
20 | + * |
|
21 | + * @var boolean | int |
|
22 | + */ |
|
23 | + public $item_id = false; |
|
24 | 24 | |
25 | - /** |
|
26 | - * The current item post_type used in the custom field retrival.. |
|
27 | - * |
|
28 | - * @var boolean | int |
|
29 | - */ |
|
30 | - public $post_type = false; |
|
25 | + /** |
|
26 | + * The current item post_type used in the custom field retrival.. |
|
27 | + * |
|
28 | + * @var boolean | int |
|
29 | + */ |
|
30 | + public $post_type = false; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Holds the the default parameters for the gallery output. |
|
34 | - * |
|
35 | - * @var array |
|
36 | - */ |
|
37 | - public $defaults = array(); |
|
32 | + /** |
|
33 | + * Holds the the default parameters for the gallery output. |
|
34 | + * |
|
35 | + * @var array |
|
36 | + */ |
|
37 | + public $defaults = array(); |
|
38 | 38 | |
39 | - /** |
|
40 | - * If the current post has a gallery. |
|
41 | - * |
|
42 | - * @var boolean |
|
43 | - */ |
|
44 | - public $has_gallery = false; |
|
39 | + /** |
|
40 | + * If the current post has a gallery. |
|
41 | + * |
|
42 | + * @var boolean |
|
43 | + */ |
|
44 | + public $has_gallery = false; |
|
45 | 45 | |
46 | - /** |
|
47 | - * Holds the array of gallery images. |
|
48 | - * |
|
49 | - * @var array |
|
50 | - */ |
|
51 | - public $gallery = array(); |
|
46 | + /** |
|
47 | + * Holds the array of gallery images. |
|
48 | + * |
|
49 | + * @var array |
|
50 | + */ |
|
51 | + public $gallery = array(); |
|
52 | 52 | |
53 | - /** |
|
54 | - * Holds the html for the current gallery being output. |
|
55 | - * |
|
56 | - * @var array |
|
57 | - */ |
|
58 | - public $html = array(); |
|
53 | + /** |
|
54 | + * Holds the html for the current gallery being output. |
|
55 | + * |
|
56 | + * @var array |
|
57 | + */ |
|
58 | + public $html = array(); |
|
59 | 59 | |
60 | - /** |
|
61 | - * Holds the parameters for the current gallery being output. |
|
62 | - * |
|
63 | - * @var array |
|
64 | - */ |
|
65 | - public $args = array(); |
|
60 | + /** |
|
61 | + * Holds the parameters for the current gallery being output. |
|
62 | + * |
|
63 | + * @var array |
|
64 | + */ |
|
65 | + public $args = array(); |
|
66 | 66 | |
67 | - /** |
|
68 | - * Constructor |
|
69 | - */ |
|
70 | - public function __construct() { |
|
71 | - } |
|
67 | + /** |
|
68 | + * Constructor |
|
69 | + */ |
|
70 | + public function __construct() { |
|
71 | + } |
|
72 | 72 | |
73 | - /** |
|
74 | - * Return an instance of this class. |
|
75 | - * |
|
76 | - * @since 1.0.0 |
|
77 | - * |
|
78 | - * @return object \lsx_health_plan\classes\lib\Gallery() A single instance of this class. |
|
79 | - */ |
|
80 | - public static function get_instance() { |
|
81 | - // If the single instance hasn't been set, set it now. |
|
82 | - if ( null === self::$instance ) { |
|
83 | - self::$instance = new self(); |
|
84 | - } |
|
85 | - return self::$instance; |
|
86 | - } |
|
73 | + /** |
|
74 | + * Return an instance of this class. |
|
75 | + * |
|
76 | + * @since 1.0.0 |
|
77 | + * |
|
78 | + * @return object \lsx_health_plan\classes\lib\Gallery() A single instance of this class. |
|
79 | + */ |
|
80 | + public static function get_instance() { |
|
81 | + // If the single instance hasn't been set, set it now. |
|
82 | + if ( null === self::$instance ) { |
|
83 | + self::$instance = new self(); |
|
84 | + } |
|
85 | + return self::$instance; |
|
86 | + } |
|
87 | 87 | |
88 | - /** |
|
89 | - * Check if the item has a gallery of images returns true or false. |
|
90 | - * |
|
91 | - * @param string $item_id |
|
92 | - * @param string $post_type |
|
93 | - * @return boolean |
|
94 | - */ |
|
95 | - public function has_gallery( $item_id = '', $post_type = '' ) { |
|
88 | + /** |
|
89 | + * Check if the item has a gallery of images returns true or false. |
|
90 | + * |
|
91 | + * @param string $item_id |
|
92 | + * @param string $post_type |
|
93 | + * @return boolean |
|
94 | + */ |
|
95 | + public function has_gallery( $item_id = '', $post_type = '' ) { |
|
96 | 96 | |
97 | - if ( '' === $item_id ) { |
|
98 | - $this->item_id = get_the_ID(); |
|
99 | - } else { |
|
100 | - $this->item_id = $item_id; |
|
101 | - } |
|
102 | - $this->has_gallery = false; |
|
103 | - if ( '' === $post_type ) { |
|
104 | - $this->post_type = get_post_type( $this->item_id ); |
|
105 | - } |
|
106 | - $gallery = get_post_meta( $this->item_id, $this->post_type . '_gallery', true ); |
|
97 | + if ( '' === $item_id ) { |
|
98 | + $this->item_id = get_the_ID(); |
|
99 | + } else { |
|
100 | + $this->item_id = $item_id; |
|
101 | + } |
|
102 | + $this->has_gallery = false; |
|
103 | + if ( '' === $post_type ) { |
|
104 | + $this->post_type = get_post_type( $this->item_id ); |
|
105 | + } |
|
106 | + $gallery = get_post_meta( $this->item_id, $this->post_type . '_gallery', true ); |
|
107 | 107 | |
108 | - if ( ! empty( $gallery ) && ( '' !== $gallery ) ) { |
|
109 | - $this->gallery = $gallery; |
|
110 | - $this->has_gallery = true; |
|
111 | - wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/src/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
112 | - wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/src/lsx-health-plan-slider.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
113 | - } |
|
114 | - return $this->has_gallery; |
|
115 | - } |
|
108 | + if ( ! empty( $gallery ) && ( '' !== $gallery ) ) { |
|
109 | + $this->gallery = $gallery; |
|
110 | + $this->has_gallery = true; |
|
111 | + wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/src/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
112 | + wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/src/lsx-health-plan-slider.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
113 | + } |
|
114 | + return $this->has_gallery; |
|
115 | + } |
|
116 | 116 | |
117 | - /** |
|
118 | - * Returns the defaults for the gallery, after grabbing the setting from the item. |
|
119 | - * |
|
120 | - * @param string $item_id |
|
121 | - * @param string $post_type |
|
122 | - * @return array |
|
123 | - */ |
|
124 | - public function get_defaults( $item_id = '', $post_type = '' ) { |
|
125 | - if ( '' === $item_id ) { |
|
126 | - $item_id = $this->item_id; |
|
127 | - } |
|
128 | - if ( '' === $post_type ) { |
|
129 | - $post_type = $this->post_type; |
|
130 | - } |
|
131 | - $this->defaults = array( |
|
132 | - 'columns' => '3', |
|
133 | - 'layout' => 'slider', |
|
134 | - 'interval' => false, |
|
135 | - 'css_class' => false, |
|
136 | - ); |
|
137 | - foreach ( $this->defaults as $key => $default ) { |
|
138 | - $override = get_post_meta( $item_id, $this->post_type . '_gallery_' . $key, true ); |
|
139 | - if ( '' !== $override && false !== $override && ! empty( $override ) ) { |
|
140 | - $this->defaults[ $key ] = $override; |
|
141 | - } |
|
142 | - } |
|
143 | - return $this->defaults; |
|
144 | - } |
|
117 | + /** |
|
118 | + * Returns the defaults for the gallery, after grabbing the setting from the item. |
|
119 | + * |
|
120 | + * @param string $item_id |
|
121 | + * @param string $post_type |
|
122 | + * @return array |
|
123 | + */ |
|
124 | + public function get_defaults( $item_id = '', $post_type = '' ) { |
|
125 | + if ( '' === $item_id ) { |
|
126 | + $item_id = $this->item_id; |
|
127 | + } |
|
128 | + if ( '' === $post_type ) { |
|
129 | + $post_type = $this->post_type; |
|
130 | + } |
|
131 | + $this->defaults = array( |
|
132 | + 'columns' => '3', |
|
133 | + 'layout' => 'slider', |
|
134 | + 'interval' => false, |
|
135 | + 'css_class' => false, |
|
136 | + ); |
|
137 | + foreach ( $this->defaults as $key => $default ) { |
|
138 | + $override = get_post_meta( $item_id, $this->post_type . '_gallery_' . $key, true ); |
|
139 | + if ( '' !== $override && false !== $override && ! empty( $override ) ) { |
|
140 | + $this->defaults[ $key ] = $override; |
|
141 | + } |
|
142 | + } |
|
143 | + return $this->defaults; |
|
144 | + } |
|
145 | 145 | |
146 | - /** |
|
147 | - * Gets and returns the gallery html. |
|
148 | - * |
|
149 | - * @param string $item_id |
|
150 | - * @param string $post_type |
|
151 | - * @return void |
|
152 | - */ |
|
153 | - public function get_gallery( $item_id = '', $post_type = '', $args = array() ) { |
|
154 | - $return = ''; |
|
155 | - $this->html = array(); |
|
156 | - $this->args = wp_parse_args( $args, $this->get_defaults( $item_id, $post_type ) ); |
|
157 | - if ( ! empty( $this->gallery ) ) { |
|
158 | - $this->args['count'] = 1; |
|
159 | - if ( '' !== $post_type ) { |
|
160 | - $this->args['post_type'] = $post_type; |
|
161 | - } else { |
|
162 | - $this->args['post_type'] = $this->post_type; |
|
163 | - } |
|
146 | + /** |
|
147 | + * Gets and returns the gallery html. |
|
148 | + * |
|
149 | + * @param string $item_id |
|
150 | + * @param string $post_type |
|
151 | + * @return void |
|
152 | + */ |
|
153 | + public function get_gallery( $item_id = '', $post_type = '', $args = array() ) { |
|
154 | + $return = ''; |
|
155 | + $this->html = array(); |
|
156 | + $this->args = wp_parse_args( $args, $this->get_defaults( $item_id, $post_type ) ); |
|
157 | + if ( ! empty( $this->gallery ) ) { |
|
158 | + $this->args['count'] = 1; |
|
159 | + if ( '' !== $post_type ) { |
|
160 | + $this->args['post_type'] = $post_type; |
|
161 | + } else { |
|
162 | + $this->args['post_type'] = $this->post_type; |
|
163 | + } |
|
164 | 164 | |
165 | - // output the opening boostrap row divs. |
|
166 | - $this->before_loop(); |
|
165 | + // output the opening boostrap row divs. |
|
166 | + $this->before_loop(); |
|
167 | 167 | |
168 | - foreach ( $this->gallery as $key => $gallery ) { |
|
168 | + foreach ( $this->gallery as $key => $gallery ) { |
|
169 | 169 | |
170 | - $this->loop_start(); |
|
170 | + $this->loop_start(); |
|
171 | 171 | |
172 | - if ( isset( $gallery['exercise_gallery_image_id'] ) && ! empty( $gallery['exercise_gallery_image_id'] ) ) { |
|
173 | - $size = apply_filters( 'lsx_hp_exercise_gallery_size', 'full' ); |
|
174 | - $thumbnail = wp_get_attachment_image( $gallery['exercise_gallery_image_id'], $size ); |
|
175 | - $this->html[] = $thumbnail; |
|
176 | - } elseif ( isset( $gallery['exercise_gallery_external'] ) && ! empty( $gallery['exercise_gallery_external'] ) ) { |
|
177 | - $this->html[] = $gallery['exercise_gallery_external']; // WPCS: XSS OK. |
|
178 | - } elseif ( isset( $gallery['exercise_gallery_embed'] ) && ! empty( $gallery['exercise_gallery_embed'] ) ) { |
|
179 | - $embed_args = array( |
|
180 | - 'width' => '530', |
|
181 | - ); |
|
182 | - $embed = wp_oembed_get( $gallery['exercise_gallery_embed'], $embed_args ); |
|
183 | - $this->html[] = str_replace( 'width="530"', 'width="100%"', $embed ); // WPCS: XSS OK. |
|
184 | - } |
|
172 | + if ( isset( $gallery['exercise_gallery_image_id'] ) && ! empty( $gallery['exercise_gallery_image_id'] ) ) { |
|
173 | + $size = apply_filters( 'lsx_hp_exercise_gallery_size', 'full' ); |
|
174 | + $thumbnail = wp_get_attachment_image( $gallery['exercise_gallery_image_id'], $size ); |
|
175 | + $this->html[] = $thumbnail; |
|
176 | + } elseif ( isset( $gallery['exercise_gallery_external'] ) && ! empty( $gallery['exercise_gallery_external'] ) ) { |
|
177 | + $this->html[] = $gallery['exercise_gallery_external']; // WPCS: XSS OK. |
|
178 | + } elseif ( isset( $gallery['exercise_gallery_embed'] ) && ! empty( $gallery['exercise_gallery_embed'] ) ) { |
|
179 | + $embed_args = array( |
|
180 | + 'width' => '530', |
|
181 | + ); |
|
182 | + $embed = wp_oembed_get( $gallery['exercise_gallery_embed'], $embed_args ); |
|
183 | + $this->html[] = str_replace( 'width="530"', 'width="100%"', $embed ); // WPCS: XSS OK. |
|
184 | + } |
|
185 | 185 | |
186 | - $this->loop_end(); |
|
186 | + $this->loop_end(); |
|
187 | 187 | |
188 | - $this->args['count']++; |
|
189 | - } |
|
188 | + $this->args['count']++; |
|
189 | + } |
|
190 | 190 | |
191 | - // output the closing boostrap row divs. |
|
192 | - $this->after_loop(); |
|
193 | - } |
|
191 | + // output the closing boostrap row divs. |
|
192 | + $this->after_loop(); |
|
193 | + } |
|
194 | 194 | |
195 | - // Join the html output if its not empty. |
|
196 | - if ( ! empty( $this->html ) ) { |
|
197 | - $return = implode( '', $this->html ); |
|
198 | - } |
|
199 | - return $return; |
|
200 | - } |
|
195 | + // Join the html output if its not empty. |
|
196 | + if ( ! empty( $this->html ) ) { |
|
197 | + $return = implode( '', $this->html ); |
|
198 | + } |
|
199 | + return $return; |
|
200 | + } |
|
201 | 201 | |
202 | - /** |
|
203 | - * Outputs the CSS class for the panels |
|
204 | - * |
|
205 | - * @param string $columns |
|
206 | - * @return string |
|
207 | - */ |
|
208 | - public function column_class() { |
|
209 | - $cols = 'col-xs-12 col-sm-'; |
|
210 | - $cols .= '5' === $this->args['columns'] ? '15' : 12 / $this->args['columns']; |
|
211 | - return $cols; |
|
212 | - } |
|
202 | + /** |
|
203 | + * Outputs the CSS class for the panels |
|
204 | + * |
|
205 | + * @param string $columns |
|
206 | + * @return string |
|
207 | + */ |
|
208 | + public function column_class() { |
|
209 | + $cols = 'col-xs-12 col-sm-'; |
|
210 | + $cols .= '5' === $this->args['columns'] ? '15' : 12 / $this->args['columns']; |
|
211 | + return $cols; |
|
212 | + } |
|
213 | 213 | |
214 | - /** |
|
215 | - * Runs just after the if and before the while statement in $this->output() |
|
216 | - */ |
|
217 | - public function before_loop() { |
|
218 | - if ( 'slider' === $this->args['layout'] ) { |
|
219 | - $this->carousel_id = wp_rand( 20, 20000 ); |
|
220 | - $this->html[] = "<div class='lsx-hp-widget-items slick-slider slick-dotted slick-has-arrows {$this->args['css_class']} ' data-interval='{$this->args['interval']}' data-slick='{ \"slidesToShow\": {$this->args['columns']}, \"slidesToScroll\": {$this->args['columns']} }'>"; |
|
221 | - } else { |
|
222 | - $this->html[] = "<div class='lsx-hp-widget-items widget-item-grid-layout'>"; |
|
223 | - } |
|
224 | - } |
|
214 | + /** |
|
215 | + * Runs just after the if and before the while statement in $this->output() |
|
216 | + */ |
|
217 | + public function before_loop() { |
|
218 | + if ( 'slider' === $this->args['layout'] ) { |
|
219 | + $this->carousel_id = wp_rand( 20, 20000 ); |
|
220 | + $this->html[] = "<div class='lsx-hp-widget-items slick-slider slick-dotted slick-has-arrows {$this->args['css_class']} ' data-interval='{$this->args['interval']}' data-slick='{ \"slidesToShow\": {$this->args['columns']}, \"slidesToScroll\": {$this->args['columns']} }'>"; |
|
221 | + } else { |
|
222 | + $this->html[] = "<div class='lsx-hp-widget-items widget-item-grid-layout'>"; |
|
223 | + } |
|
224 | + } |
|
225 | 225 | |
226 | - /** |
|
227 | - * Runs at the very end of the loop before it runs again. |
|
228 | - */ |
|
229 | - public function loop_start() { |
|
230 | - // Get the call for the active slide. |
|
231 | - if ( 'slider' === $this->args['layout'] ) { |
|
232 | - $this->html[] = "<div class='lsx-hp-widget-item-wrap lsx-{$this->args['post_type']}'>"; |
|
233 | - } else { |
|
234 | - if ( 1 === $this->args['count'] ) { |
|
235 | - $this->html[] = "<div class='row'>"; |
|
236 | - } |
|
237 | - $this->html[] = '<div class="' . $this->column_class() . '">'; |
|
238 | - } |
|
239 | - } |
|
226 | + /** |
|
227 | + * Runs at the very end of the loop before it runs again. |
|
228 | + */ |
|
229 | + public function loop_start() { |
|
230 | + // Get the call for the active slide. |
|
231 | + if ( 'slider' === $this->args['layout'] ) { |
|
232 | + $this->html[] = "<div class='lsx-hp-widget-item-wrap lsx-{$this->args['post_type']}'>"; |
|
233 | + } else { |
|
234 | + if ( 1 === $this->args['count'] ) { |
|
235 | + $this->html[] = "<div class='row'>"; |
|
236 | + } |
|
237 | + $this->html[] = '<div class="' . $this->column_class() . '">'; |
|
238 | + } |
|
239 | + } |
|
240 | 240 | |
241 | - /** |
|
242 | - * Runs at the very end of the loop before it runs again. |
|
243 | - */ |
|
244 | - public function loop_end() { |
|
245 | - if ( 'slider' !== $this->args['layout'] ) { |
|
246 | - $this->html[] = '</div>'; |
|
247 | - } |
|
248 | - // Close the current slide panel. |
|
249 | - if ( 'slider' === $this->args['layout'] ) { |
|
250 | - $this->html[] = '</div>'; |
|
251 | - } elseif ( 0 === $this->args['count'] % $this->args['columns'] || count( $this->gallery ) === $this->args['count'] ) { |
|
252 | - $this->html[] = '</div>'; |
|
241 | + /** |
|
242 | + * Runs at the very end of the loop before it runs again. |
|
243 | + */ |
|
244 | + public function loop_end() { |
|
245 | + if ( 'slider' !== $this->args['layout'] ) { |
|
246 | + $this->html[] = '</div>'; |
|
247 | + } |
|
248 | + // Close the current slide panel. |
|
249 | + if ( 'slider' === $this->args['layout'] ) { |
|
250 | + $this->html[] = '</div>'; |
|
251 | + } elseif ( 0 === $this->args['count'] % $this->args['columns'] || count( $this->gallery ) === $this->args['count'] ) { |
|
252 | + $this->html[] = '</div>'; |
|
253 | 253 | |
254 | - if ( $this->args['count'] < count( $this->gallery ) ) { |
|
255 | - $this->html[] = "<div class='row'>"; |
|
256 | - } |
|
257 | - } |
|
258 | - } |
|
254 | + if ( $this->args['count'] < count( $this->gallery ) ) { |
|
255 | + $this->html[] = "<div class='row'>"; |
|
256 | + } |
|
257 | + } |
|
258 | + } |
|
259 | 259 | |
260 | - /** |
|
261 | - * Runs just after the if and before the while statement in $this->output() |
|
262 | - */ |
|
263 | - public function after_loop() { |
|
264 | - // Slider output Closing. |
|
265 | - if ( 'slider' === $this->args['layout'] ) { |
|
266 | - $this->html[] = '</div>'; |
|
267 | - } else { |
|
268 | - $this->html[] = '</div>'; |
|
269 | - } |
|
270 | - } |
|
260 | + /** |
|
261 | + * Runs just after the if and before the while statement in $this->output() |
|
262 | + */ |
|
263 | + public function after_loop() { |
|
264 | + // Slider output Closing. |
|
265 | + if ( 'slider' === $this->args['layout'] ) { |
|
266 | + $this->html[] = '</div>'; |
|
267 | + } else { |
|
268 | + $this->html[] = '</div>'; |
|
269 | + } |
|
270 | + } |
|
271 | 271 | } |
@@ -8,81 +8,81 @@ |
||
8 | 8 | */ |
9 | 9 | class Template_Redirects { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\frontend\Template_Redirects() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\frontend\Template_Redirects() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - add_filter( 'template_include', array( $this, 'archive_template_include' ), 99 ); |
|
25 | - add_filter( 'template_include', array( $this, 'single_template_include' ), 99 ); |
|
26 | - add_filter( 'template_include', array( $this, 'taxonomy_template_include' ), 99 ); |
|
27 | - } |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + add_filter( 'template_include', array( $this, 'archive_template_include' ), 99 ); |
|
25 | + add_filter( 'template_include', array( $this, 'single_template_include' ), 99 ); |
|
26 | + add_filter( 'template_include', array( $this, 'taxonomy_template_include' ), 99 ); |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
30 | - * Return an instance of this class. |
|
31 | - * |
|
32 | - * @since 1.0.0 |
|
33 | - * |
|
34 | - * @return object \lsx_health_plan\classes\frontend\Template_Redirects() A single instance of this class. |
|
35 | - */ |
|
36 | - public static function get_instance() { |
|
37 | - // If the single instance hasn't been set, set it now. |
|
38 | - if ( null === self::$instance ) { |
|
39 | - self::$instance = new self(); |
|
40 | - } |
|
41 | - return self::$instance; |
|
42 | - } |
|
29 | + /** |
|
30 | + * Return an instance of this class. |
|
31 | + * |
|
32 | + * @since 1.0.0 |
|
33 | + * |
|
34 | + * @return object \lsx_health_plan\classes\frontend\Template_Redirects() A single instance of this class. |
|
35 | + */ |
|
36 | + public static function get_instance() { |
|
37 | + // If the single instance hasn't been set, set it now. |
|
38 | + if ( null === self::$instance ) { |
|
39 | + self::$instance = new self(); |
|
40 | + } |
|
41 | + return self::$instance; |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * Archive template. |
|
46 | - */ |
|
47 | - public function archive_template_include( $template ) { |
|
48 | - $applicable_post_types = apply_filters( 'lsx_health_plan_archive_template', array() ); |
|
49 | - if ( ! empty( $applicable_post_types ) && is_main_query() && is_post_type_archive( $applicable_post_types ) ) { |
|
50 | - $post_type = get_post_type(); |
|
51 | - if ( empty( locate_template( array( 'archive-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php' ) ) { |
|
52 | - $template = LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php'; |
|
53 | - } |
|
54 | - } |
|
55 | - return $template; |
|
56 | - } |
|
44 | + /** |
|
45 | + * Archive template. |
|
46 | + */ |
|
47 | + public function archive_template_include( $template ) { |
|
48 | + $applicable_post_types = apply_filters( 'lsx_health_plan_archive_template', array() ); |
|
49 | + if ( ! empty( $applicable_post_types ) && is_main_query() && is_post_type_archive( $applicable_post_types ) ) { |
|
50 | + $post_type = get_post_type(); |
|
51 | + if ( empty( locate_template( array( 'archive-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php' ) ) { |
|
52 | + $template = LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php'; |
|
53 | + } |
|
54 | + } |
|
55 | + return $template; |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * Single template. |
|
60 | - */ |
|
61 | - public function single_template_include( $template ) { |
|
62 | - $applicable_post_types = apply_filters( 'lsx_health_plan_single_template', array() ); |
|
63 | - if ( ! empty( $applicable_post_types ) && is_main_query() && is_singular( $applicable_post_types ) ) { |
|
64 | - $post_type = get_post_type(); |
|
65 | - if ( empty( locate_template( array( 'single-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php' ) ) { |
|
66 | - $template = LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php'; |
|
67 | - } |
|
68 | - } |
|
69 | - return $template; |
|
70 | - } |
|
58 | + /** |
|
59 | + * Single template. |
|
60 | + */ |
|
61 | + public function single_template_include( $template ) { |
|
62 | + $applicable_post_types = apply_filters( 'lsx_health_plan_single_template', array() ); |
|
63 | + if ( ! empty( $applicable_post_types ) && is_main_query() && is_singular( $applicable_post_types ) ) { |
|
64 | + $post_type = get_post_type(); |
|
65 | + if ( empty( locate_template( array( 'single-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php' ) ) { |
|
66 | + $template = LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php'; |
|
67 | + } |
|
68 | + } |
|
69 | + return $template; |
|
70 | + } |
|
71 | 71 | |
72 | - /** |
|
73 | - * Redirect WordPress to the taxonomy located in the plugin |
|
74 | - * |
|
75 | - * @param $template string |
|
76 | - * @return string |
|
77 | - */ |
|
78 | - public function taxonomy_template_include( $template ) { |
|
79 | - $applicable_taxonomies = apply_filters( 'lsx_health_plan_taxonomies_template', array() ); |
|
80 | - if ( is_main_query() && is_tax( $applicable_taxonomies ) ) { |
|
81 | - $current_taxonomy = get_query_var( 'taxonomy' ); |
|
82 | - if ( '' === locate_template( array( 'taxonomy-' . $current_taxonomy . '.php' ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php' ) ) { |
|
83 | - $template = LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php'; |
|
84 | - } |
|
85 | - } |
|
86 | - return $template; |
|
87 | - } |
|
72 | + /** |
|
73 | + * Redirect WordPress to the taxonomy located in the plugin |
|
74 | + * |
|
75 | + * @param $template string |
|
76 | + * @return string |
|
77 | + */ |
|
78 | + public function taxonomy_template_include( $template ) { |
|
79 | + $applicable_taxonomies = apply_filters( 'lsx_health_plan_taxonomies_template', array() ); |
|
80 | + if ( is_main_query() && is_tax( $applicable_taxonomies ) ) { |
|
81 | + $current_taxonomy = get_query_var( 'taxonomy' ); |
|
82 | + if ( '' === locate_template( array( 'taxonomy-' . $current_taxonomy . '.php' ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php' ) ) { |
|
83 | + $template = LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php'; |
|
84 | + } |
|
85 | + } |
|
86 | + return $template; |
|
87 | + } |
|
88 | 88 | } |