Completed
Push — master ( d8562c...7fa338 )
by Warwick
02:56 queued 12s
created
includes/layout.php 1 patch
Spacing   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -6,25 +6,25 @@  discard block
 block discarded – undo
6 6
  * @subpackage layout
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_layout_selector' ) ) :
13
+if ( ! function_exists('lsx_layout_selector')) :
14 14
 	/**
15 15
 	 * Layout selector.
16 16
 	 *
17 17
 	 * @package    lsx
18 18
 	 * @subpackage layout
19 19
 	 */
20
-	function lsx_layout_selector( $class, $area = 'site' ) {
20
+	function lsx_layout_selector($class, $area = 'site') {
21 21
 		$return_class = '';
22
-		$layout       = get_theme_mod( 'lsx_layout', '1c' );
23
-		$layout       = apply_filters( 'lsx_layout', $layout );
22
+		$layout       = get_theme_mod('lsx_layout', '1c');
23
+		$layout       = apply_filters('lsx_layout', $layout);
24 24
 		$default_size = 'sm';
25
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
25
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
26 26
 
27
-		switch ( $layout ) {
27
+		switch ($layout) {
28 28
 			case '1c':
29 29
 				$main_class    = 'col-' . $size . '-12';
30 30
 				$sidebar_class = 'col-' . $size . '-12';
@@ -43,19 +43,19 @@  discard block
 block discarded – undo
43 43
 				break;
44 44
 		}
45 45
 
46
-		if ( 'main' === $class ) {
47
-			$return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size );
46
+		if ('main' === $class) {
47
+			$return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size);
48 48
 		}
49 49
 
50
-		if ( 'sidebar' === $class ) {
51
-			$return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size );
50
+		if ('sidebar' === $class) {
51
+			$return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size);
52 52
 		}
53 53
 
54 54
 		return $return_class;
55 55
 	}
56 56
 endif;
57 57
 
58
-if ( ! function_exists( 'lsx_main_class' ) ) :
58
+if ( ! function_exists('lsx_main_class')) :
59 59
 	/**
60 60
 	 * .main classes.
61 61
 	 *
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 	 * @subpackage layout
64 64
 	 */
65 65
 	function lsx_main_class() {
66
-		return lsx_layout_selector( 'main' );
66
+		return lsx_layout_selector('main');
67 67
 	}
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_sidebar_class' ) ) :
70
+if ( ! function_exists('lsx_sidebar_class')) :
71 71
 	/**
72 72
 	 * .sidebar classes.
73 73
 	 *
@@ -75,47 +75,47 @@  discard block
 block discarded – undo
75 75
 	 * @subpackage layout
76 76
 	 */
77 77
 	function lsx_sidebar_class() {
78
-		return lsx_layout_selector( 'sidebar' );
78
+		return lsx_layout_selector('sidebar');
79 79
 	}
80 80
 endif;
81 81
 
82
-if ( ! function_exists( 'lsx_header_classes' ) ) :
82
+if ( ! function_exists('lsx_header_classes')) :
83 83
 	/**
84 84
 	 * Output the classes for the header.
85 85
 	 *
86 86
 	 * @package    lsx
87 87
 	 * @subpackage layout
88 88
 	 */
89
-	function lsx_header_classes( $additional = false ) {
89
+	function lsx_header_classes($additional = false) {
90 90
 		$classes = 'banner navbar navbar-default';
91 91
 
92
-		if ( false !== $additional ) {
92
+		if (false !== $additional) {
93 93
 			$classes .= ' ' . $additional;
94 94
 		}
95 95
 
96
-		echo esc_attr( $classes );
96
+		echo esc_attr($classes);
97 97
 	}
98 98
 endif;
99 99
 
100
-if ( ! function_exists( 'lsx_top_menu_classes' ) ) :
100
+if ( ! function_exists('lsx_top_menu_classes')) :
101 101
 	/**
102 102
 	 * Output the classes for the top-menu.
103 103
 	 *
104 104
 	 * @package    lsx
105 105
 	 * @subpackage layout
106 106
 	 */
107
-	function lsx_top_menu_classes( $additional = false ) {
107
+	function lsx_top_menu_classes($additional = false) {
108 108
 		$classes = 'top-menu-default';
109 109
 
110
-		if ( false !== $additional ) {
110
+		if (false !== $additional) {
111 111
 			$classes .= ' ' . $additional;
112 112
 		}
113 113
 
114
-		echo esc_attr( $classes );
114
+		echo esc_attr($classes);
115 115
 	}
116 116
 endif;
117 117
 
118
-if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) :
118
+if ( ! function_exists('lsx_add_footer_sidebar_area')) :
119 119
 	/**
120 120
 	 * Output the Footer CTA and/pr Footer Widgets.
121 121
 	 *
@@ -123,32 +123,32 @@  discard block
 block discarded – undo
123 123
 	 * @subpackage layout
124 124
 	 */
125 125
 	function lsx_add_footer_sidebar_area() {
126
-		if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?>
126
+		if (is_active_sidebar('sidebar-footer-cta')) : ?>
127 127
 			<div id="footer-cta">
128 128
 				<div class="container">
129 129
 					<div class="lsx-full-width">
130 130
 						<div class="lsx-hero-unit">
131
-							<?php dynamic_sidebar( 'sidebar-footer-cta' ); ?>
131
+							<?php dynamic_sidebar('sidebar-footer-cta'); ?>
132 132
 						</div>
133 133
 					</div>
134 134
 				</div>
135 135
 			</div>
136 136
 		<?php endif; ?>
137 137
 
138
-		<?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?>
138
+		<?php if (is_active_sidebar('sidebar-footer')) : ?>
139 139
 			<div id="footer-widgets">
140 140
 				<div class="container">
141 141
 					<div class="row">
142
-						<?php dynamic_sidebar( 'sidebar-footer' ); ?>
142
+						<?php dynamic_sidebar('sidebar-footer'); ?>
143 143
 					</div>
144 144
 				</div>
145 145
 			</div>
146 146
 		<?php endif;
147 147
 	}
148
-	add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' );
148
+	add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area');
149 149
 endif;
150 150
 
151
-if ( ! function_exists( 'lsx_global_header' ) ) :
151
+if ( ! function_exists('lsx_global_header')) :
152 152
 	/**
153 153
 	 * Displays the global header.
154 154
 	 *
@@ -156,23 +156,23 @@  discard block
 block discarded – undo
156 156
 	 * @subpackage layout
157 157
 	 */
158 158
 	function lsx_global_header() {
159
-		$show_on_front  = get_option( 'show_on_front' );
159
+		$show_on_front  = get_option('show_on_front');
160 160
 		$queried_object = get_queried_object();
161 161
 		$default_size   = 'sm';
162
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
162
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
163 163
 
164 164
 		//Pages have their own banner function 'lsx_page_banner()'
165 165
 		// if ( function_exists( 'is_woocommerce' ) && ( is_woocommerce() || is_checkout() || is_cart() || is_account_page() ) ) {
166 166
 		// 	return;
167 167
 		// }
168 168
 		//Product pages have their own banner function 'lsx_page_banner()'
169
-		if ( function_exists( 'is_woocommerce' ) && ( is_product() ) ) {
169
+		if (function_exists('is_woocommerce') && (is_product())) {
170 170
 			return;
171 171
 		}
172 172
 
173
-		if ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) :
173
+		if (is_page() && ('page' !== $show_on_front || ! is_front_page())) :
174 174
 			?>
175
-			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12">
175
+			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12">
176 176
 				<?php lsx_global_header_inner_bottom(); ?>
177 177
 				<header class="archive-header">
178 178
 					<h1 class="archive-title"><?php the_title(); ?></h1>
@@ -180,26 +180,26 @@  discard block
 block discarded – undo
180 180
 
181 181
 			</div>
182 182
 			<?php
183
-		elseif ( is_single() && ! is_singular( 'post' ) ) :
183
+		elseif (is_single() && ! is_singular('post')) :
184 184
 			?>
185
-			<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
185
+			<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
186 186
 				<?php lsx_global_header_inner_bottom(); ?>
187 187
 				<header class="archive-header">
188
-					<h1 class="archive-title"><?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_title() ) ); ?></h1>
188
+					<h1 class="archive-title"><?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_title())); ?></h1>
189 189
 				</header>
190 190
 
191 191
 			</div>
192 192
 			<?php
193
-		elseif ( is_search() ) :
193
+		elseif (is_search()) :
194 194
 			?>
195
-			<div class="archive-header-wrapper banner-search col-<?php echo esc_attr( $size ); ?>-12">
195
+			<div class="archive-header-wrapper banner-search col-<?php echo esc_attr($size); ?>-12">
196 196
 				<?php lsx_global_header_inner_bottom(); ?>
197 197
 				<header class="archive-header">
198 198
 					<h1 class="archive-title">
199 199
 						<?php
200 200
 							printf(
201 201
 								/* Translators: %s: search term/query */
202
-								esc_html__( 'Search Results for: %s', 'lsx' ),
202
+								esc_html__('Search Results for: %s', 'lsx'),
203 203
 								'<span>' . get_search_query() . '</span>'
204 204
 							);
205 205
 						?>
@@ -208,12 +208,12 @@  discard block
 block discarded – undo
208 208
 
209 209
 			</div>
210 210
 			<?php
211
-		elseif ( is_author() ) :
211
+		elseif (is_author()) :
212 212
 			$author = get_the_author();
213
-			$author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 );
213
+			$author_avatar = get_avatar(get_the_author_meta('ID'), 256);
214 214
 			$author_bio = get_the_archive_description();
215 215
 			?>
216
-			<div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr( $size ); ?>-12">
216
+			<div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr($size); ?>-12">
217 217
 				<?php lsx_global_header_inner_bottom(); ?>
218 218
 				<header class="archive-header">
219 219
 					<h1 class="archive-title"><?php the_archive_title(); ?></h1>
@@ -221,16 +221,16 @@  discard block
 block discarded – undo
221 221
 
222 222
 			</div>
223 223
 			<?php
224
-		elseif ( is_archive() ) :
224
+		elseif (is_archive()) :
225 225
 			?>
226
-			<div class="archive-header-wrapper banner-archive col-<?php echo esc_attr( $size ); ?>-12">
226
+			<div class="archive-header-wrapper banner-archive col-<?php echo esc_attr($size); ?>-12">
227 227
 				<?php lsx_global_header_inner_bottom(); ?>
228 228
 				<header class="archive-header">
229 229
 					<h1 class="archive-title">
230
-						<?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?>
231
-							<?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?>
230
+						<?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?>
231
+							<?php the_archive_title(esc_html__('Type:', 'lsx')); ?>
232 232
 						<?php } else { ?>
233
-							<?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_archive_title() ) ); ?>
233
+							<?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_archive_title())); ?>
234 234
 						<?php } ?>
235 235
 					</h1>
236 236
 
@@ -238,36 +238,36 @@  discard block
 block discarded – undo
238 238
 				</header>
239 239
 			</div>
240 240
 			<?php
241
-		elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) :
241
+		elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) :
242 242
 			?>
243
-			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12">
243
+			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12">
244 244
 				<?php lsx_global_header_inner_bottom(); ?>
245 245
 				<header class="archive-header">
246
-					<h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1>
246
+					<h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1>
247 247
 				</header>
248 248
 
249 249
 			</div>
250 250
 			<?php
251
-		elseif ( ! is_singular( 'post' ) ) :
251
+		elseif ( ! is_singular('post')) :
252 252
 			// Display only the breadcrumbs
253 253
 			?>
254
-			<div class="archive-header-wrapper banner-singular col-<?php echo esc_attr( $size ); ?>-12">
254
+			<div class="archive-header-wrapper banner-singular col-<?php echo esc_attr($size); ?>-12">
255 255
 				<?php lsx_global_header_inner_bottom(); ?>
256 256
 			</div>
257 257
 			<?php
258
-		elseif ( ( true === apply_filters( 'lsx_global_header_disable', false ) ) && ( ! is_search() ) ) :
258
+		elseif ((true === apply_filters('lsx_global_header_disable', false)) && ( ! is_search())) :
259 259
 			// Display only the breadcrumbs
260 260
 			?>
261
-			<div class="archive-header-wrapper banner-global col-<?php echo esc_attr( $size ); ?>-12">
261
+			<div class="archive-header-wrapper banner-global col-<?php echo esc_attr($size); ?>-12">
262 262
 				<?php lsx_global_header_inner_bottom(); ?>
263 263
 			</div>
264 264
 			<?php
265 265
 		endif;
266 266
 	}
267
-	add_action( 'lsx_content_wrap_before', 'lsx_global_header' );
267
+	add_action('lsx_content_wrap_before', 'lsx_global_header');
268 268
 endif;
269 269
 
270
-if ( ! function_exists( 'lsx_author_extra_info' ) ) :
270
+if ( ! function_exists('lsx_author_extra_info')) :
271 271
 	/**
272 272
 	 * Displays the author extra info.
273 273
 	 *
@@ -276,83 +276,83 @@  discard block
 block discarded – undo
276 276
 	 */
277 277
 	function lsx_author_extra_info() {
278 278
 		$default_size   = 'sm';
279
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
279
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
280 280
 
281
-		if ( is_author() ) :
282
-			$author_id         = get_the_author_meta( 'ID' );
281
+		if (is_author()) :
282
+			$author_id         = get_the_author_meta('ID');
283 283
 			$author            = get_the_author();
284
-			$author_avatar     = get_avatar( $author_id, 400 );
284
+			$author_avatar     = get_avatar($author_id, 400);
285 285
 			$author_bio        = get_the_archive_description();
286
-			$author_url        = get_the_author_meta( 'url', $author_id );
287
-			$author_email      = get_the_author_meta( 'email', $author_id );
288
-			$author_facebook   = get_the_author_meta( 'facebook', $author_id );
289
-			$author_linkedin   = get_the_author_meta( 'linkedin', $author_id );
290
-			$author_twitter    = get_the_author_meta( 'twitter', $author_id );
291
-			$author_googleplus = get_the_author_meta( 'googleplus', $author_id );
286
+			$author_url        = get_the_author_meta('url', $author_id);
287
+			$author_email      = get_the_author_meta('email', $author_id);
288
+			$author_facebook   = get_the_author_meta('facebook', $author_id);
289
+			$author_linkedin   = get_the_author_meta('linkedin', $author_id);
290
+			$author_twitter    = get_the_author_meta('twitter', $author_id);
291
+			$author_googleplus = get_the_author_meta('googleplus', $author_id);
292 292
 			?>
293
-			<div class="col-<?php echo esc_attr( $size ); ?>-12">
293
+			<div class="col-<?php echo esc_attr($size); ?>-12">
294 294
 				<div class="archive-author-data">
295 295
 					<div class="row">
296
-						<?php if ( ! empty( $author_avatar ) ) : ?>
296
+						<?php if ( ! empty($author_avatar)) : ?>
297 297
 							<div class="col-xs-12 col-sm-4 col-md-3">
298
-							<figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure>
298
+							<figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure>
299 299
 							</div>
300 300
 						<?php endif; ?>
301 301
 						<div class="col-xs-12 col-sm-8 col-md-9">
302
-							<a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( 'post' ) ) ); ?>"><?php echo esc_html__( 'Back To Blog', 'lsx' ); ?></a>
302
+							<a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link('post'))); ?>"><?php echo esc_html__('Back To Blog', 'lsx'); ?></a>
303 303
 							<!-- Name -->
304 304
 							<h2 class="archive-author-title">
305 305
 								<?php
306
-								if ( '' !== $author ) {
307
-									echo esc_html( $author );
306
+								if ('' !== $author) {
307
+									echo esc_html($author);
308 308
 								}
309 309
 								?>
310 310
 							</h2>
311 311
 							<!-- Social -->
312
-							<?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?>
312
+							<?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?>
313 313
 								<div class="archive-author-social-links">
314
-									<?php if ( ! empty( $author_url ) ) : ?>
315
-										<a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a>
314
+									<?php if ( ! empty($author_url)) : ?>
315
+										<a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a>
316 316
 									<?php endif; ?>
317 317
 
318
-									<?php if ( ! empty( $author_email ) ) : ?>
319
-										<a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a>
318
+									<?php if ( ! empty($author_email)) : ?>
319
+										<a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a>
320 320
 									<?php endif; ?>
321 321
 
322
-									<?php if ( ! empty( $author_facebook ) ) : ?>
323
-										<a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
322
+									<?php if ( ! empty($author_facebook)) : ?>
323
+										<a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
324 324
 									<?php endif; ?>
325 325
 
326
-									<?php if ( ! empty( $author_twitter ) ) : ?>
327
-										<a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a>
326
+									<?php if ( ! empty($author_twitter)) : ?>
327
+										<a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a>
328 328
 									<?php endif; ?>
329 329
 
330
-									<?php if ( ! empty( $author_linkedin ) ) : ?>
331
-										<a href="<?php echo esc_url( $author_linkedin ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
330
+									<?php if ( ! empty($author_linkedin)) : ?>
331
+										<a href="<?php echo esc_url($author_linkedin); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
332 332
 									<?php endif; ?>
333 333
 
334
-									<?php if ( ! empty( $author_googleplus ) ) : ?>
335
-										<a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
334
+									<?php if ( ! empty($author_googleplus)) : ?>
335
+										<a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
336 336
 									<?php endif; ?>
337 337
 								</div>
338 338
 							<?php endif; ?>
339 339
 
340 340
 							<!-- Bio -->
341
-							<?php if ( ! empty( $author_bio ) ) : ?>
342
-								<p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p>
341
+							<?php if ( ! empty($author_bio)) : ?>
342
+								<p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p>
343 343
 							<?php endif; ?>
344 344
 						</div>
345 345
 					</div>
346 346
 				</div>
347
-				<h2><?php echo esc_html__( 'Posts', 'lsx' ); ?></h2>
347
+				<h2><?php echo esc_html__('Posts', 'lsx'); ?></h2>
348 348
 			</div>
349 349
 			<?php
350 350
 		endif;
351 351
 	}
352
-	add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 );
352
+	add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11);
353 353
 endif;
354 354
 
355
-if ( ! function_exists( 'lsx_post_header' ) ) :
355
+if ( ! function_exists('lsx_post_header')) :
356 356
 	/**
357 357
 	 * Displays the post header.
358 358
 	 *
@@ -361,21 +361,21 @@  discard block
 block discarded – undo
361 361
 	 */
362 362
 	function lsx_post_header() {
363 363
 		$default_size  = 'sm';
364
-		$size          = apply_filters( 'lsx_bootstrap_column_size', $default_size );
364
+		$size          = apply_filters('lsx_bootstrap_column_size', $default_size);
365 365
 
366
-		if ( is_singular( 'post' ) ) :
366
+		if (is_singular('post')) :
367 367
 			$format = get_post_format();
368 368
 
369
-			if ( false === $format ) {
369
+			if (false === $format) {
370 370
 				$format = 'standard';
371 371
 			}
372 372
 
373
-			$format = lsx_translate_format_to_fontawesome( $format );
373
+			$format = lsx_translate_format_to_fontawesome($format);
374 374
 			?>
375
-			<div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr( $size ); ?>-12">
375
+			<div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr($size); ?>-12">
376 376
 				<header class="archive-header">
377 377
 					<h1 class="archive-title">
378
-						<i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i>
378
+						<i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i>
379 379
 						<span><?php the_title(); ?></span>
380 380
 					</h1>
381 381
 				</header>
@@ -383,10 +383,10 @@  discard block
 block discarded – undo
383 383
 			<?php
384 384
 		endif;
385 385
 	}
386
-	add_action( 'lsx_entry_top', 'lsx_post_header' );
386
+	add_action('lsx_entry_top', 'lsx_post_header');
387 387
 endif;
388 388
 
389
-if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) :
389
+if ( ! function_exists('lsx_add_viewport_meta_tag')) :
390 390
 	/**
391 391
 	 * Add Viewport Meta Tag to head.
392 392
 	 *
@@ -398,10 +398,10 @@  discard block
 block discarded – undo
398 398
 		<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0">
399 399
 		<?php
400 400
 	}
401
-	add_action( 'wp_head', 'lsx_add_viewport_meta_tag' );
401
+	add_action('wp_head', 'lsx_add_viewport_meta_tag');
402 402
 endif;
403 403
 
404
-if ( ! function_exists( 'lsx_header_search_form' ) ) :
404
+if ( ! function_exists('lsx_header_search_form')) :
405 405
 	/**
406 406
 	 * Add a search form to just above the nav menu.
407 407
 	 *
@@ -409,19 +409,19 @@  discard block
 block discarded – undo
409 409
 	 * @subpackage layout
410 410
 	 */
411 411
 	function lsx_header_search_form() {
412
-		$search_form = get_theme_mod( 'lsx_header_search', false );
412
+		$search_form = get_theme_mod('lsx_header_search', false);
413 413
 
414
-		if ( false !== $search_form || is_customize_preview() ) {
415
-			get_search_form( true );
414
+		if (false !== $search_form || is_customize_preview()) {
415
+			get_search_form(true);
416 416
 		}
417 417
 	}
418
-	add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 );
418
+	add_action('lsx_nav_before', 'lsx_header_search_form', 0);
419 419
 endif;
420 420
 
421 421
 // Add entry meta to single post if active
422
-if ( ! function_exists( 'lsx_add_entry_meta' ) ) :
422
+if ( ! function_exists('lsx_add_entry_meta')) :
423 423
 	function lsx_add_entry_meta() {
424
-		if ( is_single() && is_singular( 'post' ) ) {
424
+		if (is_single() && is_singular('post')) {
425 425
 			?>
426 426
 			<div class="entry-meta">
427 427
 				<?php lsx_post_meta_single_top(); ?>
@@ -429,5 +429,5 @@  discard block
 block discarded – undo
429 429
 			<?php
430 430
 		}
431 431
 	}
432
-	add_action( 'lsx_entry_top', 'lsx_add_entry_meta', 999 );
432
+	add_action('lsx_entry_top', 'lsx_add_entry_meta', 999);
433 433
 endif;
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +157 added lines, -157 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage extras
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
  * @package    lsx
17 17
  * @subpackage extras
18 18
  */
19
-add_filter( 'widget_text', 'shortcode_unautop' );
20
-add_filter( 'widget_text', 'do_shortcode' );
19
+add_filter('widget_text', 'shortcode_unautop');
20
+add_filter('widget_text', 'do_shortcode');
21 21
 
22
-if ( ! function_exists( 'lsx_kses_allowed_html' ) ) :
22
+if ( ! function_exists('lsx_kses_allowed_html')) :
23 23
 
24 24
 	/**
25 25
 	 * Enable extra attributes (srcset, sizes) in img tag.
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 * @package    lsx
28 28
 	 * @subpackage extras
29 29
 	 */
30
-	function lsx_kses_allowed_html( $allowedtags, $context ) {
30
+	function lsx_kses_allowed_html($allowedtags, $context) {
31 31
 		$allowedtags['img']['srcset'] = true;
32 32
 		$allowedtags['img']['sizes']  = true;
33 33
 
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 
43 43
 endif;
44 44
 
45
-add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 );
45
+add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2);
46 46
 
47
-if ( ! function_exists( 'lsx_body_class' ) ) :
47
+if ( ! function_exists('lsx_body_class')) :
48 48
 
49 49
 	/**
50 50
 	 * Add and remove body_class() classes.
@@ -52,55 +52,55 @@  discard block
 block discarded – undo
52 52
 	 * @package    lsx
53 53
 	 * @subpackage extras
54 54
 	 */
55
-	function lsx_body_class( $classes ) {
55
+	function lsx_body_class($classes) {
56 56
 		global $post;
57 57
 
58
-		$header_layout = get_theme_mod( 'lsx_header_layout', 'inline' );
58
+		$header_layout = get_theme_mod('lsx_header_layout', 'inline');
59 59
 		$classes[]     = 'header-' . $header_layout;
60 60
 
61
-		if ( isset( $post ) ) {
61
+		if (isset($post)) {
62 62
 			$classes[] = $post->post_name;
63 63
 		}
64 64
 
65
-		if ( class_exists( 'LSX_Banners' ) || empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) {
66
-			$post_types = array( 'page', 'post' );
67
-			$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
65
+		if (class_exists('LSX_Banners') || empty(apply_filters('lsx_banner_plugin_disable', false))) {
66
+			$post_types = array('page', 'post');
67
+			$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
68 68
 
69
-			if ( is_singular( $post_types ) && has_post_thumbnail() ) {
69
+			if (is_singular($post_types) && has_post_thumbnail()) {
70 70
 				$classes[] = 'page-has-banner';
71 71
 			}
72 72
 		}
73 73
 
74
-		if ( function_exists( 'tour_operator' ) ) {
75
-			$post_types = array( 'page', 'post' );
74
+		if (function_exists('tour_operator')) {
75
+			$post_types = array('page', 'post');
76 76
 
77 77
 			$classes[] = 'to-active';
78 78
 		}
79 79
 
80
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) {
80
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) {
81 81
 			$classes[] = 'has-top-menu';
82 82
 		}
83 83
 
84
-		$fixed_header = get_theme_mod( 'lsx_header_fixed', false );
84
+		$fixed_header = get_theme_mod('lsx_header_fixed', false);
85 85
 
86
-		if ( false !== $fixed_header ) {
86
+		if (false !== $fixed_header) {
87 87
 			$classes[] = 'top-menu-fixed';
88 88
 		}
89 89
 
90
-		$search_form  = get_theme_mod( 'lsx_header_search', false );
90
+		$search_form = get_theme_mod('lsx_header_search', false);
91 91
 
92
-		if ( false !== $search_form ) {
92
+		if (false !== $search_form) {
93 93
 			$classes[] = 'has-header-search';
94 94
 		}
95 95
 
96
-		$preloader_content  = get_theme_mod( 'lsx_preloader_content_status', false );
96
+		$preloader_content = get_theme_mod('lsx_preloader_content_status', false);
97 97
 
98
-		if ( false !== $preloader_content ) {
98
+		if (false !== $preloader_content) {
99 99
 			$classes[] = 'preloader-content-enable';
100 100
 		}
101 101
 
102
-		$register_enabled = get_option( 'users_can_register', false );
103
-		if ( ( $register_enabled ) && is_page( 'my-account' ) && is_singular() ) {
102
+		$register_enabled = get_option('users_can_register', false);
103
+		if (($register_enabled) && is_page('my-account') && is_singular()) {
104 104
 			$classes[] = 'register-enabled';
105 105
 		}
106 106
 
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
 
110 110
 endif;
111 111
 
112
-add_filter( 'body_class', 'lsx_body_class' );
112
+add_filter('body_class', 'lsx_body_class');
113 113
 
114
-if ( ! function_exists( 'lsx_embed_wrap' ) ) :
114
+if ( ! function_exists('lsx_embed_wrap')) :
115 115
 
116 116
 	/**
117 117
 	 * Wrap embedded media as suggested by Readability.
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
 	 * @link https://gist.github.com/965956
123 123
 	 * @link http://www.readability.com/publishers/guidelines#publisher
124 124
 	 */
125
-	function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) {
126
-		if ( false !== strpos( $cache, '<iframe' ) ) {
125
+	function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') {
126
+		if (false !== strpos($cache, '<iframe')) {
127 127
 			return '<div class="entry-content-asset">' . $cache . '</div>';
128 128
 		}
129 129
 
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
 
133 133
 endif;
134 134
 
135
-add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 );
135
+add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4);
136 136
 
137
-if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) :
137
+if ( ! function_exists('lsx_remove_self_closing_tags')) :
138 138
 
139 139
 	/**
140 140
 	 * Remove unnecessary self-closing tags.
@@ -142,17 +142,17 @@  discard block
 block discarded – undo
142 142
 	 * @package    lsx
143 143
 	 * @subpackage extras
144 144
 	 */
145
-	function lsx_remove_self_closing_tags( $input ) {
146
-		return str_replace( ' />', '>', $input );
145
+	function lsx_remove_self_closing_tags($input) {
146
+		return str_replace(' />', '>', $input);
147 147
 	}
148 148
 
149 149
 endif;
150 150
 
151
-add_filter( 'get_avatar',          'lsx_remove_self_closing_tags' ); // <img />
152
-add_filter( 'comment_id_fields',   'lsx_remove_self_closing_tags' ); // <input />
153
-add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img />
151
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
152
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
153
+add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
154 154
 
155
-if ( ! function_exists( 'lsx_is_element_empty' ) ) :
155
+if ( ! function_exists('lsx_is_element_empty')) :
156 156
 
157 157
 	/**
158 158
 	 * Checks if a Nav $element is empty or not.
@@ -160,14 +160,14 @@  discard block
 block discarded – undo
160 160
 	 * @package    lsx
161 161
 	 * @subpackage extras
162 162
 	 */
163
-	function lsx_is_element_empty( $element ) {
164
-		$element = trim( $element );
165
-		return empty( $element ) ? false : true;
163
+	function lsx_is_element_empty($element) {
164
+		$element = trim($element);
165
+		return empty($element) ? false : true;
166 166
 	}
167 167
 
168 168
 endif;
169 169
 
170
-if ( ! function_exists( 'lsx_get_thumbnail' ) ) :
170
+if ( ! function_exists('lsx_get_thumbnail')) :
171 171
 
172 172
 	/**
173 173
 	 * return the responsive images.
@@ -175,58 +175,58 @@  discard block
 block discarded – undo
175 175
 	 * @package    lsx
176 176
 	 * @subpackage extras
177 177
 	 */
178
-	function lsx_get_thumbnail( $size, $image_src = false ) {
179
-		if ( false === $image_src ) {
178
+	function lsx_get_thumbnail($size, $image_src = false) {
179
+		if (false === $image_src) {
180 180
 			$post_id           = get_the_ID();
181
-			$post_thumbnail_id = get_post_thumbnail_id( $post_id );
182
-		} elseif ( false !== $image_src ) {
183
-			if ( is_numeric( $image_src ) ) {
181
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
182
+		} elseif (false !== $image_src) {
183
+			if (is_numeric($image_src)) {
184 184
 				$post_thumbnail_id = $image_src;
185 185
 			} else {
186
-				$post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src );
186
+				$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
187 187
 			}
188 188
 		}
189 189
 
190
-		$size = apply_filters( 'lsx_thumbnail_size', $size );
190
+		$size = apply_filters('lsx_thumbnail_size', $size);
191 191
 		$img       = '';
192 192
 		$lazy_img  = '';
193 193
 		$image_url = '';
194 194
 
195
-		if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) {
195
+		if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) {
196 196
 			$srcset = false;
197
-			$temp_img    = wp_get_attachment_image_src( $post_thumbnail_id, $size );
198
-			if ( ! empty( $temp_img ) ) {
199
-				$img    = $temp_img[0];
197
+			$temp_img = wp_get_attachment_image_src($post_thumbnail_id, $size);
198
+			if ( ! empty($temp_img)) {
199
+				$img = $temp_img[0];
200 200
 			}
201 201
 		} else {
202 202
 			$srcset = true;
203
-			$img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size );
203
+			$img = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
204 204
 
205
-			$temp_lazy = wp_get_attachment_image_src( $post_thumbnail_id, $size );
206
-			if ( ! empty( $temp_lazy ) ) {
205
+			$temp_lazy = wp_get_attachment_image_src($post_thumbnail_id, $size);
206
+			if ( ! empty($temp_lazy)) {
207 207
 				$lazy_img = $temp_lazy[0];
208 208
 			}
209 209
 
210
-			if ( empty( $img ) ) {
210
+			if (empty($img)) {
211 211
 				$srcset = false;
212
-				if ( ! empty( $lazy_img ) ) {
212
+				if ( ! empty($lazy_img)) {
213 213
 					$img = $lazy_img;
214 214
 				}
215 215
 			}
216 216
 		}
217 217
 
218
-		if ( '' !== $img ) {
218
+		if ('' !== $img) {
219 219
 			$image_url = $img;
220
-			$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" ';
221
-			if ( $srcset ) {
222
-				$img .= 'srcset="' . esc_attr( $image_url ) . '" ';
220
+			$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" ';
221
+			if ($srcset) {
222
+				$img .= 'srcset="' . esc_attr($image_url) . '" ';
223 223
 			} else {
224
-				$img .= 'src="' . esc_url( $image_url ) . '" ';
224
+				$img .= 'src="' . esc_url($image_url) . '" ';
225 225
 			}
226 226
 			$img .= '/>';
227 227
 
228
-			$img = apply_filters( 'lsx_lazyload_filter_images', $img );
229
-			$img = apply_filters( 'lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url );
228
+			$img = apply_filters('lsx_lazyload_filter_images', $img);
229
+			$img = apply_filters('lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url);
230 230
 		}
231 231
 
232 232
 		return $img;
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 
235 235
 endif;
236 236
 
237
-if ( ! function_exists( 'lsx_thumbnail' ) ) :
237
+if ( ! function_exists('lsx_thumbnail')) :
238 238
 
239 239
 	/**
240 240
 	 * Output the Resonsive Images.
@@ -242,13 +242,13 @@  discard block
 block discarded – undo
242 242
 	 * @package    lsx
243 243
 	 * @subpackage extras
244 244
 	 */
245
-	function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
246
-		echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
245
+	function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
246
+		echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
247 247
 	}
248 248
 
249 249
 endif;
250 250
 
251
-if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) :
251
+if ( ! function_exists('lsx_get_attachment_id_from_src')) :
252 252
 
253 253
 	/**
254 254
 	 * Gets the attachments ID from the src.
@@ -256,13 +256,13 @@  discard block
 block discarded – undo
256 256
 	 * @package    lsx
257 257
 	 * @subpackage extras
258 258
 	 */
259
-	function lsx_get_attachment_id_from_src( $image_src ) {
260
-		$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
259
+	function lsx_get_attachment_id_from_src($image_src) {
260
+		$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
261 261
 
262
-		if ( false === $post_id ) {
262
+		if (false === $post_id) {
263 263
 			global $wpdb;
264
-			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
265
-			wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
264
+			$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
265
+			wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
266 266
 		}
267 267
 
268 268
 		return $post_id;
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
 endif;
272 272
 
273
-if ( ! function_exists( 'lsx_page_banner' ) ) :
273
+if ( ! function_exists('lsx_page_banner')) :
274 274
 
275 275
 	/**
276 276
 	 * Add Featured Image as Banner on Single Pages.
@@ -279,30 +279,30 @@  discard block
 block discarded – undo
279 279
 	 * @subpackage extras
280 280
 	 */
281 281
 	function lsx_page_banner() {
282
-		if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) {
282
+		if (true === apply_filters('lsx_page_banner_disable', false)) {
283 283
 			return;
284 284
 		}
285 285
 
286
-		$post_types = array( 'page', 'post' );
287
-		$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
286
+		$post_types = array('page', 'post');
287
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
288 288
 
289
-		if ( is_singular( $post_types ) && has_post_thumbnail() ) :
289
+		if (is_singular($post_types) && has_post_thumbnail()) :
290 290
 			$bg_image = '';
291 291
 
292
-			if ( has_post_thumbnail() ) {
293
-				$temp_bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
294
-				if ( ! empty( $temp_bg_image ) ) {
292
+			if (has_post_thumbnail()) {
293
+				$temp_bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
294
+				if ( ! empty($temp_bg_image)) {
295 295
 					$bg_image = $temp_bg_image[0];
296 296
 				}
297 297
 			}
298 298
 
299
-			if ( '' !== $bg_image ) :
299
+			if ('' !== $bg_image) :
300 300
 				?>
301 301
 					<div class="page-banner-wrap">
302 302
 						<div class="page-banner">
303 303
 							<?php lsx_banner_inner_top(); ?>
304 304
 
305
-							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
305
+							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
306 306
 
307 307
 							<div class="container">
308 308
 								<header class="page-header">
@@ -321,11 +321,11 @@  discard block
 block discarded – undo
321 321
 
322 322
 endif;
323 323
 
324
-add_filter( 'lsx_banner_disable', 'lsx_disable_banner_for_blocks' );
325
-add_filter( 'lsx_global_header_disable', 'lsx_disable_banner_for_blocks' );
324
+add_filter('lsx_banner_disable', 'lsx_disable_banner_for_blocks');
325
+add_filter('lsx_global_header_disable', 'lsx_disable_banner_for_blocks');
326 326
 
327 327
 
328
-if ( ! function_exists( 'lsx_disable_banner_for_blocks' ) ) :
328
+if ( ! function_exists('lsx_disable_banner_for_blocks')) :
329 329
 
330 330
 	/**
331 331
 	 * Disable the Banner if the page is using Blocks
@@ -336,15 +336,15 @@  discard block
 block discarded – undo
336 336
 	 * @param  $disable boolean
337 337
 	 * @return boolean
338 338
 	 */
339
-	function lsx_disable_banner_for_blocks( $disable ) {
339
+	function lsx_disable_banner_for_blocks($disable) {
340 340
 		$queried_object = get_queried_object_id();
341
-		$show_on_front  = get_option( 'show_on_front' );
341
+		$show_on_front  = get_option('show_on_front');
342 342
 
343
-		if ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object ) {
343
+		if ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object) {
344 344
 			return $disable;
345 345
 		}
346 346
 
347
-		if ( function_exists( 'has_blocks' ) && has_blocks() && ( ! is_archive() ) ) {
347
+		if (function_exists('has_blocks') && has_blocks() && ( ! is_archive())) {
348 348
 			$disable = true;
349 349
 		}
350 350
 		return $disable;
@@ -352,9 +352,9 @@  discard block
 block discarded – undo
352 352
 
353 353
 endif;
354 354
 
355
-add_action( 'lsx_header_after', 'lsx_page_banner' );
355
+add_action('lsx_header_after', 'lsx_page_banner');
356 356
 
357
-if ( ! function_exists( 'lsx_form_submit_button' ) ) :
357
+if ( ! function_exists('lsx_form_submit_button')) :
358 358
 
359 359
 	/**
360 360
 	 * filter the Gravity Forms button type.
@@ -366,15 +366,15 @@  discard block
 block discarded – undo
366 366
 	 * @param  $form   Object
367 367
 	 * @return String
368 368
 	 */
369
-	function lsx_form_submit_button( $button, $form ) {
369
+	function lsx_form_submit_button($button, $form) {
370 370
 		return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
371 371
 	}
372 372
 
373 373
 endif;
374 374
 
375
-add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 );
375
+add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2);
376 376
 
377
-if ( ! function_exists( 'lsx_excerpt_more' ) ) :
377
+if ( ! function_exists('lsx_excerpt_more')) :
378 378
 
379 379
 	/**
380 380
 	 * Replaces the excerpt "more" text by a link.
@@ -382,15 +382,15 @@  discard block
 block discarded – undo
382 382
 	 * @package    lsx
383 383
 	 * @subpackage extras
384 384
 	 */
385
-	function lsx_excerpt_more( $more ) {
385
+	function lsx_excerpt_more($more) {
386 386
 		return '...';
387 387
 	}
388 388
 
389 389
 endif;
390 390
 
391
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
391
+add_filter('excerpt_more', 'lsx_excerpt_more');
392 392
 
393
-if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) :
393
+if ( ! function_exists('lsx_the_excerpt_filter')) :
394 394
 
395 395
 	/**
396 396
 	 * Add a continue reading link to the excerpt.
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 	 * @package    lsx
399 399
 	 * @subpackage extras
400 400
 	 */
401
-	function lsx_the_excerpt_filter( $excerpt ) {
401
+	function lsx_the_excerpt_filter($excerpt) {
402 402
 
403 403
 		$post_formats = array(
404 404
 			'aside'   => 'aside',
@@ -411,23 +411,23 @@  discard block
 block discarded – undo
411 411
 			'audio'   => 'audio',
412 412
 		);
413 413
 
414
-		$show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) );
414
+		$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats));
415 415
 
416
-		if ( ! $show_full_content ) {
417
-			if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) {
418
-				$pagination = wp_link_pages( array(
416
+		if ( ! $show_full_content) {
417
+			if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
418
+				$pagination = wp_link_pages(array(
419 419
 					'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
420 420
 					'after'       => '</div></div>',
421 421
 					'link_before' => '<span>',
422 422
 					'link_after'  => '</span>',
423 423
 					'echo'        => 0,
424
-				) );
424
+				));
425 425
 
426
-				if ( ! empty( $pagination ) ) {
426
+				if ( ! empty($pagination)) {
427 427
 					$excerpt .= $pagination;
428 428
 				} else {
429
-					$excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>';
430
-					$excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more );
429
+					$excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>';
430
+					$excerpt .= apply_filters('excerpt_more_p', $excerpt_more);
431 431
 				}
432 432
 			}
433 433
 		}
@@ -437,9 +437,9 @@  discard block
 block discarded – undo
437 437
 
438 438
 endif;
439 439
 
440
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 );
440
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
441 441
 
442
-if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) :
442
+if ( ! function_exists('lsx_full_width_widget_classes')) :
443 443
 
444 444
 	/**
445 445
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -447,8 +447,8 @@  discard block
 block discarded – undo
447 447
 	 * @package    lsx
448 448
 	 * @subpackage extras
449 449
 	 */
450
-	function lsx_full_width_widget_classes( $params ) {
451
-		if ( is_admin() ) {
450
+	function lsx_full_width_widget_classes($params) {
451
+		if (is_admin()) {
452 452
 			return $params;
453 453
 		}
454 454
 
@@ -457,9 +457,9 @@  discard block
 block discarded – undo
457 457
 		$widget_id   = $params[0]['widget_id'];
458 458
 		$widget_name = $params[0]['widget_name'];
459 459
 
460
-		if ( 'Text' === $widget_name ) {
461
-			$wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback'];
462
-			$wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback';
460
+		if ('Text' === $widget_name) {
461
+			$wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback'];
462
+			$wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback';
463 463
 		}
464 464
 
465 465
 		return $params;
@@ -467,9 +467,9 @@  discard block
 block discarded – undo
467 467
 
468 468
 endif;
469 469
 
470
-add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' );
470
+add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes');
471 471
 
472
-if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) :
472
+if ( ! function_exists('lsx_full_width_widget_custom_callback')) :
473 473
 
474 474
 	/**
475 475
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -483,25 +483,25 @@  discard block
 block discarded – undo
483 483
 		$original_callback_params = func_get_args();
484 484
 		$widget_id = $original_callback_params[0]['widget_id'];
485 485
 
486
-		$original_callback = $wp_registered_widgets[ $widget_id ]['original_callback'];
487
-		$wp_registered_widgets[ $widget_id ]['callback'] = $original_callback;
486
+		$original_callback = $wp_registered_widgets[$widget_id]['original_callback'];
487
+		$wp_registered_widgets[$widget_id]['callback'] = $original_callback;
488 488
 
489
-		$widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base;
489
+		$widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base;
490 490
 
491 491
 		$widget_classname = '';
492 492
 
493
-		if ( is_callable( $original_callback ) ) {
493
+		if (is_callable($original_callback)) {
494 494
 			ob_start();
495
-			call_user_func_array( $original_callback, $original_callback_params );
495
+			call_user_func_array($original_callback, $original_callback_params);
496 496
 			$widget_output = ob_get_clean();
497 497
 
498
-			echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) );
498
+			echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id));
499 499
 		}
500 500
 	}
501 501
 
502 502
 endif;
503 503
 
504
-if ( ! function_exists( 'lsx_full_width_widget_output' ) ) :
504
+if ( ! function_exists('lsx_full_width_widget_output')) :
505 505
 
506 506
 	/**
507 507
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -509,12 +509,12 @@  discard block
 block discarded – undo
509 509
 	 * @package    lsx
510 510
 	 * @subpackage extras
511 511
 	 */
512
-	function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) {
513
-		if ( 'text' === $widget_id_base ) {
514
-			if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) {
515
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output );
516
-			} elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) {
517
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output );
512
+	function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) {
513
+		if ('text' === $widget_id_base) {
514
+			if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) {
515
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output);
516
+			} elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) {
517
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output);
518 518
 			}
519 519
 		}
520 520
 
@@ -523,13 +523,13 @@  discard block
 block discarded – undo
523 523
 
524 524
 endif;
525 525
 
526
-add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 );
526
+add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3);
527 527
 
528 528
 /**
529 529
  * Check if the content has a restricted post format that needs to show a full excerpt.
530 530
  */
531 531
 function lsx_post_format_force_content_on_list() {
532
-	$post_formats = apply_filters( 'lsx_post_format_force_content_on_list',
532
+	$post_formats = apply_filters('lsx_post_format_force_content_on_list',
533 533
 		array(
534 534
 				'video' => 'video',
535 535
 				'audio' => 'audio',
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
 			)
539 539
 	);
540 540
 	$return = false;
541
-	if ( ! has_post_format( $post_formats ) ) {
541
+	if ( ! has_post_format($post_formats)) {
542 542
 		$return = true;
543 543
 	}
544 544
 	return $return;
@@ -547,67 +547,67 @@  discard block
 block discarded – undo
547 547
 /**
548 548
  * Remove the Hentry Class Every
549 549
  */
550
-function lsx_remove_hentry( $classes ) {
551
-	if ( 'post' !== get_post_type() ) {
552
-		$classes = array_diff( $classes, array( 'hentry' ) );
550
+function lsx_remove_hentry($classes) {
551
+	if ('post' !== get_post_type()) {
552
+		$classes = array_diff($classes, array('hentry'));
553 553
 	}
554 554
 	return $classes;
555 555
 }
556
-add_filter( 'post_class','lsx_remove_hentry' );
556
+add_filter('post_class', 'lsx_remove_hentry');
557 557
 
558 558
 /**
559 559
  * Strip Excerpts.
560 560
  *
561 561
  */
562
-function lsx_strip_excerpt( $content ) {
563
-	if ( is_search() || is_archive() || ( is_blog_installed() && ! is_single() && ! is_page() ) ) {
564
-		$content = strip_shortcodes( $content );
565
-		$content = str_replace( ']]>', ']]&gt;', $content );
566
-		$content = strip_tags( $content );
562
+function lsx_strip_excerpt($content) {
563
+	if (is_search() || is_archive() || (is_blog_installed() && ! is_single() && ! is_page())) {
564
+		$content = strip_shortcodes($content);
565
+		$content = str_replace(']]>', ']]&gt;', $content);
566
+		$content = strip_tags($content);
567 567
 	}
568 568
 	return $content;
569 569
 }
570
-add_filter( 'the_content', 'lsx_strip_excerpt' );
570
+add_filter('the_content', 'lsx_strip_excerpt');
571 571
 
572 572
 /**
573 573
  * Disable Gutenberg for LSX Custom Post Tpes.
574 574
  *
575 575
  */
576
-function lsx_disable_gutenberg_product_type( $is_enabled, $post_type ) {
577
-	if ( 'testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type ) {
576
+function lsx_disable_gutenberg_product_type($is_enabled, $post_type) {
577
+	if ('testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type) {
578 578
 		return false;
579 579
 	}
580 580
 
581 581
 	return $is_enabled;
582 582
 }
583
-add_filter( 'gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2 );
583
+add_filter('gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2);
584 584
 
585 585
 /**
586 586
  * Add the "Blog" link to the breadcrumbs
587 587
  * @param $crumbs
588 588
  * @return array
589 589
  */
590
-function lsx_breadcrumbs_blog_link( $crumbs ) {
590
+function lsx_breadcrumbs_blog_link($crumbs) {
591 591
 
592
-	$show_on_front = get_option( 'show_on_front' );
592
+	$show_on_front = get_option('show_on_front');
593 593
 
594
-	if ( 'page' === $show_on_front && ( is_category() || is_tag() ) ) {
594
+	if ('page' === $show_on_front && (is_category() || is_tag())) {
595 595
 
596
-		$blog_page = get_option( 'page_for_posts' );
597
-		if ( false !== $blog_page && '' !== $blog_page ) {
596
+		$blog_page = get_option('page_for_posts');
597
+		if (false !== $blog_page && '' !== $blog_page) {
598 598
 
599 599
 			$new_crumbs = array();
600 600
 			$new_crumbs[0] = $crumbs[0];
601 601
 
602
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
602
+			if (function_exists('woocommerce_breadcrumb')) {
603 603
 				$new_crumbs[1] = array(
604
-					0	=> get_the_title( $blog_page ),
605
-					1	=> get_permalink( $blog_page ),
604
+					0	=> get_the_title($blog_page),
605
+					1	=> get_permalink($blog_page),
606 606
 				);
607 607
 			} else {
608 608
 				$new_crumbs[1] = array(
609
-					'text'	=> get_the_title( $blog_page ),
610
-					'url'	=> get_permalink( $blog_page ),
609
+					'text'	=> get_the_title($blog_page),
610
+					'url'	=> get_permalink($blog_page),
611 611
 				);
612 612
 			}
613 613
 			$new_crumbs[2] = $crumbs[1];
@@ -617,5 +617,5 @@  discard block
 block discarded – undo
617 617
 	}
618 618
 	return $crumbs;
619 619
 }
620
-add_filter( 'wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1 );
621
-add_filter( 'woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1 );
620
+add_filter('wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1);
621
+add_filter('woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1);
Please login to merge, or discard this patch.
includes/sensei/class-lsx-sensei.php 1 patch
Spacing   +160 added lines, -160 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage sensei
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! class_exists( 'LSX_Sensei' ) ) :
13
+if ( ! class_exists('LSX_Sensei')) :
14 14
 
15 15
 	/**
16 16
 	 * The LSX Sensei integration class
@@ -50,57 +50,57 @@  discard block
 block discarded – undo
50 50
 
51 51
 			global $woothemes_sensei;
52 52
 
53
-			add_action( 'wp_enqueue_scripts', array( $this, 'lsx_sensei_scripts_add_styles' ) );
53
+			add_action('wp_enqueue_scripts', array($this, 'lsx_sensei_scripts_add_styles'));
54 54
 
55
-			remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 );
56
-			add_action( 'sensei_before_main_content', array( $this, 'lsx_sensei_theme_wrapper_start' ) );
55
+			remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10);
56
+			add_action('sensei_before_main_content', array($this, 'lsx_sensei_theme_wrapper_start'));
57 57
 
58
-			remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 );
59
-			add_action( 'sensei_after_main_content', array( $this, 'lsx_sensei_theme_wrapper_end' ) );
58
+			remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10);
59
+			add_action('sensei_after_main_content', array($this, 'lsx_sensei_theme_wrapper_end'));
60 60
 
61
-			add_filter( 'get_the_archive_title', array( $this, 'lsx_sensei_modify_archive_title' ), 99, 1 );
61
+			add_filter('get_the_archive_title', array($this, 'lsx_sensei_modify_archive_title'), 99, 1);
62 62
 
63 63
 			// LSX
64
-			add_filter( 'lsx_global_header_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
64
+			add_filter('lsx_global_header_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
65 65
 			// LSX Banners - Plugin, Placeholders
66
-			add_filter( 'lsx_banner_plugin_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
66
+			add_filter('lsx_banner_plugin_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
67 67
 			// LSX Banners - Banner
68
-			add_filter( 'lsx_banner_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
68
+			add_filter('lsx_banner_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
69 69
 
70
-			add_filter( 'course_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 );
71
-			add_filter( 'sensei_lesson_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 );
70
+			add_filter('course_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1);
71
+			add_filter('sensei_lesson_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1);
72 72
 
73
-			add_filter( 'course_category_title', array( $this, 'lsx_sensei_category_title' ), 10, 1 );
73
+			add_filter('course_category_title', array($this, 'lsx_sensei_category_title'), 10, 1);
74 74
 
75
-			add_action( 'sensei_course_content_inside_after', array( $this, 'lsx_sensei_add_buttons' ), 9 );
75
+			add_action('sensei_course_content_inside_after', array($this, 'lsx_sensei_add_buttons'), 9);
76 76
 
77
-			add_filter( 'sensei_wc_paid_courses_add_to_cart_button_text', array( $this, 'lsx_sensei_add_to_cart_text' ) );
77
+			add_filter('sensei_wc_paid_courses_add_to_cart_button_text', array($this, 'lsx_sensei_add_to_cart_text'));
78 78
 
79
-			add_action( 'lsx_content_wrap_before', array( $this, 'lsx_sensei_results_header' ) );
79
+			add_action('lsx_content_wrap_before', array($this, 'lsx_sensei_results_header'));
80 80
 
81
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 );
82
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 );
81
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1);
82
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1);
83 83
 
84
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 );
85
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 );
84
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1);
85
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1);
86 86
 
87
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 );
88
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 );
87
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1);
88
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1);
89 89
 
90
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 );
91
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 );
90
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1);
91
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1);
92 92
 
93
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 );
94
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 );
93
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1);
94
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1);
95 95
 
96
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 );
97
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 );
96
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1);
97
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1);
98 98
 
99
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
100
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
99
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
100
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
101 101
 
102
-			add_action( 'sensei_archive_before_message_loop', array( $this, 'lsx_sensei_back_message_button' ) );
103
-			add_action( 'sensei_content_message_after', array( $this, 'lsx_sensei_view_message_button' ) );
102
+			add_action('sensei_archive_before_message_loop', array($this, 'lsx_sensei_back_message_button'));
103
+			add_action('sensei_content_message_after', array($this, 'lsx_sensei_view_message_button'));
104 104
 
105 105
 		}
106 106
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 		 */
113 113
 		public static function get_instance() {
114 114
 			// If the single instance hasn't been set, set it now.
115
-			if ( null === self::$instance ) {
115
+			if (null === self::$instance) {
116 116
 				self::$instance = new self;
117 117
 			}
118 118
 			return self::$instance;
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 		 * @subpackage sensei
126 126
 		 */
127 127
 		public function lsx_sensei_scripts_add_styles() {
128
-			wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array( 'lsx_main' ), LSX_VERSION );
129
-			wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' );
128
+			wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array('lsx_main'), LSX_VERSION);
129
+			wp_style_add_data('sensei-lsx', 'rtl', 'replace');
130 130
 		}
131 131
 
132 132
 		/**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		 */
138 138
 		public function lsx_sensei_theme_wrapper_start() {
139 139
 			lsx_content_wrap_before();
140
-			echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
140
+			echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
141 141
 			lsx_content_before();
142 142
 			echo '<main id="main" class="site-main" role="main">';
143 143
 			lsx_content_top();
@@ -163,18 +163,18 @@  discard block
 block discarded – undo
163 163
 		 * @param [type] $title
164 164
 		 * @return void
165 165
 		 */
166
-		public function lsx_sensei_modify_archive_title( $title ) {
167
-			if ( is_archive() && is_post_type_archive( 'course' ) ) {
168
-				$title = __( 'Courses', 'lsx' );
166
+		public function lsx_sensei_modify_archive_title($title) {
167
+			if (is_archive() && is_post_type_archive('course')) {
168
+				$title = __('Courses', 'lsx');
169 169
 			}
170
-			if ( is_archive() && is_post_type_archive( 'sensei_message' ) ) {
171
-				$title = __( 'Messages', 'lsx' );
170
+			if (is_archive() && is_post_type_archive('sensei_message')) {
171
+				$title = __('Messages', 'lsx');
172 172
 			}
173
-			if ( is_archive() && is_post_type_archive( 'lesson' ) ) {
174
-				$title = __( 'Lessons', 'lsx' );
173
+			if (is_archive() && is_post_type_archive('lesson')) {
174
+				$title = __('Lessons', 'lsx');
175 175
 			}
176
-			if ( is_archive() && is_tax() ) {
177
-				$title = single_term_title( '', false );
176
+			if (is_archive() && is_tax()) {
177
+				$title = single_term_title('', false);
178 178
 			}
179 179
 			return $title;
180 180
 		}
@@ -185,8 +185,8 @@  discard block
 block discarded – undo
185 185
 		 * @package    lsx
186 186
 		 * @subpackage sensei
187 187
 		 */
188
-		public function lsx_sensei_disable_lsx_banner( $disabled ) {
189
-			if ( is_sensei() ) {
188
+		public function lsx_sensei_disable_lsx_banner($disabled) {
189
+			if (is_sensei()) {
190 190
 				$disabled = true;
191 191
 			}
192 192
 
@@ -199,8 +199,8 @@  discard block
 block discarded – undo
199 199
 		 * @package    lsx
200 200
 		 * @subpackage sensei
201 201
 		 */
202
-		public function lsx_sensei_archive_title( $html ) {
203
-			$html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html );
202
+		public function lsx_sensei_archive_title($html) {
203
+			$html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html);
204 204
 			return $html;
205 205
 		}
206 206
 
@@ -210,8 +210,8 @@  discard block
 block discarded – undo
210 210
 		 * @package    lsx
211 211
 		 * @subpackage sensei
212 212
 		 */
213
-		public function lsx_sensei_category_title( $html ) {
214
-			$html = str_replace( 'h2', 'h1', $html );
213
+		public function lsx_sensei_category_title($html) {
214
+			$html = str_replace('h2', 'h1', $html);
215 215
 			return $html;
216 216
 		}
217 217
 
@@ -221,18 +221,18 @@  discard block
 block discarded – undo
221 221
 		 * @package    lsx
222 222
 		 * @subpackage sensei
223 223
 		 */
224
-		public function lsx_sensei_add_buttons( $course_id ) {
224
+		public function lsx_sensei_add_buttons($course_id) {
225 225
 			global $post, $current_user;
226
-			$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
227
-			if ( class_exists( 'Sensei_WC' ) ) {
228
-				$course_purchasable = Sensei_WC::is_course_purchasable( $post->ID );
226
+			$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
227
+			if (class_exists('Sensei_WC')) {
228
+				$course_purchasable = Sensei_WC::is_course_purchasable($post->ID);
229 229
 			}
230 230
 
231 231
 			?>
232 232
 				<section class="entry-actions">
233 233
 					<?php
234
-					if ( ( ! $is_user_taking_course ) && $course_purchasable ) {
235
-						Sensei_WC::the_add_to_cart_button_html( $post->ID );
234
+					if (( ! $is_user_taking_course) && $course_purchasable) {
235
+						Sensei_WC::the_add_to_cart_button_html($post->ID);
236 236
 					}
237 237
 					?>
238 238
 				</section>
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
 		 * @package    lsx
246 246
 		 * @subpackage sensei
247 247
 		 */
248
-		public function lsx_sensei_add_to_cart_text( $text ) {
249
-			$text = esc_html__( 'Add to cart', 'lsx' );
248
+		public function lsx_sensei_add_to_cart_text($text) {
249
+			$text = esc_html__('Add to cart', 'lsx');
250 250
 			return $text;
251 251
 		}
252 252
 
@@ -256,46 +256,46 @@  discard block
 block discarded – undo
256 256
 		 * @package    lsx
257 257
 		 * @subpackage layout
258 258
 		 */
259
-		public function lsx_sensei_results_header( $user ) {
259
+		public function lsx_sensei_results_header($user) {
260 260
 
261 261
 			$default_size = 'sm';
262
-			$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
262
+			$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
263 263
 			global $wp_query;
264
-			if ( isset( $wp_query->query_vars['course_results'] ) ) {
264
+			if (isset($wp_query->query_vars['course_results'])) {
265 265
 				$is_results = $wp_query->query_vars['course_results'];
266 266
 			} else {
267 267
 				$is_results = false;
268 268
 			}
269
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
269
+			if (isset($wp_query->query_vars['learner_profile'])) {
270 270
 				$is_profile = $wp_query->query_vars['learner_profile'];
271 271
 			} else {
272 272
 				$is_profile = false;
273 273
 			}
274 274
 
275
-			if ( is_sticky() && $is_results ) :
276
-				$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
275
+			if (is_sticky() && $is_results) :
276
+				$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
277 277
 
278
-					$course_title = esc_html( $course_for_results->post_title );
278
+					$course_title = esc_html($course_for_results->post_title);
279 279
 				?>
280
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
280
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
281 281
 					<?php lsx_global_header_inner_bottom(); ?>
282 282
 					<header class="archive-header">
283
-						<h1 class="archive-title"><?php echo wp_kses_post( $course_title ); ?></h1>
283
+						<h1 class="archive-title"><?php echo wp_kses_post($course_title); ?></h1>
284 284
 					</header>
285 285
 
286 286
 				</div>
287 287
 				<?php
288 288
 			endif;
289 289
 
290
-			if ( is_sticky() && $is_profile ) :
290
+			if (is_sticky() && $is_profile) :
291 291
 				$query_var    = $wp_query->query_vars['learner_profile'];
292
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
292
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
293 293
 				$learner_name = $learner_user->display_name;
294 294
 				?>
295
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
295
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
296 296
 					<?php lsx_global_header_inner_bottom(); ?>
297 297
 					<header class="archive-header">
298
-						<h1 class="archive-title"><?php echo esc_html( $learner_name ); ?></h1>
298
+						<h1 class="archive-title"><?php echo esc_html($learner_name); ?></h1>
299 299
 					</header>
300 300
 
301 301
 				</div>
@@ -308,21 +308,21 @@  discard block
 block discarded – undo
308 308
 		 * @param $crumbs
309 309
 		 * @return array
310 310
 		 */
311
-		public function lsx_sensei_course_breadcrumb_filter( $crumbs, $id = 0 ) {
312
-			if ( is_single() && ( is_singular( 'course' ) ) ) {
311
+		public function lsx_sensei_course_breadcrumb_filter($crumbs, $id = 0) {
312
+			if (is_single() && (is_singular('course'))) {
313 313
 				global $course;
314 314
 				$lesson          = get_the_title();
315
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
316
-				$course_page_url = get_permalink( $course_page_url );
315
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
316
+				$course_page_url = get_permalink($course_page_url);
317 317
 
318
-				if ( $lesson ) {
318
+				if ($lesson) {
319 319
 
320 320
 					$new_crumbs    = array();
321 321
 					$new_crumbs[0] = $crumbs[0];
322 322
 
323
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
323
+					if (function_exists('woocommerce_breadcrumb')) {
324 324
 						$new_crumbs[1] = array(
325
-							0 => __( 'All Courses', 'lsx' ),
325
+							0 => __('All Courses', 'lsx'),
326 326
 							1 => $course_page_url,
327 327
 						);
328 328
 						$new_crumbs[2] = array(
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 						);
331 331
 					} else {
332 332
 						$new_crumbs[1] = array(
333
-							'text' => __( 'All Courses', 'lsx' ),
333
+							'text' => __('All Courses', 'lsx'),
334 334
 							'url'  => $course_page_url,
335 335
 						);
336 336
 						$new_crumbs[2] = array(
@@ -348,34 +348,34 @@  discard block
 block discarded – undo
348 348
 		 * @param $crumbs
349 349
 		 * @return array
350 350
 		 */
351
-		public function lsx_sensei_lesson_breadcrumb_filter( $crumbs, $id = 0 ) {
352
-			if ( is_sensei() && is_single() && ( is_singular( 'lesson' ) ) ) {
351
+		public function lsx_sensei_lesson_breadcrumb_filter($crumbs, $id = 0) {
352
+			if (is_sensei() && is_single() && (is_singular('lesson'))) {
353 353
 				global $course;
354 354
 				$lesson          = get_the_title();
355
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
356
-				$course_page_url = get_permalink( $course_page_url );
355
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
356
+				$course_page_url = get_permalink($course_page_url);
357 357
 
358
-				if ( empty( $id ) ) {
358
+				if (empty($id)) {
359 359
 					$id = get_the_ID();
360 360
 				}
361 361
 
362
-				if ( 0 < intval( $id ) ) {
363
-					$course       = intval( get_post_meta( $id, '_lesson_course', true ) );
364
-					$course_id    = esc_url( get_permalink( $course ) );
365
-					$course_title = esc_html( get_the_title( $course ) );
366
-					if ( ! $course ) {
362
+				if (0 < intval($id)) {
363
+					$course       = intval(get_post_meta($id, '_lesson_course', true));
364
+					$course_id    = esc_url(get_permalink($course));
365
+					$course_title = esc_html(get_the_title($course));
366
+					if ( ! $course) {
367 367
 						return;
368 368
 					}
369 369
 				}
370 370
 
371
-				if ( $course_id ) {
371
+				if ($course_id) {
372 372
 
373 373
 					$new_crumbs    = array();
374 374
 					$new_crumbs[0] = $crumbs[0];
375 375
 
376
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
376
+					if (function_exists('woocommerce_breadcrumb')) {
377 377
 						$new_crumbs[1] = array(
378
-							0 => __( 'Courses', 'lsx' ),
378
+							0 => __('Courses', 'lsx'),
379 379
 							1 => $course_page_url,
380 380
 						);
381 381
 						$new_crumbs[2] = array(
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 						);
388 388
 					} else {
389 389
 						$new_crumbs[1] = array(
390
-							'text' => __( 'Courses', 'lsx' ),
390
+							'text' => __('Courses', 'lsx'),
391 391
 							'url'  => $course_page_url,
392 392
 						);
393 393
 						$new_crumbs[2] = array(
@@ -409,27 +409,27 @@  discard block
 block discarded – undo
409 409
 		 * @param $crumbs
410 410
 		 * @return array
411 411
 		 */
412
-		public function lsx_sensei_module_breadcrumb_filter( $crumbs, $id = 0 ) {
413
-			if ( ! empty( get_queried_object()->name ) ) {
414
-				$title = apply_filters( 'sensei_module_archive_title', get_queried_object()->name );
412
+		public function lsx_sensei_module_breadcrumb_filter($crumbs, $id = 0) {
413
+			if ( ! empty(get_queried_object()->name)) {
414
+				$title = apply_filters('sensei_module_archive_title', get_queried_object()->name);
415 415
 			}
416 416
 
417
-			if ( is_sensei() && is_tax() && is_archive() && ( ! empty( $title ) ) ) {
417
+			if (is_sensei() && is_tax() && is_archive() && ( ! empty($title))) {
418 418
 
419 419
 				$lesson          = get_the_archive_title();
420
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
421
-				$course_page_url = get_permalink( $course_page_url );
420
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
421
+				$course_page_url = get_permalink($course_page_url);
422 422
 
423
-				if ( empty( $id ) ) {
423
+				if (empty($id)) {
424 424
 					$id = get_the_ID();
425 425
 				}
426 426
 
427 427
 				$new_crumbs    = array();
428 428
 				$new_crumbs[0] = $crumbs[0];
429 429
 
430
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
430
+				if (function_exists('woocommerce_breadcrumb')) {
431 431
 					$new_crumbs[1] = array(
432
-						0 => __( 'Courses', 'lsx' ),
432
+						0 => __('Courses', 'lsx'),
433 433
 						1 => $course_page_url,
434 434
 					);
435 435
 					$new_crumbs[2] = array(
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
 					);
438 438
 				} else {
439 439
 					$new_crumbs[1] = array(
440
-						'text' => __( 'Courses', 'lsx' ),
440
+						'text' => __('Courses', 'lsx'),
441 441
 						'url'  => $course_page_url,
442 442
 					);
443 443
 					$new_crumbs[2] = array(
@@ -454,38 +454,38 @@  discard block
 block discarded – undo
454 454
 		 * @param $crumbs
455 455
 		 * @return array
456 456
 		 */
457
-		public function lsx_sensei_learner_breadcrumb_filter( $crumbs, $id = 0 ) {
457
+		public function lsx_sensei_learner_breadcrumb_filter($crumbs, $id = 0) {
458 458
 			global $wp_query;
459 459
 
460
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
460
+			if (isset($wp_query->query_vars['learner_profile'])) {
461 461
 				$is_profile = $wp_query->query_vars['learner_profile'];
462 462
 			} else {
463 463
 				$is_profile = false;
464 464
 			}
465 465
 
466
-			if ( is_sticky() && $is_profile ) {
466
+			if (is_sticky() && $is_profile) {
467 467
 
468
-				if ( empty( $id ) ) {
468
+				if (empty($id)) {
469 469
 					$id = get_the_ID();
470 470
 				}
471 471
 
472 472
 				$query_var    = $wp_query->query_vars['learner_profile'];
473
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
473
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
474 474
 				$learner_name = $learner_user->display_name;
475 475
 
476 476
 				$new_crumbs    = array();
477 477
 				$new_crumbs[0] = $crumbs[0];
478 478
 
479
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
479
+				if (function_exists('woocommerce_breadcrumb')) {
480 480
 					$new_crumbs[1] = array(
481
-						0 => __( 'Learners', 'lsx' ),
481
+						0 => __('Learners', 'lsx'),
482 482
 					);
483 483
 					$new_crumbs[2] = array(
484 484
 						0 => $learner_name,
485 485
 					);
486 486
 				} else {
487 487
 					$new_crumbs[1] = array(
488
-						'text' => __( 'Learners', 'lsx' ),
488
+						'text' => __('Learners', 'lsx'),
489 489
 					);
490 490
 					$new_crumbs[2] = array(
491 491
 						'text' => $learner_name,
@@ -501,36 +501,36 @@  discard block
 block discarded – undo
501 501
 		 * @param $crumbs
502 502
 		 * @return array
503 503
 		 */
504
-		public function lsx_sensei_messages_breadcrumb_filter( $crumbs, $id = 0 ) {
505
-			if ( is_archive() && ( is_post_type_archive( 'sensei_message' ) ) ) {
504
+		public function lsx_sensei_messages_breadcrumb_filter($crumbs, $id = 0) {
505
+			if (is_archive() && (is_post_type_archive('sensei_message'))) {
506 506
 
507
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
508
-				$course_page_url = get_permalink( $course_page_url );
507
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
508
+				$course_page_url = get_permalink($course_page_url);
509 509
 
510
-				if ( empty( $id ) ) {
510
+				if (empty($id)) {
511 511
 					$id = get_the_ID();
512 512
 				}
513 513
 
514
-				if ( $id ) {
514
+				if ($id) {
515 515
 
516 516
 					$new_crumbs    = array();
517 517
 					$new_crumbs[0] = $crumbs[0];
518 518
 
519
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
519
+					if (function_exists('woocommerce_breadcrumb')) {
520 520
 						$new_crumbs[1] = array(
521
-							0 => __( 'Courses', 'lsx' ),
521
+							0 => __('Courses', 'lsx'),
522 522
 							1 => $course_page_url,
523 523
 						);
524 524
 						$new_crumbs[2] = array(
525
-							0 => __( 'Messages', 'lsx' ),
525
+							0 => __('Messages', 'lsx'),
526 526
 						);
527 527
 					} else {
528 528
 						$new_crumbs[1] = array(
529
-							'text' => __( 'Courses', 'lsx' ),
529
+							'text' => __('Courses', 'lsx'),
530 530
 							'url'  => $course_page_url,
531 531
 						);
532 532
 						$new_crumbs[2] = array(
533
-							'text' => __( 'Messages', 'lsx' ),
533
+							'text' => __('Messages', 'lsx'),
534 534
 						);
535 535
 					}
536 536
 					$crumbs = $new_crumbs;
@@ -544,35 +544,35 @@  discard block
 block discarded – undo
544 544
 		 * @param $crumbs
545 545
 		 * @return array
546 546
 		 */
547
-		public function lsx_sensei_quiz_breadcrumb_filter( $crumbs, $id = 0 ) {
548
-			if ( ( is_single() && ( is_singular( 'quiz' ) ) ) ) {
547
+		public function lsx_sensei_quiz_breadcrumb_filter($crumbs, $id = 0) {
548
+			if ((is_single() && (is_singular('quiz')))) {
549 549
 				global $course;
550
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
551
-				$course_page_url = get_permalink( $course_page_url );
550
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
551
+				$course_page_url = get_permalink($course_page_url);
552 552
 				$lesson          = get_the_title();
553 553
 
554
-				if ( empty( $id ) ) {
554
+				if (empty($id)) {
555 555
 					$id = get_the_ID();
556 556
 				}
557 557
 
558
-				if ( 0 < intval( $id ) ) {
558
+				if (0 < intval($id)) {
559 559
 
560
-					$course       = intval( get_post_meta( $id, '_quiz_lesson', true ) );
561
-					$course_id    = esc_url( get_permalink( $course ) );
562
-					$course_title = esc_html( get_the_title( $course ) );
563
-					if ( ! $course ) {
560
+					$course       = intval(get_post_meta($id, '_quiz_lesson', true));
561
+					$course_id    = esc_url(get_permalink($course));
562
+					$course_title = esc_html(get_the_title($course));
563
+					if ( ! $course) {
564 564
 						return;
565 565
 					}
566 566
 				}
567 567
 
568
-				if ( $course_id ) {
568
+				if ($course_id) {
569 569
 
570 570
 					$new_crumbs    = array();
571 571
 					$new_crumbs[0] = $crumbs[0];
572 572
 
573
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
573
+					if (function_exists('woocommerce_breadcrumb')) {
574 574
 						$new_crumbs[1] = array(
575
-							0 => __( 'Courses', 'lsx' ),
575
+							0 => __('Courses', 'lsx'),
576 576
 							1 => $course_page_url,
577 577
 						);
578 578
 						$new_crumbs[2] = array(
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
 						);
585 585
 					} else {
586 586
 						$new_crumbs[1] = array(
587
-							'text' => __( 'Courses', 'lsx' ),
587
+							'text' => __('Courses', 'lsx'),
588 588
 							'url'  => $course_page_url,
589 589
 						);
590 590
 						$new_crumbs[2] = array(
@@ -607,36 +607,36 @@  discard block
 block discarded – undo
607 607
 		 * @param $crumbs
608 608
 		 * @return array
609 609
 		 */
610
-		public function lsx_sensei_results_breadcrumb_filter( $crumbs, $id = 0 ) {
611
-			if ( is_sticky() ) {
610
+		public function lsx_sensei_results_breadcrumb_filter($crumbs, $id = 0) {
611
+			if (is_sticky()) {
612 612
 				global $wp_query;
613 613
 				$course_id = '';
614
-				if ( isset( $wp_query->query_vars['course_results'] ) ) {
614
+				if (isset($wp_query->query_vars['course_results'])) {
615 615
 					$is_results = $wp_query->query_vars['course_results'];
616 616
 				}
617
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
618
-				$course_page_url = get_permalink( $course_page_url );
617
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
618
+				$course_page_url = get_permalink($course_page_url);
619 619
 
620
-				if ( empty( $id ) ) {
620
+				if (empty($id)) {
621 621
 					$id = get_the_ID();
622 622
 				}
623 623
 
624
-				if ( isset( $is_results ) ) {
625
-					$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
624
+				if (isset($is_results)) {
625
+					$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
626 626
 
627
-					$course_id    = esc_url( get_permalink( $course_for_results ) );
628
-					$course_title = esc_html( $course_for_results->post_title );
627
+					$course_id    = esc_url(get_permalink($course_for_results));
628
+					$course_title = esc_html($course_for_results->post_title);
629 629
 
630 630
 				}
631 631
 
632
-				if ( $course_id ) {
632
+				if ($course_id) {
633 633
 					$new_crumbs    = array();
634 634
 					$new_crumbs[0] = $crumbs[0];
635 635
 
636
-					if ( $is_results ) {
637
-						if ( function_exists( 'woocommerce_breadcrumb' ) ) {
636
+					if ($is_results) {
637
+						if (function_exists('woocommerce_breadcrumb')) {
638 638
 							$new_crumbs[1] = array(
639
-								0 => __( 'Courses', 'lsx' ),
639
+								0 => __('Courses', 'lsx'),
640 640
 								1 => $course_page_url,
641 641
 							);
642 642
 							$new_crumbs[2] = array(
@@ -644,15 +644,15 @@  discard block
 block discarded – undo
644 644
 								1 => $course_id,
645 645
 							);
646 646
 							$new_crumbs[3] = array(
647
-								0 => __( 'Results', 'lsx' ),
647
+								0 => __('Results', 'lsx'),
648 648
 							);
649 649
 						} else {
650 650
 							$new_crumbs[1] = array(
651
-								'text' => __( 'Courses', 'lsx' ),
651
+								'text' => __('Courses', 'lsx'),
652 652
 								'url'  => $course_page_url,
653 653
 							);
654 654
 							$new_crumbs[2] = array(
655
-								'text' => __( 'Results', 'lsx' ),
655
+								'text' => __('Results', 'lsx'),
656 656
 							);
657 657
 						}
658 658
 					}
@@ -668,9 +668,9 @@  discard block
 block discarded – undo
668 668
 		 * @param [type] $message_post_id
669 669
 		 * @return void
670 670
 		 */
671
-		public function lsx_sensei_view_message_button( $message_post_id ) {
672
-			$message_link = get_the_permalink( $message_post_id );
673
-			echo '<a href="' . esc_url_raw( $message_link ) . '" class="btn view-msg-btn">' . wp_kses_post( 'View Message', 'lsx' ) . '</a>';
671
+		public function lsx_sensei_view_message_button($message_post_id) {
672
+			$message_link = get_the_permalink($message_post_id);
673
+			echo '<a href="' . esc_url_raw($message_link) . '" class="btn view-msg-btn">' . wp_kses_post('View Message', 'lsx') . '</a>';
674 674
 		}
675 675
 
676 676
 		/**
@@ -679,9 +679,9 @@  discard block
 block discarded – undo
679 679
 		 * @param [type] $message_post_id
680 680
 		 * @return void
681 681
 		 */
682
-		public function lsx_sensei_back_message_button( $courses_link ) {
682
+		public function lsx_sensei_back_message_button($courses_link) {
683 683
 			$courses_link = '/my-courses/';
684
-			echo '<a href="' . esc_url_raw( $courses_link ) . '" class="btn border-btn my-courses-btn">' . wp_kses_post( 'My Courses', 'lsx' ) . '</a>';
684
+			echo '<a href="' . esc_url_raw($courses_link) . '" class="btn border-btn my-courses-btn">' . wp_kses_post('My Courses', 'lsx') . '</a>';
685 685
 		}
686 686
 	}
687 687
 
Please login to merge, or discard this patch.
includes/woocommerce/woocommerce.php 1 patch
Spacing   +204 added lines, -204 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage woocommerce
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_wc_support' ) ) :
13
+if ( ! function_exists('lsx_wc_support')) :
14 14
 
15 15
 	/**
16 16
 	 * WooCommerce support.
@@ -19,17 +19,17 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage woocommerce
20 20
 	 */
21 21
 	function lsx_wc_support() {
22
-		add_theme_support( 'woocommerce' );
23
-		add_theme_support( 'wc-product-gallery-zoom' );
24
-		add_theme_support( 'wc-product-gallery-lightbox' );
25
-		add_theme_support( 'wc-product-gallery-slider' );
22
+		add_theme_support('woocommerce');
23
+		add_theme_support('wc-product-gallery-zoom');
24
+		add_theme_support('wc-product-gallery-lightbox');
25
+		add_theme_support('wc-product-gallery-slider');
26 26
 	}
27 27
 
28
-	add_action( 'after_setup_theme', 'lsx_wc_support' );
28
+	add_action('after_setup_theme', 'lsx_wc_support');
29 29
 
30 30
 endif;
31 31
 
32
-if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) :
32
+if ( ! function_exists('lsx_wc_scripts_add_styles')) :
33 33
 
34 34
 	/**
35 35
 	 * WooCommerce enqueue styles.
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
 	 * @subpackage woocommerce
39 39
 	 */
40 40
 	function lsx_wc_scripts_add_styles() {
41
-		wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array( 'lsx_main' ), LSX_VERSION );
42
-		wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' );
41
+		wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array('lsx_main'), LSX_VERSION);
42
+		wp_style_add_data('woocommerce-lsx', 'rtl', 'replace');
43 43
 
44 44
 		// Remove WC Shipping Multiple Addresses specific script causing issues on checkout.
45
-		wp_dequeue_script( 'wcms-country-select' );
45
+		wp_dequeue_script('wcms-country-select');
46 46
 	}
47 47
 
48
-	add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' );
48
+	add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles');
49 49
 
50 50
 endif;
51 51
 
52
-if ( ! function_exists( 'lsx_wc_form_field_args' ) ) :
52
+if ( ! function_exists('lsx_wc_form_field_args')) :
53 53
 
54 54
 	/**
55 55
 	 * WooCommerce form fields.
@@ -57,17 +57,17 @@  discard block
 block discarded – undo
57 57
 	 * @package    lsx
58 58
 	 * @subpackage woocommerce
59 59
 	 */
60
-	function lsx_wc_form_field_args( $args, $key, $value ) {
60
+	function lsx_wc_form_field_args($args, $key, $value) {
61 61
 		$args['input_class'][] = 'form-control';
62 62
 
63 63
 		return $args;
64 64
 	}
65 65
 
66
-	add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 );
66
+	add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3);
67 67
 
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) :
70
+if ( ! function_exists('lsx_wc_theme_wrapper_start')) :
71 71
 
72 72
 	/**
73 73
 	 * WooCommerce wrapper start.
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
 	 */
78 78
 	function lsx_wc_theme_wrapper_start() {
79 79
 		lsx_content_wrap_before();
80
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
80
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
81 81
 		lsx_content_before();
82 82
 		echo '<main id="main" class="site-main" role="main">';
83 83
 		lsx_content_top();
84 84
 	}
85 85
 
86
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
87
-	add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' );
86
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
87
+	add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start');
88 88
 
89 89
 endif;
90 90
 
91
-if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) :
91
+if ( ! function_exists('lsx_wc_theme_wrapper_end')) :
92 92
 
93 93
 	/**
94 94
 	 * WooCommerce wrapper end.
@@ -104,12 +104,12 @@  discard block
 block discarded – undo
104 104
 		lsx_content_wrap_after();
105 105
 	}
106 106
 
107
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
108
-	add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' );
107
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
108
+	add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end');
109 109
 
110 110
 endif;
111 111
 
112
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) :
112
+if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) :
113 113
 
114 114
 	/**
115 115
 	 * Disable LSX Banners plugin in some WC pages.
@@ -117,21 +117,21 @@  discard block
 block discarded – undo
117 117
 	 * @package    lsx
118 118
 	 * @subpackage woocommerce
119 119
 	 */
120
-	function lsx_wc_disable_lsx_banner_plugin( $disabled ) {
120
+	function lsx_wc_disable_lsx_banner_plugin($disabled) {
121 121
 		global $post;
122 122
 
123
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
123
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
124 124
 			$disabled = true;
125 125
 		}
126 126
 
127 127
 		return $disabled;
128 128
 	}
129 129
 
130
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' );
130
+	add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin');
131 131
 
132 132
 endif;
133 133
 
134
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) :
134
+if ( ! function_exists('lsx_wc_disable_lsx_banner')) :
135 135
 
136 136
 	/**
137 137
 	 * Disable LSX Banners banner in some WC pages.
@@ -139,41 +139,41 @@  discard block
 block discarded – undo
139 139
 	 * @package    lsx
140 140
 	 * @subpackage woocommerce
141 141
 	 */
142
-	function lsx_wc_disable_lsx_banner( $disabled ) {
143
-		if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) {
142
+	function lsx_wc_disable_lsx_banner($disabled) {
143
+		if (is_shop() || is_product_category() || is_product_tag() || is_product()) {
144 144
 			$disabled = true;
145 145
 		}
146 146
 
147 147
 		return $disabled;
148 148
 	}
149 149
 
150
-	add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' );
150
+	add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner');
151 151
 
152 152
 endif;
153 153
 
154
-if ( ! function_exists( 'lsx_wc_categories_breadcrumb_filter' ) ) :
154
+if ( ! function_exists('lsx_wc_categories_breadcrumb_filter')) :
155 155
 	/**
156 156
 	 * Improves the category and taxonomy breadcrumbs for woocommerce.
157 157
 	 *
158 158
 	 * @package    lsx
159 159
 	 * @subpackage woocommerce
160 160
 	 */
161
-	function lsx_wc_categories_breadcrumb_filter( $crumbs ) {
161
+	function lsx_wc_categories_breadcrumb_filter($crumbs) {
162 162
 
163
-		$shop_page_url = get_permalink( wc_get_page_id( 'shop' ) );
163
+		$shop_page_url = get_permalink(wc_get_page_id('shop'));
164 164
 
165
-		if ( is_product_category() || is_product_tag() ) {
165
+		if (is_product_category() || is_product_tag()) {
166 166
 			$new_crumbs = array();
167 167
 			$new_crumbs[0] = $crumbs[0];
168 168
 
169
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
169
+			if (function_exists('woocommerce_breadcrumb')) {
170 170
 				$new_crumbs[1] = array(
171
-					0 => __( 'Shop', 'lsx' ),
171
+					0 => __('Shop', 'lsx'),
172 172
 					1 => $shop_page_url,
173 173
 				);
174 174
 			} else {
175 175
 				$new_crumbs[1] = array(
176
-					'text' => __( 'Shop', 'lsx' ),
176
+					'text' => __('Shop', 'lsx'),
177 177
 					'url'  => $shop_page_url,
178 178
 				);
179 179
 			}
@@ -184,12 +184,12 @@  discard block
 block discarded – undo
184 184
 		}
185 185
 		return $crumbs;
186 186
 	}
187
-	add_filter( 'wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1 );
188
-	add_filter( 'woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1 );
187
+	add_filter('wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1);
188
+	add_filter('woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1);
189 189
 
190 190
 endif;
191 191
 
192
-if ( ! function_exists( 'lsx_wc_add_cart' ) ) :
192
+if ( ! function_exists('lsx_wc_add_cart')) :
193 193
 
194 194
 	/**
195 195
 	 * Adds WC cart to the header.
@@ -197,34 +197,34 @@  discard block
 block discarded – undo
197 197
 	 * @package    lsx
198 198
 	 * @subpackage template-tags
199 199
 	 */
200
-	function lsx_wc_add_cart( $items, $args ) {
201
-		$cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' );
200
+	function lsx_wc_add_cart($items, $args) {
201
+		$cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary');
202 202
 
203 203
 		$cart_logged_out_position = $cart_menu_item_position . '_logged_out';
204 204
 
205
-		if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) {
206
-			$customizer_option  = get_theme_mod( 'lsx_header_wc_cart', false );
205
+		if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) {
206
+			$customizer_option = get_theme_mod('lsx_header_wc_cart', false);
207 207
 
208
-			if ( ! empty( $customizer_option ) ) {
208
+			if ( ! empty($customizer_option)) {
209 209
 				ob_start();
210
-				the_widget( 'WC_Widget_Cart', 'title=' );
210
+				the_widget('WC_Widget_Cart', 'title=');
211 211
 				$widget = ob_get_clean();
212 212
 
213
-				if ( is_cart() ) {
213
+				if (is_cart()) {
214 214
 					$class = 'current-menu-item';
215 215
 				} else {
216 216
 					$class = '';
217 217
 				}
218 218
 
219 219
 				$item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class;
220
-				$item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class );
220
+				$item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class);
221 221
 
222 222
 				$item = '<li class="' . $item_class . '">' .
223
-							'<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' .
224
-								'<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' .
223
+							'<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' .
224
+								'<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' .
225 225
 								/* Translators: %s: items quantity */
226
-								'<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' .
227
-								( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) .
226
+								'<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' .
227
+								( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') .
228 228
 							'</a>' .
229 229
 							'<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' .
230 230
 								'<li>' .
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 							'</ul>' .
234 234
 						'</li>';
235 235
 
236
-				if ( 'top-menu' === $args->theme_location ) {
236
+				if ('top-menu' === $args->theme_location) {
237 237
 					$items = $item . $items;
238 238
 				} else {
239 239
 					$items = $items . $item;
@@ -244,11 +244,11 @@  discard block
 block discarded – undo
244 244
 		return $items;
245 245
 	}
246 246
 
247
-	add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 );
247
+	add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2);
248 248
 
249 249
 endif;
250 250
 
251
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) :
251
+if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) :
252 252
 
253 253
 	/**
254 254
 	 * Change WC products widget wrapper (before).
@@ -256,16 +256,16 @@  discard block
 block discarded – undo
256 256
 	 * @package    lsx
257 257
 	 * @subpackage woocommerce
258 258
 	 */
259
-	function lsx_wc_products_widget_wrapper_before( $html ) {
259
+	function lsx_wc_products_widget_wrapper_before($html) {
260 260
 		$html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">';
261 261
 		return $html;
262 262
 	}
263 263
 
264
-	add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 );
264
+	add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15);
265 265
 
266 266
 endif;
267 267
 
268
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) :
268
+if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) :
269 269
 
270 270
 	/**
271 271
 	 * Change WC products widget wrapper (after).
@@ -273,16 +273,16 @@  discard block
 block discarded – undo
273 273
 	 * @package    lsx
274 274
 	 * @subpackage woocommerce
275 275
 	 */
276
-	function lsx_wc_products_widget_wrapper_after( $html ) {
276
+	function lsx_wc_products_widget_wrapper_after($html) {
277 277
 		$html = '</div>';
278 278
 		return $html;
279 279
 	}
280 280
 
281
-	add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 );
281
+	add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15);
282 282
 
283 283
 endif;
284 284
 
285
-if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) :
285
+if ( ! function_exists('lsx_wc_reviews_widget_override')) :
286 286
 
287 287
 	/**
288 288
 	 * Override WC ewviews widget.
@@ -291,18 +291,18 @@  discard block
 block discarded – undo
291 291
 	 * @subpackage woocommerce
292 292
 	 */
293 293
 	function lsx_wc_reviews_widget_override() {
294
-		if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) {
295
-			unregister_widget( 'WC_Widget_Recent_Reviews' );
294
+		if (class_exists('WC_Widget_Recent_Reviews')) {
295
+			unregister_widget('WC_Widget_Recent_Reviews');
296 296
 			require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php';
297
-			register_widget( 'LSX_WC_Widget_Recent_Reviews' );
297
+			register_widget('LSX_WC_Widget_Recent_Reviews');
298 298
 		}
299 299
 	}
300 300
 
301
-	add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 );
301
+	add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15);
302 302
 
303 303
 endif;
304 304
 
305
-if ( ! function_exists( 'lsx_wc_change_price_html' ) ) :
305
+if ( ! function_exists('lsx_wc_change_price_html')) :
306 306
 
307 307
 	/**
308 308
 	 * Change WC ZERO price to "free".
@@ -314,28 +314,28 @@  discard block
 block discarded – undo
314 314
 	 * @param $product WC_Product
315 315
 	 * @return string
316 316
 	 */
317
-	function lsx_wc_change_price_html( $price, $product ) {
318
-		if ( empty( $product->get_price() ) ) {
319
-			if ( $product->is_on_sale() && $product->get_regular_price() ) {
320
-				$regular_price = wc_get_price_to_display( $product, array(
317
+	function lsx_wc_change_price_html($price, $product) {
318
+		if (empty($product->get_price())) {
319
+			if ($product->is_on_sale() && $product->get_regular_price()) {
320
+				$regular_price = wc_get_price_to_display($product, array(
321 321
 					'qty' => 1,
322 322
 					'price' => $product->get_regular_price(),
323
-				) );
323
+				));
324 324
 
325
-				$price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) );
325
+				$price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx'));
326 326
 			} else {
327
-				$price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>';
327
+				$price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>';
328 328
 			}
329 329
 		}
330 330
 
331 331
 		return $price;
332 332
 	}
333 333
 
334
-	add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 );
334
+	add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2);
335 335
 
336 336
 endif;
337 337
 
338
-if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) :
338
+if ( ! function_exists('lsx_wc_cart_link_fragment')) :
339 339
 
340 340
 	/**
341 341
 	 * Cart Fragments.
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 	 * @package    lsx
345 345
 	 * @subpackage woocommerce
346 346
 	 */
347
-	function lsx_wc_cart_link_fragment( $fragments ) {
347
+	function lsx_wc_cart_link_fragment($fragments) {
348 348
 		global $woocommerce;
349 349
 
350 350
 		ob_start();
@@ -355,8 +355,8 @@  discard block
 block discarded – undo
355 355
 		lsx_wc_items_counter();
356 356
 		$items_counter = ob_get_clean();
357 357
 
358
-		if ( ! empty( $items_counter ) ) {
359
-			$fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] );
358
+		if ( ! empty($items_counter)) {
359
+			$fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']);
360 360
 		}
361 361
 
362 362
 		return $fragments;
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
 
365 365
 endif;
366 366
 
367
-if ( ! function_exists( 'lsx_wc_cart_link' ) ) :
367
+if ( ! function_exists('lsx_wc_cart_link')) :
368 368
 
369 369
 	/**
370 370
 	 * Cart Link.
@@ -375,14 +375,14 @@  discard block
 block discarded – undo
375 375
 	 */
376 376
 	function lsx_wc_cart_link() {
377 377
 		?>
378
-			<a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">
379
-				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
378
+			<a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">
379
+				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span>
380 380
 
381 381
 				<?php /* Translators: %s: items quantity */ ?>
382
-				<span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span>
382
+				<span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span>
383 383
 
384
-				<?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?>
385
-					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span>
384
+				<?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?>
385
+					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span>
386 386
 				<?php endif; ?>
387 387
 			</a>
388 388
 		<?php
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 
391 391
 endif;
392 392
 
393
-if ( ! function_exists( 'lsx_wc_items_counter' ) ) :
393
+if ( ! function_exists('lsx_wc_items_counter')) :
394 394
 
395 395
 	/**
396 396
 	 * Add car item hidden items counter.
@@ -402,21 +402,21 @@  discard block
 block discarded – undo
402 402
 		$count = (int) WC()->cart->get_cart_contents_count();
403 403
 		$items_counter = '';
404 404
 
405
-		if ( ! empty( $count ) ) {
405
+		if ( ! empty($count)) {
406 406
 			$count -= 3;
407 407
 
408
-			if ( 1 === $count ) {
409
-				$items_counter = esc_html__( '1 other item in cart', 'lsx' );
410
-			} elseif ( $count > 1 ) {
408
+			if (1 === $count) {
409
+				$items_counter = esc_html__('1 other item in cart', 'lsx');
410
+			} elseif ($count > 1) {
411 411
 				/* Translators: %s: items counter */
412
-				$items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count );
412
+				$items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count);
413 413
 			}
414 414
 		}
415
-		$cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url();
416
-		if ( ! empty( $items_counter ) ) :
415
+		$cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url();
416
+		if ( ! empty($items_counter)) :
417 417
 			?>
418 418
 				<li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;">
419
-					<a href="<?php echo esc_url( $cart_url ); ?>"><?php echo esc_html( $items_counter ); ?></a>
419
+					<a href="<?php echo esc_url($cart_url); ?>"><?php echo esc_html($items_counter); ?></a>
420 420
 				</li>
421 421
 			<?php
422 422
 		endif;
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 
425 425
 endif;
426 426
 
427
-if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) :
427
+if ( ! function_exists('lsx_wc_loop_shop_per_page')) :
428 428
 
429 429
 	/**
430 430
 	 * Changes the number of products to display on shop.
@@ -432,16 +432,16 @@  discard block
 block discarded – undo
432 432
 	 * @package    lsx
433 433
 	 * @subpackage woocommerce
434 434
 	 */
435
-	function lsx_wc_loop_shop_per_page( $items ) {
435
+	function lsx_wc_loop_shop_per_page($items) {
436 436
 		$items = 20;
437 437
 		return $items;
438 438
 	}
439 439
 
440
-	add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 );
440
+	add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20);
441 441
 
442 442
 endif;
443 443
 
444
-if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) :
444
+if ( ! function_exists('lsx_wc_add_to_cart_message_html')) :
445 445
 
446 446
 	/**
447 447
 	 * Changes the "added to cart" message HTML.
@@ -449,39 +449,39 @@  discard block
 block discarded – undo
449 449
 	 * @package    lsx
450 450
 	 * @subpackage woocommerce
451 451
 	 */
452
-	function lsx_wc_add_to_cart_message_html( $message, $products ) {
452
+	function lsx_wc_add_to_cart_message_html($message, $products) {
453 453
 		$message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>';
454 454
 		return $message;
455 455
 	}
456 456
 
457
-	add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 );
457
+	add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2);
458 458
 
459 459
 endif;
460 460
 
461
-if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
462
-	add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
461
+if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
462
+	add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
463 463
 } else {
464
-	add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
464
+	add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
465 465
 }
466 466
 
467
-remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
467
+remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
468 468
 
469
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
470
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
471
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
472
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
473
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
469
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
470
+add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
471
+add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
472
+add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
473
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
474 474
 
475
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
476
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
475
+remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
476
+remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
477 477
 
478
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
479
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
480
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
481
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
482
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
478
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
479
+add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
480
+add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
481
+add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
482
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
483 483
 
484
-if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) :
484
+if ( ! function_exists('lsx_wc_sorting_wrapper')) :
485 485
 
486 486
 	/**
487 487
 	 * Sorting wrapper.
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
 
496 496
 endif;
497 497
 
498
-if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) :
498
+if ( ! function_exists('lsx_wc_sorting_wrapper_close')) :
499 499
 
500 500
 	/**
501 501
 	 * Sorting wrapper close.
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
 
510 510
 endif;
511 511
 
512
-if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) :
512
+if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) :
513 513
 
514 514
 	/**
515 515
 	 * Product columns wrapper close.
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
 
524 524
 endif;
525 525
 
526
-if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) :
526
+if ( ! function_exists('lsx_wc_woocommerce_pagination')) :
527 527
 
528 528
 	/**
529 529
 	 * LSX WooCommerce Pagination
@@ -535,14 +535,14 @@  discard block
 block discarded – undo
535 535
 	 * @subpackage woocommerce
536 536
 	 */
537 537
 	function lsx_wc_woocommerce_pagination() {
538
-		if ( woocommerce_products_will_display() ) {
538
+		if (woocommerce_products_will_display()) {
539 539
 			woocommerce_pagination();
540 540
 		}
541 541
 	}
542 542
 
543 543
 endif;
544 544
 
545
-if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) :
545
+if ( ! function_exists('lsx_customizer_wc_controls')) :
546 546
 
547 547
 	/**
548 548
 	 * Returns an array of the core panel.
@@ -552,10 +552,10 @@  discard block
 block discarded – undo
552 552
 	 *
553 553
 	 * @return $lsx_controls array()
554 554
 	 */
555
-	function lsx_customizer_wc_controls( $lsx_controls ) {
555
+	function lsx_customizer_wc_controls($lsx_controls) {
556 556
 		$lsx_controls['panels']['lsx-wc'] = array(
557
-			'title'       => esc_html__( 'WooCommerce', 'lsx' ),
558
-			'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ),
557
+			'title'       => esc_html__('WooCommerce', 'lsx'),
558
+			'description' => esc_html__('Change the WooCommerce settings.', 'lsx'),
559 559
 			'priority'    => 23,
560 560
 		);
561 561
 
@@ -564,8 +564,8 @@  discard block
 block discarded – undo
564 564
 		 */
565 565
 
566 566
 		$lsx_controls['sections']['lsx-wc-global'] = array(
567
-			'title'       => esc_html__( 'Global', 'lsx' ),
568
-			'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ),
567
+			'title'       => esc_html__('Global', 'lsx'),
568
+			'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'),
569 569
 			'panel'       => 'lsx-wc',
570 570
 			'priority'    => 1,
571 571
 		);
@@ -576,8 +576,8 @@  discard block
 block discarded – undo
576 576
 		);
577 577
 
578 578
 		$lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array(
579
-			'label'       => esc_html__( 'Footer Bar', 'lsx' ),
580
-			'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ),
579
+			'label'       => esc_html__('Footer Bar', 'lsx'),
580
+			'description' => esc_html__('Enable the mobile footer bar.', 'lsx'),
581 581
 			'section'     => 'lsx-wc-global',
582 582
 			'type'        => 'checkbox',
583 583
 			'priority'    => 1,
@@ -588,8 +588,8 @@  discard block
 block discarded – undo
588 588
 		 */
589 589
 
590 590
 		$lsx_controls['sections']['lsx-wc-cart'] = array(
591
-			'title'       => esc_html__( 'Cart', 'lsx' ),
592
-			'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ),
591
+			'title'       => esc_html__('Cart', 'lsx'),
592
+			'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'),
593 593
 			'panel'       => 'lsx-wc',
594 594
 			'priority'    => 2,
595 595
 		);
@@ -600,8 +600,8 @@  discard block
 block discarded – undo
600 600
 		);
601 601
 
602 602
 		$lsx_controls['fields']['lsx_header_wc_cart'] = array(
603
-			'label'       => esc_html__( 'Menu Item', 'lsx' ),
604
-			'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ),
603
+			'label'       => esc_html__('Menu Item', 'lsx'),
604
+			'description' => esc_html__('Enable the cart menu item.', 'lsx'),
605 605
 			'section'     => 'lsx-wc-cart',
606 606
 			'type'        => 'checkbox',
607 607
 			'priority'    => 1,
@@ -610,11 +610,11 @@  discard block
 block discarded – undo
610 610
 		return $lsx_controls;
611 611
 	}
612 612
 
613
-	add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' );
613
+	add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls');
614 614
 
615 615
 endif;
616 616
 
617
-if ( ! function_exists( 'lsx_wc_global_header_title' ) ) :
617
+if ( ! function_exists('lsx_wc_global_header_title')) :
618 618
 
619 619
 	/**
620 620
 	 * Move the shop title into the global header
@@ -622,21 +622,21 @@  discard block
 block discarded – undo
622 622
 	 * @package    lsx
623 623
 	 * @subpackage the-events-calendar
624 624
 	 */
625
-	function lsx_wc_global_header_title( $title ) {
625
+	function lsx_wc_global_header_title($title) {
626 626
 
627
-		if ( is_woocommerce() && is_shop() ) {
627
+		if (is_woocommerce() && is_shop()) {
628 628
 
629
-			$title = __( 'Shop', 'lsx' );
629
+			$title = __('Shop', 'lsx');
630 630
 		}
631 631
 
632 632
 		return $title;
633 633
 	}
634
-	add_filter( 'lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1 );
634
+	add_filter('lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1);
635 635
 
636 636
 endif;
637 637
 
638 638
 
639
-if ( ! function_exists( 'lsx_wc_footer_bar' ) ) :
639
+if ( ! function_exists('lsx_wc_footer_bar')) :
640 640
 
641 641
 	/**
642 642
 	 * Display WC footer bar.
@@ -645,47 +645,47 @@  discard block
 block discarded – undo
645 645
 	 * @subpackage woocommerce
646 646
 	 */
647 647
 	function lsx_wc_footer_bar() {
648
-		$cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url();
649
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) :
648
+		$cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url();
649
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) :
650 650
 			?>
651 651
 			<div class="lsx-wc-footer-bar">
652
-				<form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form">
652
+				<form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form">
653 653
 					<fieldset>
654
-						<legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend>
655
-						<input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control">
654
+						<legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend>
655
+						<input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control">
656 656
 					</fieldset>
657 657
 				</form>
658 658
 
659 659
 				<ul class="lsx-wc-footer-bar-items">
660 660
 					<li class="lsx-wc-footer-bar-item">
661
-						<a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link">
661
+						<a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link">
662 662
 							<i class="fa fa-home" aria-hidden="true"></i>
663
-							<span><?php esc_html_e( 'Home', 'lsx' ); ?></span>
663
+							<span><?php esc_html_e('Home', 'lsx'); ?></span>
664 664
 						</a>
665 665
 					</li>
666 666
 
667 667
 					<li class="lsx-wc-footer-bar-item">
668
-						<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link">
668
+						<a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link">
669 669
 							<i class="fa fa-user" aria-hidden="true"></i>
670
-							<span><?php esc_html_e( 'Account', 'lsx' ); ?></span>
670
+							<span><?php esc_html_e('Account', 'lsx'); ?></span>
671 671
 						</a>
672 672
 					</li>
673 673
 
674 674
 					<li class="lsx-wc-footer-bar-item">
675 675
 						<a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle">
676 676
 							<i class="fa fa-search" aria-hidden="true"></i>
677
-							<span><?php esc_html_e( 'Search', 'lsx' ); ?></span>
677
+							<span><?php esc_html_e('Search', 'lsx'); ?></span>
678 678
 						</a>
679 679
 					</li>
680 680
 
681 681
 					<li class="lsx-wc-footer-bar-item">
682
-						<a href="<?php echo esc_url( $cart_url ); ?>" class="lsx-wc-footer-bar-link">
682
+						<a href="<?php echo esc_url($cart_url); ?>" class="lsx-wc-footer-bar-link">
683 683
 							<i class="fa fa-shopping-basket" aria-hidden="true"></i>
684 684
 							<?php $count = WC()->cart->get_cart_contents_count(); ?>
685
-							<?php if ( ! empty( $count ) ) : ?>
686
-								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span>
685
+							<?php if ( ! empty($count)) : ?>
686
+								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span>
687 687
 							<?php endif; ?>
688
-							<span><?php esc_html_e( 'Cart', 'lsx' ); ?></span>
688
+							<span><?php esc_html_e('Cart', 'lsx'); ?></span>
689 689
 						</a>
690 690
 					</li>
691 691
 				</ul>
@@ -694,11 +694,11 @@  discard block
 block discarded – undo
694 694
 		endif;
695 695
 	}
696 696
 
697
-	add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 );
697
+	add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15);
698 698
 
699 699
 endif;
700 700
 
701
-if ( ! function_exists( 'lsx_wc_body_class' ) ) :
701
+if ( ! function_exists('lsx_wc_body_class')) :
702 702
 
703 703
 	/**
704 704
 	 * Changes body class.
@@ -706,25 +706,25 @@  discard block
 block discarded – undo
706 706
 	 * @package    lsx
707 707
 	 * @subpackage woocommerce
708 708
 	 */
709
-	function lsx_wc_body_class( $classes ) {
709
+	function lsx_wc_body_class($classes) {
710 710
 		global $post;
711 711
 
712
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
712
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
713 713
 			$classes[] = 'woocommerce-page woocommerce-wishlist';
714 714
 		}
715 715
 
716
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) {
716
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) {
717 717
 			$classes[] = 'lsx-wc-has-footer-bar';
718 718
 		}
719 719
 
720 720
 		return $classes;
721 721
 	}
722 722
 
723
-	add_filter( 'body_class', 'lsx_wc_body_class', 2999 );
723
+	add_filter('body_class', 'lsx_wc_body_class', 2999);
724 724
 
725 725
 endif;
726 726
 
727
-if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) :
727
+if ( ! function_exists('lsx_wc_downloadable_products')) :
728 728
 
729 729
 	/**
730 730
 	 * Changes downloads "download" button text.
@@ -732,19 +732,19 @@  discard block
 block discarded – undo
732 732
 	 * @package    lsx
733 733
 	 * @subpackage woocommerce
734 734
 	 */
735
-	function lsx_wc_downloadable_products( $downloads ) {
736
-		foreach ( $downloads as $i => $download ) {
737
-			$downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' );
735
+	function lsx_wc_downloadable_products($downloads) {
736
+		foreach ($downloads as $i => $download) {
737
+			$downloads[$i]['download_name'] = esc_html__('Download', 'lsx');
738 738
 		}
739 739
 
740 740
 		return $downloads;
741 741
 	}
742 742
 
743
-	add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 );
743
+	add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999);
744 744
 
745 745
 endif;
746 746
 
747
-if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) :
747
+if ( ! function_exists('lsx_wc_move_bundle_products')) :
748 748
 
749 749
 	/**
750 750
 	 * WooCommerce - Move the bundle products to a tab.
@@ -752,46 +752,46 @@  discard block
 block discarded – undo
752 752
 	 * @package    lsx
753 753
 	 * @subpackage woocommerce
754 754
 	 */
755
-	function lsx_wc_move_bundle_products( $tabs ) {
755
+	function lsx_wc_move_bundle_products($tabs) {
756 756
 		global $product, $post;
757 757
 
758
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
758
+		if (method_exists($product, 'get_bundled_items')) {
759 759
 			$bundled_items = $product->get_bundled_items();
760 760
 
761
-			if ( ! empty( $bundled_items ) ) {
761
+			if ( ! empty($bundled_items)) {
762 762
 				$tabs['bundled_products'] = array(
763
-					'title'    => __( 'Included Products', 'lsx' ),
763
+					'title'    => __('Included Products', 'lsx'),
764 764
 					'priority' => 10,
765 765
 					'callback' => 'lsx_wc_bundle_products',
766 766
 				);
767 767
 			}
768 768
 		}
769 769
 
770
-		if ( isset( $tabs['description'] ) ) {
770
+		if (isset($tabs['description'])) {
771 771
 			$tabs['description']['priority'] = 5;
772 772
 		}
773 773
 
774
-		if ( isset( $tabs['reviews'] ) ) {
774
+		if (isset($tabs['reviews'])) {
775 775
 			$tabs['reviews']['priority'] = 15;
776 776
 		}
777 777
 
778
-		if ( isset( $tabs['product_enquiry'] ) ) {
778
+		if (isset($tabs['product_enquiry'])) {
779 779
 			$tabs['product_enquiry']['priority'] = 20;
780 780
 		}
781 781
 
782 782
 		return $tabs;
783 783
 	}
784 784
 
785
-	add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 );
785
+	add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50);
786 786
 
787 787
 endif;
788 788
 
789
-if ( ! function_exists( 'lsx_wc_bundle_products' ) ) :
789
+if ( ! function_exists('lsx_wc_bundle_products')) :
790 790
 
791 791
 	function lsx_wc_bundle_products() {
792 792
 		global $product, $post;
793 793
 
794
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
794
+		if (method_exists($product, 'get_bundled_items')) {
795 795
 			$bundled_items = $product->get_bundled_items();
796 796
 
797 797
 			// do_action( 'woocommerce_before_bundled_items', $product );
@@ -807,16 +807,16 @@  discard block
 block discarded – undo
807 807
 			// $this->widget_start( $args, $instance );
808 808
 
809 809
 			// @codingStandardsIgnoreLine
810
-			echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );
810
+			echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">');
811 811
 
812
-			foreach ( $bundled_items as $bundled_item ) {
813
-				$product = wc_get_product( $bundled_item->item_data['product_id'] );
814
-				wc_get_template( 'content-widget-product.php' );
812
+			foreach ($bundled_items as $bundled_item) {
813
+				$product = wc_get_product($bundled_item->item_data['product_id']);
814
+				wc_get_template('content-widget-product.php');
815 815
 				$product = $product_original;
816 816
 			}
817 817
 
818 818
 			// @codingStandardsIgnoreLine
819
-			echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' );
819
+			echo apply_filters('woocommerce_after_widget_product_list', '</ul>');
820 820
 		}
821 821
 
822 822
 		// $this->widget_end( $args );
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
 endif;
826 826
 
827 827
 
828
-if ( ! function_exists( 'lsx_wc_product_searchform' ) ) :
828
+if ( ! function_exists('lsx_wc_product_searchform')) :
829 829
 	/**
830 830
 	 * woo_custom_product_searchform
831 831
 	 *
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
 	 * @since       1.0
834 834
 	 * @return      void
835 835
 	 */
836
-	function lsx_wc_product_searchform( $form ) {
836
+	function lsx_wc_product_searchform($form) {
837 837
 
838 838
 		$form = '
839 839
 			<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>">
@@ -854,42 +854,42 @@  discard block
 block discarded – undo
854 854
 
855 855
 	}
856 856
 endif;
857
-add_filter( 'get_product_search_form' , 'lsx_wc_product_searchform', 10, 1 );
857
+add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1);
858 858
 
859 859
 	/**
860 860
 	 * Output the pagination.
861 861
 	*/
862 862
 function woocommerce_pagination() {
863
-	if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) {
863
+	if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) {
864 864
 		return;
865 865
 	}
866 866
 	$args = array(
867
-		'total'   => wc_get_loop_prop( 'total_pages' ),
868
-		'current' => wc_get_loop_prop( 'current_page' ),
867
+		'total'   => wc_get_loop_prop('total_pages'),
868
+		'current' => wc_get_loop_prop('current_page'),
869 869
 	);
870 870
 
871
-	if ( wc_get_loop_prop( 'is_shortcode' ) ) {
872
-		$args['base']   = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) );
871
+	if (wc_get_loop_prop('is_shortcode')) {
872
+		$args['base']   = esc_url_raw(add_query_arg('product-page', '%#%', false));
873 873
 		$args['format'] = '?product-page = %#%';
874 874
 	} else {
875
-		$args['base']   = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) );
875
+		$args['base']   = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false))));
876 876
 		$args['format'] = '';
877 877
 	}
878 878
 
879
-	echo wp_kses_post( '<div class="lsx-pagination-wrapper">' );
880
-	$template = wc_get_template_html( 'loop/pagination.php', $args );
881
-	$template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template );
882
-	echo wp_kses_post( $template );
883
-	echo wp_kses_post( '</div>' );
879
+	echo wp_kses_post('<div class="lsx-pagination-wrapper">');
880
+	$template = wc_get_template_html('loop/pagination.php', $args);
881
+	$template = str_replace('woocommerce-pagination', 'lsx-pagination', $template);
882
+	echo wp_kses_post($template);
883
+	echo wp_kses_post('</div>');
884 884
 }
885 885
 
886
-function lsx_wc_pagination_args( $args ) {
887
-	$args['prev_text'] = '<span class="meta-nav">&larr;</span> ' . esc_html__( 'Previous', 'lsx' );
888
-	$args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">&rarr;</span>';
889
-	$args['type']	   = 'plain';
886
+function lsx_wc_pagination_args($args) {
887
+	$args['prev_text'] = '<span class="meta-nav">&larr;</span> ' . esc_html__('Previous', 'lsx');
888
+	$args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">&rarr;</span>';
889
+	$args['type'] = 'plain';
890 890
 	return $args;
891 891
 }
892
-add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args',10 ,1 );
892
+add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1);
893 893
 
894 894
 
895 895
 /**
@@ -899,19 +899,19 @@  discard block
 block discarded – undo
899 899
  *
900 900
  * @return array
901 901
  */
902
-function lsx_wc_product_widget_template( $located, $template_name ) {
903
-	if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) {
902
+function lsx_wc_product_widget_template($located, $template_name) {
903
+	if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) {
904 904
 
905 905
 		$new_location = get_stylesheet_directory() . '/partials/' . $template_name;
906
-		if ( file_exists( $new_location ) ) {
906
+		if (file_exists($new_location)) {
907 907
 			$located = $new_location;
908 908
 		} else {
909 909
 			$new_location = get_parent_theme_file_path() . '/partials/' . $template_name;
910
-			if ( file_exists( $new_location ) ) {
910
+			if (file_exists($new_location)) {
911 911
 				$located = $new_location;
912 912
 			}
913 913
 		}
914 914
 	}
915 915
 	return $located;
916 916
 }
917
-add_filter( 'wc_get_template', 'lsx_wc_product_widget_template',90 ,2 );
917
+add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2);
Please login to merge, or discard this patch.