Passed
Push — master ( 78e53c...c37e4c )
by Fernando
02:25
created
partials/content.php 1 patch
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -9,37 +9,37 @@  discard block
 block discarded – undo
9 9
 <?php lsx_entry_before(); ?>
10 10
 
11 11
 <?php
12
-	$no_thumb_post_formats = array( 'audio', 'gallery', 'image', 'link', 'quote', 'video' );
13
-	$has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats );
12
+	$no_thumb_post_formats = array('audio', 'gallery', 'image', 'link', 'quote', 'video');
13
+	$has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats);
14 14
 
15
-	if ( $has_thumb ) {
15
+	if ($has_thumb) {
16 16
 		$thumb_class = 'has-thumb';
17 17
 	} else {
18 18
 		$thumb_class = 'no-thumb';
19 19
 	}
20 20
 
21
-	$blog_layout = apply_filters( 'lsx_blog_layout', 'default' );
21
+	$blog_layout = apply_filters('lsx_blog_layout', 'default');
22 22
 
23 23
 	$image_class = '';
24 24
 
25
-	$thumbnail_id = get_post_thumbnail_id( get_the_ID() );
26
-	$image_arr    = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' );
25
+	$thumbnail_id = get_post_thumbnail_id(get_the_ID());
26
+	$image_arr    = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single');
27 27
 
28
-	if ( is_array( $image_arr ) ) {
28
+	if (is_array($image_arr)) {
29 29
 		$image_src = $image_arr[0];
30 30
 	}
31 31
 ?>
32 32
 
33
-<article id="post-<?php the_ID(); ?>" <?php post_class( array( 'lsx-slot', $thumb_class ) ); ?>>
33
+<article id="post-<?php the_ID(); ?>" <?php post_class(array('lsx-slot', $thumb_class)); ?>>
34 34
 	<?php lsx_entry_top(); ?>
35 35
 
36 36
 	<div class="entry-layout">
37 37
 		<div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>">
38 38
 			<header class="entry-header">
39
-				<?php if ( $has_thumb ) : ?>
40
-					<div class="entry-image <?php echo esc_attr( $image_class ); ?>">
39
+				<?php if ($has_thumb) : ?>
40
+					<div class="entry-image <?php echo esc_attr($image_class); ?>">
41 41
 						<a class="thumbnail" href="<?php the_permalink(); ?>">
42
-							<?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?>
42
+							<?php lsx_thumbnail('lsx-thumbnail-single'); ?>
43 43
 						</a>
44 44
 					</div>
45 45
 				<?php endif; ?>
@@ -51,53 +51,53 @@  discard block
 block discarded – undo
51 51
 				<?php
52 52
 					$format = get_post_format();
53 53
 
54
-					if ( false === $format ) {
54
+					if (false === $format) {
55 55
 						$format = 'standard';
56
-						$show_on_front = get_option( 'show_on_front', 'posts' );
56
+						$show_on_front = get_option('show_on_front', 'posts');
57 57
 
58
-						if ( 'page' === $show_on_front ) {
59
-							$archive_link = get_permalink( get_option( 'page_for_posts' ) );
58
+						if ('page' === $show_on_front) {
59
+							$archive_link = get_permalink(get_option('page_for_posts'));
60 60
 						} else {
61 61
 							$archive_link = home_url();
62 62
 						}
63 63
 					} else {
64
-						$archive_link = get_post_format_link( $format );
64
+						$archive_link = get_post_format_link($format);
65 65
 					}
66 66
 
67
-					$format = lsx_translate_format_to_fontawesome( $format );
67
+					$format = lsx_translate_format_to_fontawesome($format);
68 68
 				?>
69 69
 
70 70
 				<h1 class="entry-title">
71
-					<?php if ( has_post_thumbnail() ) : ?>
72
-						<a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a>
71
+					<?php if (has_post_thumbnail()) : ?>
72
+						<a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a>
73 73
 					<?php else : ?>
74
-						<a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a>
74
+						<a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a>
75 75
 					<?php endif; ?>
76 76
 
77
-					<?php if ( has_post_format( array( 'link' ) ) ) : ?>
78
-						<a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a>
77
+					<?php if (has_post_format(array('link'))) : ?>
78
+						<a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a>
79 79
 					<?php else : ?>
80 80
 						<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
81 81
 					<?php endif; ?>
82 82
 
83
-					<?php if ( is_sticky() ) : ?>
84
-						<span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span>
83
+					<?php if (is_sticky()) : ?>
84
+						<span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span>
85 85
 					<?php endif; ?>
86 86
 				</h1>
87 87
 			</header><!-- .entry-header -->
88 88
 
89
-			<?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?>
89
+			<?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?>
90 90
 
91
-				<?php if ( ! has_post_format( array( 'video', 'audio', 'quote', 'link' ) ) && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?>
91
+				<?php if ( ! has_post_format(array('video', 'audio', 'quote', 'link')) && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?>
92 92
 
93 93
 					<div class="entry-summary">
94 94
 						<?php the_excerpt(); ?>
95
-						<?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<p class="edit-link">', '</p>' ); ?>
95
+						<?php edit_post_link(esc_html__('Edit', 'lsx'), '<p class="edit-link">', '</p>'); ?>
96 96
 					</div><!-- .entry-summary -->
97 97
 
98
-				<?php elseif ( has_post_format( array( 'link' ) ) ) : ?>
98
+				<?php elseif (has_post_format(array('link'))) : ?>
99 99
 
100
-				<?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?>
100
+				<?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?>
101 101
 
102 102
 					<div class="entry-content">
103 103
 						<?php the_content(); ?>
@@ -109,12 +109,12 @@  discard block
 block discarded – undo
109 109
 						<?php
110 110
 							the_content();
111 111
 
112
-							wp_link_pages( array(
112
+							wp_link_pages(array(
113 113
 								'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
114 114
 								'after'       => '</div></div>',
115 115
 								'link_before' => '<span>',
116 116
 								'link_after'  => '</span>',
117
-							) );
117
+							));
118 118
 						?>
119 119
 					</div><!-- .entry-content -->
120 120
 
@@ -131,23 +131,23 @@  discard block
 block discarded – undo
131 131
 
132 132
 				<?php lsx_content_post_tags(); ?>
133 133
 
134
-				<?php if ( comments_open() && ! empty( $comments_number ) ) : ?>
134
+				<?php if (comments_open() && ! empty($comments_number)) : ?>
135 135
 					<div class="post-comments">
136 136
 						<a href="<?php the_permalink(); ?>#comments">
137 137
 							<?php
138
-								if ( '1' === $comments_number ) {
139
-									echo esc_html_x( 'One Comment', 'content.php', 'lsx' );
138
+								if ('1' === $comments_number) {
139
+									echo esc_html_x('One Comment', 'content.php', 'lsx');
140 140
 								} else {
141 141
 									printf(
142 142
 										/* Translators: %s: number of comments */
143
-										esc_html( _nx(
143
+										esc_html(_nx(
144 144
 											'%s Comment',
145 145
 											'%s Comments',
146 146
 											$comments_number,
147 147
 											'content.php',
148 148
 											'lsx'
149
-										) ),
150
-										esc_html( number_format_i18n( $comments_number ) )
149
+										)),
150
+										esc_html(number_format_i18n($comments_number))
151 151
 									);
152 152
 								}
153 153
 							?>
@@ -157,11 +157,11 @@  discard block
 block discarded – undo
157 157
 			</div>
158 158
 		</div>
159 159
 
160
-		<?php if ( has_post_thumbnail() ) : ?>
160
+		<?php if (has_post_thumbnail()) : ?>
161 161
 
162 162
 			<div class="entry-image hidden-xs">
163
-				<a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);">
164
-					<?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?>
163
+				<a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);">
164
+					<?php lsx_thumbnail('lsx-thumbnail-single'); ?>
165 165
 				</a>
166 166
 			</div>
167 167
 
Please login to merge, or discard this patch.
includes/customizer.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage customizer
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_customizer_core_controls' ) ) :
13
+if ( ! function_exists('lsx_customizer_core_controls')) :
14 14
 
15 15
 	/**
16 16
 	 * Returns an array of the core panel.
@@ -20,10 +20,10 @@  discard block
 block discarded – undo
20 20
 	 *
21 21
 	 * @return $lsx_controls array()
22 22
 	 */
23
-	function lsx_customizer_core_controls( $lsx_controls ) {
23
+	function lsx_customizer_core_controls($lsx_controls) {
24 24
 		$lsx_controls['sections']['lsx-core'] = array(
25
-			'title'       => esc_html__( 'Core Settings', 'lsx' ),
26
-			'description' => esc_html__( 'Change the core settings.', 'lsx' ),
25
+			'title'       => esc_html__('Core Settings', 'lsx'),
26
+			'description' => esc_html__('Change the core settings.', 'lsx'),
27 27
 			'priority'    => 21,
28 28
 		);
29 29
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 		);
35 35
 
36 36
 		$lsx_controls['fields']['lsx_lazyload_status'] = array(
37
-			'label'   => esc_html__( 'Lazy Loading Images', 'lsx' ),
37
+			'label'   => esc_html__('Lazy Loading Images', 'lsx'),
38 38
 			'section' => 'lsx-core',
39 39
 			'type'    => 'checkbox',
40 40
 		);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 		);
47 47
 
48 48
 		$lsx_controls['fields']['lsx_preloader_content_status'] = array(
49
-			'label'   => esc_html__( 'Preloader Content', 'lsx' ),
49
+			'label'   => esc_html__('Preloader Content', 'lsx'),
50 50
 			'section' => 'lsx-core',
51 51
 			'type'    => 'checkbox',
52 52
 		);
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
 
57 57
 endif;
58 58
 
59
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' );
59
+add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls');
60 60
 
61
-if ( ! function_exists( 'lsx_customizer_layout_controls' ) ) :
61
+if ( ! function_exists('lsx_customizer_layout_controls')) :
62 62
 
63 63
 	/**
64 64
 	 * Returns an array of the layout panel.
@@ -68,21 +68,21 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @return $lsx_controls array()
70 70
 	 */
71
-	function lsx_customizer_layout_controls( $lsx_controls ) {
71
+	function lsx_customizer_layout_controls($lsx_controls) {
72 72
 		$lsx_controls['sections']['lsx-layout'] = array(
73
-			'title'       => esc_html__( 'Layout', 'lsx' ),
74
-			'description' => esc_html__( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ),
73
+			'title'       => esc_html__('Layout', 'lsx'),
74
+			'description' => esc_html__('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'),
75 75
 			'priority'    => 22,
76 76
 		);
77 77
 
78
-		$lsx_controls['settings']['lsx_header_layout']  = array(
78
+		$lsx_controls['settings']['lsx_header_layout'] = array(
79 79
 			'default'   => 'inline',
80 80
 			'type'      => 'theme_mod',
81 81
 			'transport' => 'postMessage',
82 82
 		);
83 83
 
84 84
 		$lsx_controls['fields']['lsx_header_layout'] = array(
85
-			'label'   => esc_html__( 'Header','lsx' ),
85
+			'label'   => esc_html__('Header', 'lsx'),
86 86
 			'section' => 'lsx-layout',
87 87
 			'control' => 'LSX_Customize_Header_Layout_Control',
88 88
 			'choices' => array(
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 		);
100 100
 
101 101
 		$lsx_controls['fields']['lsx_layout'] = array(
102
-			'label'   => esc_html__( 'Body', 'lsx' ),
102
+			'label'   => esc_html__('Body', 'lsx'),
103 103
 			'section' => 'lsx-layout',
104 104
 			'control' => 'LSX_Customize_Layout_Control',
105 105
 			'choices' => array(
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 		);
117 117
 
118 118
 		$lsx_controls['fields']['lsx_header_fixed'] = array(
119
-			'label'   => esc_html__( 'Fixed Header', 'lsx' ),
119
+			'label'   => esc_html__('Fixed Header', 'lsx'),
120 120
 			'section' => 'lsx-layout',
121 121
 			'type'    => 'checkbox',
122 122
 		);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 		);
129 129
 
130 130
 		$lsx_controls['fields']['lsx_header_search'] = array(
131
-			'label'   => esc_html__( 'Search Box in Header', 'lsx' ),
131
+			'label'   => esc_html__('Search Box in Header', 'lsx'),
132 132
 			'section' => 'lsx-layout',
133 133
 			'type'    => 'checkbox',
134 134
 		);
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
 		$lsx_controls['selective_refresh']['lsx_header_search'] = array(
137 137
 			'selector'          => '#lsx-header-search-css',
138 138
 			'render_callback'   => function() {
139
-				$search_form = get_theme_mod( 'lsx_header_search' );
139
+				$search_form = get_theme_mod('lsx_header_search');
140 140
 
141
-				if ( false !== $search_form ) {
141
+				if (false !== $search_form) {
142 142
 					echo 'body #searchform { display: block; }';
143 143
 				} else {
144 144
 					echo 'body #searchform { display: none; }';
@@ -151,9 +151,9 @@  discard block
 block discarded – undo
151 151
 
152 152
 endif;
153 153
 
154
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_layout_controls' );
154
+add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls');
155 155
 
156
-if ( ! function_exists( 'lsx_customizer_font_controls' ) ) :
156
+if ( ! function_exists('lsx_customizer_font_controls')) :
157 157
 
158 158
 	/**
159 159
 	 * Returns an array of the font controls.
@@ -163,21 +163,21 @@  discard block
 block discarded – undo
163 163
 	 *
164 164
 	 * @return $lsx_controls array()
165 165
 	 */
166
-	function lsx_customizer_font_controls( $lsx_controls ) {
166
+	function lsx_customizer_font_controls($lsx_controls) {
167 167
 		$data_fonts_file = get_template_directory() . '/assets/jsons/lsx-fonts.json';
168
-		$data_fonts = lsx_file_get_contents( $data_fonts_file );
169
-		$data_fonts = apply_filters( 'lsx_fonts_json', $data_fonts );
168
+		$data_fonts = lsx_file_get_contents($data_fonts_file);
169
+		$data_fonts = apply_filters('lsx_fonts_json', $data_fonts);
170 170
 
171 171
 		$data_fonts = '{' . $data_fonts . '}';
172
-		$data_fonts = json_decode( $data_fonts, true );
172
+		$data_fonts = json_decode($data_fonts, true);
173 173
 
174 174
 		$lsx_controls['sections']['lsx-font'] = array(
175
-			'title'       => esc_html__( 'Font', 'lsx' ),
176
-			'description' => esc_html__( 'Change the fonts sitewide.', 'lsx' ),
175
+			'title'       => esc_html__('Font', 'lsx'),
176
+			'description' => esc_html__('Change the fonts sitewide.', 'lsx'),
177 177
 			'priority'    => 41,
178 178
 		);
179 179
 
180
-		$lsx_controls['settings']['lsx_font']  = array(
180
+		$lsx_controls['settings']['lsx_font'] = array(
181 181
 			'default'   => 'lora_noto_sans',
182 182
 			'type'      => 'theme_mod',
183 183
 			'transport' => 'refresh',
@@ -197,9 +197,9 @@  discard block
 block discarded – undo
197 197
 
198 198
 endif;
199 199
 
200
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_font_controls' );
200
+add_filter('lsx_customizer_controls', 'lsx_customizer_font_controls');
201 201
 
202
-if ( ! function_exists( 'lsx_get_customizer_controls' ) ) :
202
+if ( ! function_exists('lsx_get_customizer_controls')) :
203 203
 
204 204
 	/**
205 205
 	 * Returns an array of $controls for the customizer class to generate.
@@ -211,10 +211,10 @@  discard block
 block discarded – undo
211 211
 	 */
212 212
 	function lsx_get_customizer_controls() {
213 213
 		$lsx_controls = array();
214
-		$lsx_controls = apply_filters( 'lsx_customizer_controls', $lsx_controls );
214
+		$lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls);
215 215
 		return $lsx_controls;
216 216
 	}
217 217
 
218 218
 endif;
219 219
 
220
-$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() );
220
+$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls());
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,21 +5,21 @@
 block discarded – undo
5 5
  * @package lsx
6 6
  */
7 7
 
8
-if ( ! defined( 'ABSPATH' ) ) {
8
+if ( ! defined('ABSPATH')) {
9 9
 	exit;
10 10
 }
11 11
 
12
-define( 'LSX_VERSION', '2.1.0' );
12
+define('LSX_VERSION', '2.1.0');
13 13
 
14
-if ( class_exists( 'WooCommerce' ) ) {
14
+if (class_exists('WooCommerce')) {
15 15
 	require get_template_directory() . '/includes/plugins/woocommerce.php';
16 16
 }
17 17
 
18
-if ( class_exists( 'Tribe__Events__Main' ) ) {
18
+if (class_exists('Tribe__Events__Main')) {
19 19
 	require get_template_directory() . '/includes/plugins/the-events-calendar.php';
20 20
 }
21 21
 
22
-if ( class_exists( 'Sensei_WC' ) ) {
22
+if (class_exists('Sensei_WC')) {
23 23
 	require get_template_directory() . '/includes/plugins/sensei.php';
24 24
 }
25 25
 
Please login to merge, or discard this patch.
woocommerce/product-searchform.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
  * @version 2.5.0
17 17
  */
18 18
 
19
-if ( ! defined( 'ABSPATH' ) ) {
19
+if ( ! defined('ABSPATH')) {
20 20
 	exit;
21 21
 }
22 22
 
23 23
 ?>
24
-<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
24
+<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url(home_url('/')); ?>">
25 25
 	<div class="input-group">
26
-		<input type="search" value="<?php if ( is_search() ) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e( 'Search', 'lsx' ); ?> <?php echo esc_attr( get_bloginfo( 'name' ) ); ?>">
27
-		<label class="hide"><?php esc_attr_e( 'Search for:', 'lsx' ); ?></label>
26
+		<input type="search" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e('Search', 'lsx'); ?> <?php echo esc_attr(get_bloginfo('name')); ?>">
27
+		<label class="hide"><?php esc_attr_e('Search for:', 'lsx'); ?></label>
28 28
 
29 29
 		<span class="input-group-btn">
30 30
 			<button type="submit" class="search-submit btn btn-default"><span class="fa fa-search"></span></button>
Please login to merge, or discard this patch.
page-templates/template-wc-thank-you.php 1 patch
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -20,46 +20,46 @@  discard block
 block discarded – undo
20 20
 
21 21
 		<?php lsx_content_top(); ?>
22 22
 
23
-		<?php if ( have_posts() ) : ?>
23
+		<?php if (have_posts()) : ?>
24 24
 
25
-			<?php while ( have_posts() ) : the_post(); ?>
25
+			<?php while (have_posts()) : the_post(); ?>
26 26
 
27 27
 				<?php
28
-					$order_key = isset( $_GET['key'] ) ? wc_clean( $_GET['key'] ) : '';
29
-					$order_id  = absint( $wp->query_vars['order-received'] );
30
-					$order = wc_get_order( $order_id );
28
+					$order_key = isset($_GET['key']) ? wc_clean($_GET['key']) : '';
29
+					$order_id  = absint($wp->query_vars['order-received']);
30
+					$order = wc_get_order($order_id);
31 31
 				?>
32 32
 
33
-				<?php if ( $order && $order->get_id() === $order_id && $order->get_order_key() === $order_key ) : ?>
33
+				<?php if ($order && $order->get_id() === $order_id && $order->get_order_key() === $order_key) : ?>
34 34
 
35 35
 					<?php // @codingStandardsIgnoreStart ?>
36 36
 
37
-					<div class="alert alert-success"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', esc_html__( 'Thank you. Your order has been received.', 'lsx' ), $order ); ?></div>
37
+					<div class="alert alert-success"><?php echo apply_filters('woocommerce_thankyou_order_received_text', esc_html__('Thank you. Your order has been received.', 'lsx'), $order); ?></div>
38 38
 
39 39
 					<div class="row">
40 40
 						<div class="col-xs-12 col-sm-6">
41
-							<h2><?php esc_html_e( 'Order Details', 'lsx' ); ?></h2>
41
+							<h2><?php esc_html_e('Order Details', 'lsx'); ?></h2>
42 42
 
43 43
 							<table class="table">
44 44
 								<tbody>
45 45
 									<tr>
46
-										<th><?php esc_html_e( 'Order:', 'lsx' ); ?></th>
46
+										<th><?php esc_html_e('Order:', 'lsx'); ?></th>
47 47
 										<td><?php echo $order->get_order_number(); ?></td>
48 48
 									</tr>
49 49
 
50 50
 									<tr>
51
-										<th><?php esc_html_e( 'Date:', 'lsx' ); ?></th>
52
-										<td><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></td>
51
+										<th><?php esc_html_e('Date:', 'lsx'); ?></th>
52
+										<td><?php echo date_i18n(get_option('date_format'), strtotime($order->order_date)); ?></td>
53 53
 									</tr>
54 54
 
55 55
 									<tr>
56
-										<th><?php esc_html_e( 'Total:', 'lsx' ); ?></th>
56
+										<th><?php esc_html_e('Total:', 'lsx'); ?></th>
57 57
 										<td><?php echo $order->get_formatted_order_total(); ?></td>
58 58
 									</tr>
59 59
 
60
-									<?php if ( $order->payment_method_title ) : ?>
60
+									<?php if ($order->payment_method_title) : ?>
61 61
 										<tr>
62
-											<th><?php esc_html_e( 'Payment method:', 'lsx' ); ?></th>
62
+											<th><?php esc_html_e('Payment method:', 'lsx'); ?></th>
63 63
 											<td><?php echo $order->payment_method_title; ?></td>
64 64
 										</tr>
65 65
 									<?php endif; ?>
@@ -68,48 +68,48 @@  discard block
 block discarded – undo
68 68
 
69 69
 							<?php // do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
70 70
 
71
-							<h2><?php esc_html_e( 'Customer details', 'lsx' ); ?></h2>
71
+							<h2><?php esc_html_e('Customer details', 'lsx'); ?></h2>
72 72
 
73 73
 							<dl class="customer_details">
74 74
 								<?php
75
-									if ( $order->billing_email ) echo '<dt>' . esc_html__( 'Email:', 'lsx' ) . '</dt><dd>' . $order->billing_email . '</dd>';
76
-									if ( $order->billing_phone ) echo '<dt>' . esc_html__( 'Telephone:', 'lsx' ) . '</dt><dd>' . $order->billing_phone . '</dd>';
75
+									if ($order->billing_email) echo '<dt>' . esc_html__('Email:', 'lsx') . '</dt><dd>' . $order->billing_email . '</dd>';
76
+									if ($order->billing_phone) echo '<dt>' . esc_html__('Telephone:', 'lsx') . '</dt><dd>' . $order->billing_phone . '</dd>';
77 77
 
78 78
 									// Additional customer details hook
79
-									do_action( 'woocommerce_order_details_after_customer_details', $order );
79
+									do_action('woocommerce_order_details_after_customer_details', $order);
80 80
 								?>
81 81
 							</dl>
82 82
 
83
-							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?>
83
+							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option('woocommerce_calc_shipping') !== 'no') : ?>
84 84
 
85 85
 								<div class="row">
86 86
 									<div class="col-xs-12 col-sm-6">
87 87
 
88 88
 							<?php endif; ?>
89 89
 
90
-										<h3><?php esc_html_e( 'Billing Address', 'lsx' ); ?></h3>
90
+										<h3><?php esc_html_e('Billing Address', 'lsx'); ?></h3>
91 91
 
92 92
 										<address>
93 93
 											<?php
94
-												if ( ! $order->get_formatted_billing_address() ) {
95
-													esc_html_e( 'N/A', 'lsx' );
94
+												if ( ! $order->get_formatted_billing_address()) {
95
+													esc_html_e('N/A', 'lsx');
96 96
 												} else {
97 97
 													echo $order->get_formatted_billing_address();
98 98
 												}
99 99
 											?>
100 100
 										</address>
101 101
 
102
-							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?>
102
+							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option('woocommerce_calc_shipping') !== 'no') : ?>
103 103
 
104 104
 									</div>
105 105
 
106 106
 									<div class="col-xs-12 col-sm-6">
107
-										<h3><?php esc_html_e( 'Shipping Address', 'lsx' ); ?></h3>
107
+										<h3><?php esc_html_e('Shipping Address', 'lsx'); ?></h3>
108 108
 
109 109
 										<address>
110 110
 											<?php
111
-												if ( ! $order->get_formatted_shipping_address() ) {
112
-													esc_html_e( 'N/A', 'lsx' );
111
+												if ( ! $order->get_formatted_shipping_address()) {
112
+													esc_html_e('N/A', 'lsx');
113 113
 												} else {
114 114
 													echo $order->get_formatted_shipping_address();
115 115
 												}
@@ -122,68 +122,68 @@  discard block
 block discarded – undo
122 122
 						</div>
123 123
 
124 124
 						<div class="col-xs-12 col-sm-6">
125
-							<h2><?php esc_html_e( 'Products details', 'lsx' ); ?></h2>
125
+							<h2><?php esc_html_e('Products details', 'lsx'); ?></h2>
126 126
 
127 127
 							<table class="table">
128 128
 								<thead>
129 129
 									<tr>
130
-										<th><?php esc_html_e( 'Product', 'lsx' ); ?></th>
131
-										<th><?php esc_html_e( 'Total', 'lsx' ); ?></th>
130
+										<th><?php esc_html_e('Product', 'lsx'); ?></th>
131
+										<th><?php esc_html_e('Total', 'lsx'); ?></th>
132 132
 									</tr>
133 133
 								</thead>
134 134
 
135 135
 								<tbody>
136 136
 									<?php
137
-										if ( sizeof( $order->get_items() ) > 0 ) :
138
-											foreach( $order->get_items() as $item ) :
139
-												$_product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item );
140
-												$item_meta = new WC_Order_Item_Meta( $item['item_meta'], $_product );
137
+										if (sizeof($order->get_items()) > 0) :
138
+											foreach ($order->get_items() as $item) :
139
+												$_product = apply_filters('woocommerce_order_item_product', $order->get_product_from_item($item), $item);
140
+												$item_meta = new WC_Order_Item_Meta($item['item_meta'], $_product);
141 141
 											?>
142 142
 
143 143
 											<tr>
144 144
 												<td>
145 145
 													<?php
146
-														if ( $_product && ! $_product->is_visible() ) {
147
-															echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item );
146
+														if ($_product && ! $_product->is_visible()) {
147
+															echo apply_filters('woocommerce_order_item_name', $item['name'], $item);
148 148
 														} else {
149
-															echo apply_filters( 'woocommerce_order_item_name', sprintf( '<a href="%s">%s</a>', get_permalink( $item['product_id'] ), $item['name'] ), $item );
149
+															echo apply_filters('woocommerce_order_item_name', sprintf('<a href="%s">%s</a>', get_permalink($item['product_id']), $item['name']), $item);
150 150
 														}
151 151
 
152
-														echo apply_filters( 'woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf( '&times; %s', $item['qty'] ) . '</strong>', $item );
152
+														echo apply_filters('woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf('&times; %s', $item['qty']) . '</strong>', $item);
153 153
 
154 154
 														ob_start();
155 155
 														$item_meta->display();
156 156
 														$_item_meta = ob_get_clean();
157 157
 
158
-														if ( ! empty( $_item_meta ) ) {
158
+														if ( ! empty($_item_meta)) {
159 159
 															echo $_item_meta;
160 160
 														} else {
161 161
 															echo '<br>';
162 162
 														}
163 163
 
164
-														if ( $_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted() ) {
165
-															$download_files = $order->get_item_downloads( $item );
164
+														if ($_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted()) {
165
+															$download_files = $order->get_item_downloads($item);
166 166
 															$i = 0;
167 167
 															$links = array();
168 168
 
169
-															if ( empty( $download_files ) ) {
169
+															if (empty($download_files)) {
170 170
 																$download_files = $_product->get_files();
171 171
 															}
172 172
 
173
-															foreach ( $download_files as $download_id => $file ) {
173
+															foreach ($download_files as $download_id => $file) {
174 174
 																$i++;
175 175
 
176
-																if ( $i > 1 ) {
176
+																if ($i > 1) {
177 177
 																	echo '<br>';
178 178
 																}
179 179
 
180
-																if ( ! empty( $_item_meta ) ) {
180
+																if ( ! empty($_item_meta)) {
181 181
 																	echo '<span style="margin-top: -2.4rem; display: block;">';
182 182
 																} else {
183 183
 																	echo '<span>';
184 184
 																}
185 185
 
186
-																echo '<a href="' . esc_url( $file['download_url'] ? $file['download_url'] : $file['file'] ) . '">' . sprintf( esc_html__( 'Download file%s', 'lsx' ), ( count( $download_files ) > 1 ? ' ' . $i . ': ' : ': ' ) ) . esc_html( $file['name'] ) . '</a>';
186
+																echo '<a href="' . esc_url($file['download_url'] ? $file['download_url'] : $file['file']) . '">' . sprintf(esc_html__('Download file%s', 'lsx'), (count($download_files) > 1 ? ' ' . $i . ': ' : ': ')) . esc_html($file['name']) . '</a>';
187 187
 																echo '</span>';
188 188
 															}
189 189
 														}
@@ -191,15 +191,15 @@  discard block
 block discarded – undo
191 191
 												</td>
192 192
 
193 193
 												<td>
194
-													<?php echo $order->get_formatted_line_subtotal( $item ); ?>
194
+													<?php echo $order->get_formatted_line_subtotal($item); ?>
195 195
 												</td>
196 196
 											</tr>
197 197
 
198 198
 											<?php
199
-												if ( $order->has_status( array( 'completed', 'processing' ) ) && ( $purchase_note = get_post_meta( $_product->id, '_purchase_note', true ) ) ) {
199
+												if ($order->has_status(array('completed', 'processing')) && ($purchase_note = get_post_meta($_product->id, '_purchase_note', true))) {
200 200
 													?>
201 201
 													<tr class="product-purchase-note">
202
-														<td colspan="3"><?php echo wpautop( do_shortcode( wp_kses_post( $purchase_note ) ) ); ?></td>
202
+														<td colspan="3"><?php echo wpautop(do_shortcode(wp_kses_post($purchase_note))); ?></td>
203 203
 													</tr>
204 204
 													<?php
205 205
 												}
@@ -212,8 +212,8 @@  discard block
 block discarded – undo
212 212
 
213 213
 								<tfoot>
214 214
 									<?php
215
-										if ( $totals = $order->get_order_item_totals() ) :
216
-											foreach ( $totals as $total ) :
215
+										if ($totals = $order->get_order_item_totals()) :
216
+											foreach ($totals as $total) :
217 217
 												?>
218 218
 												<tr>
219 219
 													<th scope="row"><?php echo $total['label']; ?></th>
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 
233 233
 				<?php else : ?>
234 234
 
235
-					<div class="alert alert-danger"><?php esc_html_e( 'Invalid order.', 'lsx' ); ?></div>
235
+					<div class="alert alert-danger"><?php esc_html_e('Invalid order.', 'lsx'); ?></div>
236 236
 
237 237
 				<?php endif; ?>
238 238
 
Please login to merge, or discard this patch.
includes/plugins/the-events-calendar.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage the-events-calendar
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_tec_scripts_add_styles' ) ) :
13
+if ( ! function_exists('lsx_tec_scripts_add_styles')) :
14 14
 
15 15
 	/**
16 16
 	 * The Events Calendar enqueue styles.
@@ -19,15 +19,15 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage the-events-calendar
20 20
 	 */
21 21
 	function lsx_tec_scripts_add_styles() {
22
-		wp_enqueue_style( 'the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar.css', array( 'lsx_main' ), LSX_VERSION );
23
-		wp_style_add_data( 'the-events-calendar-lsx', 'rtl', 'replace' );
22
+		wp_enqueue_style('the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar.css', array('lsx_main'), LSX_VERSION);
23
+		wp_style_add_data('the-events-calendar-lsx', 'rtl', 'replace');
24 24
 	}
25 25
 
26
-	add_action( 'wp_enqueue_scripts', 'lsx_tec_scripts_add_styles' );
26
+	add_action('wp_enqueue_scripts', 'lsx_tec_scripts_add_styles');
27 27
 
28 28
 endif;
29 29
 
30
-if ( ! function_exists( 'lsx_tec_theme_wrapper_start' ) ) :
30
+if ( ! function_exists('lsx_tec_theme_wrapper_start')) :
31 31
 
32 32
 	/**
33 33
 	 * The Events Calendar wrapper start.
@@ -37,17 +37,17 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	function lsx_tec_theme_wrapper_start() {
39 39
 		lsx_content_wrap_before();
40
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
40
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
41 41
 		lsx_content_before();
42 42
 		echo '<main id="main" class="site-main" role="main">';
43 43
 		lsx_content_top();
44 44
 	}
45 45
 
46
-	add_action( 'tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9 );
46
+	add_action('tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9);
47 47
 
48 48
 endif;
49 49
 
50
-if ( ! function_exists( 'lsx_tec_theme_wrapper_end' ) ) :
50
+if ( ! function_exists('lsx_tec_theme_wrapper_end')) :
51 51
 
52 52
 	/**
53 53
 	 * The Events Calendar wrapper end.
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 		lsx_content_wrap_after();
64 64
 	}
65 65
 
66
-	add_action( 'tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11 );
66
+	add_action('tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11);
67 67
 
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_tec_disable_lsx_banner' ) ) :
70
+if ( ! function_exists('lsx_tec_disable_lsx_banner')) :
71 71
 
72 72
 	/**
73 73
 	 * Disable LSX Banners in some pages.
@@ -75,20 +75,20 @@  discard block
 block discarded – undo
75 75
 	 * @package    lsx
76 76
 	 * @subpackage the-events-calendar
77 77
 	 */
78
-	function lsx_tec_disable_lsx_banner( $disabled ) {
78
+	function lsx_tec_disable_lsx_banner($disabled) {
79 79
 		global $current_screen;
80 80
 
81
-		$post_types = apply_filters( 'tribe_is_post_type_screen_post_types', Tribe__Main::get_post_types() );
81
+		$post_types = apply_filters('tribe_is_post_type_screen_post_types', Tribe__Main::get_post_types());
82 82
 
83
-		if ( ! in_array( $current_screen->post_type, $post_types ) ) {
83
+		if ( ! in_array($current_screen->post_type, $post_types)) {
84 84
 			$disabled = true;
85 85
 		}
86 86
 
87
-		if ( is_null( $id ) && false !== strpos( $current_screen->id, 'tribe' ) ) {
87
+		if (is_null($id) && false !== strpos($current_screen->id, 'tribe')) {
88 88
 			$disabled = true;
89 89
 		}
90 90
 
91
-		if ( is_single() && tribe_is_event() ) {
91
+		if (is_single() && tribe_is_event()) {
92 92
 			$disabled = true;
93 93
 		}
94 94
 
@@ -96,10 +96,10 @@  discard block
 block discarded – undo
96 96
 	}
97 97
 
98 98
 	// LSX
99
-	add_filter( 'lsx_global_header_disable', 'lsx_tec_disable_lsx_banner' );
99
+	add_filter('lsx_global_header_disable', 'lsx_tec_disable_lsx_banner');
100 100
 	// LSX Banners - Plugin, Placeholders
101
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_tec_disable_lsx_banner' );
101
+	add_filter('lsx_banner_plugin_disable', 'lsx_tec_disable_lsx_banner');
102 102
 	// LSX Banners - Banner
103
-	add_filter( 'lsx_banner_disable', 'lsx_tec_disable_lsx_banner' );
103
+	add_filter('lsx_banner_disable', 'lsx_tec_disable_lsx_banner');
104 104
 
105 105
 endif;
Please login to merge, or discard this patch.
includes/plugins/sensei.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  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 13
 global $woothemes_sensei;
14 14
 
15
-if ( ! function_exists( 'lsx_sensei_scripts_add_styles' ) ) :
15
+if ( ! function_exists('lsx_sensei_scripts_add_styles')) :
16 16
 
17 17
 	/**
18 18
 	 * Sensei enqueue styles.
@@ -21,15 +21,15 @@  discard block
 block discarded – undo
21 21
 	 * @subpackage sensei
22 22
 	 */
23 23
 	function lsx_sensei_scripts_add_styles() {
24
-		wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei.css', array( 'lsx_main' ), LSX_VERSION );
25
-		wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' );
24
+		wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei.css', array('lsx_main'), LSX_VERSION);
25
+		wp_style_add_data('sensei-lsx', 'rtl', 'replace');
26 26
 	}
27 27
 
28
-	add_action( 'wp_enqueue_scripts', 'lsx_sensei_scripts_add_styles' );
28
+	add_action('wp_enqueue_scripts', 'lsx_sensei_scripts_add_styles');
29 29
 
30 30
 endif;
31 31
 
32
-if ( ! function_exists( 'lsx_sensei_theme_wrapper_start' ) ) :
32
+if ( ! function_exists('lsx_sensei_theme_wrapper_start')) :
33 33
 
34 34
 	/**
35 35
 	 * Sensei wrapper start.
@@ -39,18 +39,18 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	function lsx_sensei_theme_wrapper_start() {
41 41
 		lsx_content_wrap_before();
42
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
42
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
43 43
 		lsx_content_before();
44 44
 		echo '<main id="main" class="site-main" role="main">';
45 45
 		lsx_content_top();
46 46
 	}
47 47
 
48
-	remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 );
49
-	add_action( 'sensei_before_main_content', 'lsx_sensei_theme_wrapper_start' );
48
+	remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10);
49
+	add_action('sensei_before_main_content', 'lsx_sensei_theme_wrapper_start');
50 50
 
51 51
 endif;
52 52
 
53
-if ( ! function_exists( 'lsx_sensei_theme_wrapper_end' ) ) :
53
+if ( ! function_exists('lsx_sensei_theme_wrapper_end')) :
54 54
 
55 55
 	/**
56 56
 	 * Sensei wrapper end.
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 		lsx_content_wrap_after();
67 67
 	}
68 68
 
69
-	remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 );
70
-	add_action( 'sensei_after_main_content', 'lsx_sensei_theme_wrapper_end' );
69
+	remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10);
70
+	add_action('sensei_after_main_content', 'lsx_sensei_theme_wrapper_end');
71 71
 
72 72
 endif;
73 73
 
74
-if ( ! function_exists( 'lsx_sensei_disable_lsx_banner' ) ) :
74
+if ( ! function_exists('lsx_sensei_disable_lsx_banner')) :
75 75
 
76 76
 	/**
77 77
 	 * Disable LSX Banners in some Sensei pages.
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	 * @package    lsx
80 80
 	 * @subpackage sensei
81 81
 	 */
82
-	function lsx_sensei_disable_lsx_banner( $disabled ) {
83
-		if ( is_sensei() ) {
82
+	function lsx_sensei_disable_lsx_banner($disabled) {
83
+		if (is_sensei()) {
84 84
 			$disabled = true;
85 85
 		}
86 86
 
@@ -88,15 +88,15 @@  discard block
 block discarded – undo
88 88
 	}
89 89
 
90 90
 	// LSX
91
-	add_filter( 'lsx_global_header_disable', 'lsx_sensei_disable_lsx_banner' );
91
+	add_filter('lsx_global_header_disable', 'lsx_sensei_disable_lsx_banner');
92 92
 	// LSX Banners - Plugin, Placeholders
93
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_sensei_disable_lsx_banner' );
93
+	add_filter('lsx_banner_plugin_disable', 'lsx_sensei_disable_lsx_banner');
94 94
 	// LSX Banners - Banner
95
-	add_filter( 'lsx_banner_disable', 'lsx_sensei_disable_lsx_banner' );
95
+	add_filter('lsx_banner_disable', 'lsx_sensei_disable_lsx_banner');
96 96
 
97 97
 endif;
98 98
 
99
-if ( ! function_exists( 'lsx_sensei_archive_title' ) ) :
99
+if ( ! function_exists('lsx_sensei_archive_title')) :
100 100
 
101 101
 	/**
102 102
 	 * Filters the archive title.
@@ -104,17 +104,17 @@  discard block
 block discarded – undo
104 104
 	 * @package    lsx
105 105
 	 * @subpackage sensei
106 106
 	 */
107
-	function lsx_sensei_archive_title( $html ) {
108
-		$html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html );
107
+	function lsx_sensei_archive_title($html) {
108
+		$html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html);
109 109
 		return $html;
110 110
 	}
111 111
 
112
-	add_filter( 'course_archive_title', 'lsx_sensei_archive_title', 10, 1 );
113
-	add_filter( 'sensei_lesson_archive_title', 'lsx_sensei_archive_title', 10, 1 );
112
+	add_filter('course_archive_title', 'lsx_sensei_archive_title', 10, 1);
113
+	add_filter('sensei_lesson_archive_title', 'lsx_sensei_archive_title', 10, 1);
114 114
 
115 115
 endif;
116 116
 
117
-if ( ! function_exists( 'lsx_sensei_category_title' ) ) :
117
+if ( ! function_exists('lsx_sensei_category_title')) :
118 118
 
119 119
 	/**
120 120
 	 * Filters the archive title.
@@ -122,24 +122,24 @@  discard block
 block discarded – undo
122 122
 	 * @package    lsx
123 123
 	 * @subpackage sensei
124 124
 	 */
125
-	function lsx_sensei_category_title( $html ) {
126
-		$html = str_replace( 'h2', 'h1', $html );
125
+	function lsx_sensei_category_title($html) {
126
+		$html = str_replace('h2', 'h1', $html);
127 127
 		return $html;
128 128
 	}
129 129
 
130
-	add_filter( 'course_category_title', 'lsx_sensei_category_title', 10, 1 );
130
+	add_filter('course_category_title', 'lsx_sensei_category_title', 10, 1);
131 131
 
132 132
 endif;
133 133
 
134 134
 // Switching the course filters and the headers around
135
-remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 );
136
-remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) );
137
-remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) );
138
-add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 );
139
-add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ),12 );
140
-add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ),12 );
135
+remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0);
136
+remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'));
137
+remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'));
138
+add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0);
139
+add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12);
140
+add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12);
141 141
 
142
-if ( ! function_exists( 'lsx_sensei_add_buttons' ) ) :
142
+if ( ! function_exists('lsx_sensei_add_buttons')) :
143 143
 
144 144
 	/**
145 145
 	 * Add extra buttons to the single view on lists.
@@ -147,27 +147,27 @@  discard block
 block discarded – undo
147 147
 	 * @package    lsx
148 148
 	 * @subpackage sensei
149 149
 	 */
150
-	function lsx_sensei_add_buttons( $course_id ) {
150
+	function lsx_sensei_add_buttons($course_id) {
151 151
 		global $post, $current_user;
152
-		$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
152
+		$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
153 153
 		?>
154 154
 			<section class="entry-actions">
155
-				<a class="button" href="<?php echo esc_url( tribe_get_event_link() ); ?>"><?php esc_html_e( 'View course', 'lsx' ); ?></a>
155
+				<a class="button" href="<?php echo esc_url(tribe_get_event_link()); ?>"><?php esc_html_e('View course', 'lsx'); ?></a>
156 156
 
157 157
 				<?php
158
-					if ( is_user_logged_in() && ! $is_user_taking_course ) {
159
-						Sensei_WC::the_add_to_cart_button_html( $post->ID );
158
+					if (is_user_logged_in() && ! $is_user_taking_course) {
159
+						Sensei_WC::the_add_to_cart_button_html($post->ID);
160 160
 					}
161 161
 				?>
162 162
 			</section>
163 163
 		<?php
164 164
 	}
165 165
 
166
-	add_action( 'sensei_course_content_inside_after', 'lsx_sensei_add_buttons', 9 );
166
+	add_action('sensei_course_content_inside_after', 'lsx_sensei_add_buttons', 9);
167 167
 
168 168
 endif;
169 169
 
170
-if ( ! function_exists( 'lsx_sensei_add_to_cart_text' ) ) :
170
+if ( ! function_exists('lsx_sensei_add_to_cart_text')) :
171 171
 
172 172
 	/**
173 173
 	 * Change add to cart button text.
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
175 175
 	 * @package    lsx
176 176
 	 * @subpackage sensei
177 177
 	 */
178
-	function lsx_sensei_add_to_cart_text( $text ) {
179
-		$text = esc_html__( 'Add to cart', 'lsx' );
178
+	function lsx_sensei_add_to_cart_text($text) {
179
+		$text = esc_html__('Add to cart', 'lsx');
180 180
 		return $text;
181 181
 	}
182 182
 
183
-	add_filter( 'sensei_wc_single_add_to_cart_button_text', 'lsx_sensei_add_to_cart_text' );
183
+	add_filter('sensei_wc_single_add_to_cart_button_text', 'lsx_sensei_add_to_cart_text');
184 184
 
185 185
 endif;
186 186
 
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +140 added lines, -140 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
 		return $allowedtags;
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 
36 36
 endif;
37 37
 
38
-add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 );
38
+add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2);
39 39
 
40
-if ( ! function_exists( 'lsx_body_class' ) ) :
40
+if ( ! function_exists('lsx_body_class')) :
41 41
 
42 42
 	/**
43 43
 	 * Add and remove body_class() classes.
@@ -45,44 +45,44 @@  discard block
 block discarded – undo
45 45
 	 * @package    lsx
46 46
 	 * @subpackage extras
47 47
 	 */
48
-	function lsx_body_class( $classes ) {
48
+	function lsx_body_class($classes) {
49 49
 		global $post;
50 50
 
51
-		$header_layout = get_theme_mod( 'lsx_header_layout', 'inline' );
51
+		$header_layout = get_theme_mod('lsx_header_layout', 'inline');
52 52
 		$classes[]     = 'header-' . $header_layout;
53 53
 
54
-		if ( isset( $post ) ) {
54
+		if (isset($post)) {
55 55
 			$classes[] = $post->post_name;
56 56
 		}
57 57
 
58
-		if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) {
59
-			$post_types = array( 'page', 'post' );
60
-			$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
58
+		if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) {
59
+			$post_types = array('page', 'post');
60
+			$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
61 61
 
62
-			if ( is_singular( $post_types ) && has_post_thumbnail() ) {
62
+			if (is_singular($post_types) && has_post_thumbnail()) {
63 63
 				$classes[] = 'page-has-banner';
64 64
 			}
65 65
 		}
66 66
 
67
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) {
67
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) {
68 68
 			$classes[] = 'has-top-menu';
69 69
 		}
70 70
 
71
-		$fixed_header = get_theme_mod( 'lsx_header_fixed', false );
71
+		$fixed_header = get_theme_mod('lsx_header_fixed', false);
72 72
 
73
-		if ( false !== $fixed_header ) {
73
+		if (false !== $fixed_header) {
74 74
 			$classes[] = 'top-menu-fixed';
75 75
 		}
76 76
 
77
-		$search_form  = get_theme_mod( 'lsx_header_search', false );
77
+		$search_form = get_theme_mod('lsx_header_search', false);
78 78
 
79
-		if ( false !== $search_form ) {
79
+		if (false !== $search_form) {
80 80
 			$classes[] = 'has-header-search';
81 81
 		}
82 82
 
83
-		$preloader_content  = get_theme_mod( 'lsx_preloader_content_status', false );
83
+		$preloader_content = get_theme_mod('lsx_preloader_content_status', false);
84 84
 
85
-		if ( false !== $preloader_content ) {
85
+		if (false !== $preloader_content) {
86 86
 			$classes[] = 'preloader-content-enable';
87 87
 		}
88 88
 
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
 
92 92
 endif;
93 93
 
94
-add_filter( 'body_class', 'lsx_body_class' );
94
+add_filter('body_class', 'lsx_body_class');
95 95
 
96
-if ( ! function_exists( 'lsx_embed_wrap' ) ) :
96
+if ( ! function_exists('lsx_embed_wrap')) :
97 97
 
98 98
 	/**
99 99
 	 * Wrap embedded media as suggested by Readability.
@@ -104,8 +104,8 @@  discard block
 block discarded – undo
104 104
 	 * @link https://gist.github.com/965956
105 105
 	 * @link http://www.readability.com/publishers/guidelines#publisher
106 106
 	 */
107
-	function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) {
108
-		if ( false !== strpos( $cache, '<iframe' ) ) {
107
+	function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') {
108
+		if (false !== strpos($cache, '<iframe')) {
109 109
 			return '<div class="entry-content-asset">' . $cache . '</div>';
110 110
 		}
111 111
 
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
 
115 115
 endif;
116 116
 
117
-add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 );
117
+add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4);
118 118
 
119
-if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) :
119
+if ( ! function_exists('lsx_remove_self_closing_tags')) :
120 120
 
121 121
 	/**
122 122
 	 * Remove unnecessary self-closing tags.
@@ -124,17 +124,17 @@  discard block
 block discarded – undo
124 124
 	 * @package    lsx
125 125
 	 * @subpackage extras
126 126
 	 */
127
-	function lsx_remove_self_closing_tags( $input ) {
128
-		return str_replace( ' />', '>', $input );
127
+	function lsx_remove_self_closing_tags($input) {
128
+		return str_replace(' />', '>', $input);
129 129
 	}
130 130
 
131 131
 endif;
132 132
 
133
-add_filter( 'get_avatar',          'lsx_remove_self_closing_tags' ); // <img />
134
-add_filter( 'comment_id_fields',   'lsx_remove_self_closing_tags' ); // <input />
135
-add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img />
133
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
134
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
135
+add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
136 136
 
137
-if ( ! function_exists( 'lsx_is_element_empty' ) ) :
137
+if ( ! function_exists('lsx_is_element_empty')) :
138 138
 
139 139
 	/**
140 140
 	 * Checks if a Nav $element is empty or not.
@@ -142,14 +142,14 @@  discard block
 block discarded – undo
142 142
 	 * @package    lsx
143 143
 	 * @subpackage extras
144 144
 	 */
145
-	function lsx_is_element_empty( $element ) {
146
-		$element = trim( $element );
147
-		return empty( $element ) ? false : true;
145
+	function lsx_is_element_empty($element) {
146
+		$element = trim($element);
147
+		return empty($element) ? false : true;
148 148
 	}
149 149
 
150 150
 endif;
151 151
 
152
-if ( ! function_exists( 'lsx_get_thumbnail' ) ) :
152
+if ( ! function_exists('lsx_get_thumbnail')) :
153 153
 
154 154
 	/**
155 155
 	 * return the responsive images.
@@ -157,44 +157,44 @@  discard block
 block discarded – undo
157 157
 	 * @package    lsx
158 158
 	 * @subpackage extras
159 159
 	 */
160
-	function lsx_get_thumbnail( $size, $image_src = false ) {
161
-		if ( false === $image_src ) {
160
+	function lsx_get_thumbnail($size, $image_src = false) {
161
+		if (false === $image_src) {
162 162
 			$post_id           = get_the_ID();
163
-			$post_thumbnail_id = get_post_thumbnail_id( $post_id );
164
-		} elseif ( false !== $image_src ) {
165
-			if ( is_numeric( $image_src ) ) {
163
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
164
+		} elseif (false !== $image_src) {
165
+			if (is_numeric($image_src)) {
166 166
 				$post_thumbnail_id = $image_src;
167 167
 			} else {
168
-				$post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src );
168
+				$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
169 169
 			}
170 170
 		}
171 171
 
172
-		$size = apply_filters( 'lsx_thumbnail_size', $size );
172
+		$size = apply_filters('lsx_thumbnail_size', $size);
173 173
 		$img = false;
174 174
 
175
-		if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) {
175
+		if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) {
176 176
 			$srcset = false;
177
-			$img    = wp_get_attachment_image_src( $post_thumbnail_id, $size );
177
+			$img    = wp_get_attachment_image_src($post_thumbnail_id, $size);
178 178
 			$img    = $img[0];
179 179
 		} else {
180 180
 			$srcset = true;
181
-			$img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size );
181
+			$img = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
182 182
 
183
-			if ( empty( $img ) ) {
183
+			if (empty($img)) {
184 184
 				$srcset = false;
185
-				$img = wp_get_attachment_image_src( $post_thumbnail_id, $size );
185
+				$img = wp_get_attachment_image_src($post_thumbnail_id, $size);
186 186
 				$img = $img[0];
187 187
 			}
188 188
 		}
189 189
 
190
-		if ( ! empty( $img ) ) {
191
-			if ( $srcset ) {
192
-				$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />';
190
+		if ( ! empty($img)) {
191
+			if ($srcset) {
192
+				$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />';
193 193
 			} else {
194
-				$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />';
194
+				$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />';
195 195
 			}
196 196
 
197
-			$img = apply_filters( 'lsx_lazyload_filter_images', $img );
197
+			$img = apply_filters('lsx_lazyload_filter_images', $img);
198 198
 		}
199 199
 
200 200
 		return $img;
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
 endif;
204 204
 
205
-if ( ! function_exists( 'lsx_thumbnail' ) ) :
205
+if ( ! function_exists('lsx_thumbnail')) :
206 206
 
207 207
 	/**
208 208
 	 * Output the Resonsive Images.
@@ -210,13 +210,13 @@  discard block
 block discarded – undo
210 210
 	 * @package    lsx
211 211
 	 * @subpackage extras
212 212
 	 */
213
-	function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
214
-		echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
213
+	function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
214
+		echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
215 215
 	}
216 216
 
217 217
 endif;
218 218
 
219
-if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) :
219
+if ( ! function_exists('lsx_get_attachment_id_from_src')) :
220 220
 
221 221
 	/**
222 222
 	 * Gets the attachments ID from the src.
@@ -224,13 +224,13 @@  discard block
 block discarded – undo
224 224
 	 * @package    lsx
225 225
 	 * @subpackage extras
226 226
 	 */
227
-	function lsx_get_attachment_id_from_src( $image_src ) {
228
-		$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
227
+	function lsx_get_attachment_id_from_src($image_src) {
228
+		$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
229 229
 
230
-		if ( false === $post_id ) {
230
+		if (false === $post_id) {
231 231
 			global $wpdb;
232
-			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
233
-			wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
232
+			$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
233
+			wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
234 234
 		}
235 235
 
236 236
 		return $post_id;
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
 endif;
240 240
 
241
-if ( ! function_exists( 'lsx_page_banner' ) ) :
241
+if ( ! function_exists('lsx_page_banner')) :
242 242
 
243 243
 	/**
244 244
 	 * Add Featured Image as Banner on Single Pages.
@@ -247,26 +247,26 @@  discard block
 block discarded – undo
247 247
 	 * @subpackage extras
248 248
 	 */
249 249
 	function lsx_page_banner() {
250
-		if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) {
250
+		if (true === apply_filters('lsx_page_banner_disable', false)) {
251 251
 			return;
252 252
 		}
253 253
 
254
-		$post_types = array( 'page', 'post' );
255
-		$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
254
+		$post_types = array('page', 'post');
255
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
256 256
 
257
-		if ( is_singular( $post_types ) && has_post_thumbnail() ) :
257
+		if (is_singular($post_types) && has_post_thumbnail()) :
258 258
 			$bg_image = '';
259 259
 
260
-			if ( has_post_thumbnail() ) {
261
-				$bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
260
+			if (has_post_thumbnail()) {
261
+				$bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
262 262
 				$bg_image = $bg_image[0];
263 263
 			}
264 264
 
265
-			if ( ! empty( $bg_image ) ) :
265
+			if ( ! empty($bg_image)) :
266 266
 				?>
267 267
 					<div class="page-banner-wrap">
268 268
 						<div class="page-banner">
269
-							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
269
+							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
270 270
 
271 271
 							<div class="container">
272 272
 								<header class="page-header">
@@ -285,9 +285,9 @@  discard block
 block discarded – undo
285 285
 
286 286
 endif;
287 287
 
288
-add_action( 'lsx_header_after', 'lsx_page_banner' );
288
+add_action('lsx_header_after', 'lsx_page_banner');
289 289
 
290
-if ( ! function_exists( 'lsx_form_submit_button' ) ) :
290
+if ( ! function_exists('lsx_form_submit_button')) :
291 291
 
292 292
 	/**
293 293
 	 * filter the Gravity Forms button type.
@@ -299,15 +299,15 @@  discard block
 block discarded – undo
299 299
 	 * @param  $form   Object
300 300
 	 * @return String
301 301
 	 */
302
-	function lsx_form_submit_button( $button, $form ) {
302
+	function lsx_form_submit_button($button, $form) {
303 303
 		return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
304 304
 	}
305 305
 
306 306
 endif;
307 307
 
308
-add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 );
308
+add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2);
309 309
 
310
-if ( ! function_exists( 'lsx_excerpt_more' ) ) :
310
+if ( ! function_exists('lsx_excerpt_more')) :
311 311
 
312 312
 	/**
313 313
 	 * Replaces the excerpt "more" text by a link.
@@ -315,15 +315,15 @@  discard block
 block discarded – undo
315 315
 	 * @package    lsx
316 316
 	 * @subpackage extras
317 317
 	 */
318
-	function lsx_excerpt_more( $more ) {
318
+	function lsx_excerpt_more($more) {
319 319
 		return '...';
320 320
 	}
321 321
 
322 322
 endif;
323 323
 
324
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
324
+add_filter('excerpt_more', 'lsx_excerpt_more');
325 325
 
326
-if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) :
326
+if ( ! function_exists('lsx_the_excerpt_filter')) :
327 327
 
328 328
 	/**
329 329
 	 * Add a continue reading link to the excerpt.
@@ -331,24 +331,24 @@  discard block
 block discarded – undo
331 331
 	 * @package    lsx
332 332
 	 * @subpackage extras
333 333
 	 */
334
-	function lsx_the_excerpt_filter( $excerpt ) {
335
-		$show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ) );
334
+	function lsx_the_excerpt_filter($excerpt) {
335
+		$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')));
336 336
 
337
-		if ( ! $show_full_content ) {
338
-			if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) {
339
-				$pagination = wp_link_pages( array(
337
+		if ( ! $show_full_content) {
338
+			if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
339
+				$pagination = wp_link_pages(array(
340 340
 					'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
341 341
 					'after'       => '</div></div>',
342 342
 					'link_before' => '<span>',
343 343
 					'link_after'  => '</span>',
344 344
 					'echo'        => 0,
345
-				) );
345
+				));
346 346
 
347
-				if ( ! empty( $pagination ) ) {
347
+				if ( ! empty($pagination)) {
348 348
 					$excerpt .= $pagination;
349 349
 				} else {
350
-					$excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>';
351
-					$excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more );
350
+					$excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>';
351
+					$excerpt .= apply_filters('excerpt_more_p', $excerpt_more);
352 352
 				}
353 353
 			}
354 354
 		}
@@ -358,9 +358,9 @@  discard block
 block discarded – undo
358 358
 
359 359
 endif;
360 360
 
361
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 );
361
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
362 362
 
363
-if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) :
363
+if ( ! function_exists('lsx_custom_wp_trim_excerpt')) :
364 364
 
365 365
 	/**
366 366
 	 * Allow HTML tags in excerpt.
@@ -368,33 +368,33 @@  discard block
 block discarded – undo
368 368
 	 * @package    lsx
369 369
 	 * @subpackage extras
370 370
 	 */
371
-	function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) {
371
+	function lsx_custom_wp_trim_excerpt($wpse_excerpt) {
372 372
 		global $post;
373 373
 		$raw_excerpt = $wpse_excerpt;
374 374
 
375
-		if ( empty( $wpse_excerpt ) ) {
376
-			$wpse_excerpt      = get_the_content( '' );
377
-			$show_full_content = has_post_format( array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) );
375
+		if (empty($wpse_excerpt)) {
376
+			$wpse_excerpt      = get_the_content('');
377
+			$show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'));
378 378
 
379
-			if ( ! $show_full_content ) {
380
-				$wpse_excerpt = strip_shortcodes( $wpse_excerpt );
381
-				$wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt );
382
-				$wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt );
383
-				$wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) );
379
+			if ( ! $show_full_content) {
380
+				$wpse_excerpt = strip_shortcodes($wpse_excerpt);
381
+				$wpse_excerpt = apply_filters('the_content', $wpse_excerpt);
382
+				$wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt);
383
+				$wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>'));
384 384
 
385 385
 				$excerpt_word_count = 50;
386
-				$excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count );
386
+				$excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count);
387 387
 
388 388
 				$tokens         = array();
389 389
 				$excerpt_output = '';
390 390
 				$has_more       = false;
391 391
 				$count          = 0;
392 392
 
393
-				preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens );
393
+				preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens);
394 394
 
395
-				foreach ( $tokens[0] as $token ) {
396
-					if ( $count >= $excerpt_word_count ) {
397
-						$excerpt_output .= trim( $token );
395
+				foreach ($tokens[0] as $token) {
396
+					if ($count >= $excerpt_word_count) {
397
+						$excerpt_output .= trim($token);
398 398
 						$has_more = true;
399 399
 						break;
400 400
 					}
@@ -403,41 +403,41 @@  discard block
 block discarded – undo
403 403
 					$excerpt_output .= $token;
404 404
 				}
405 405
 
406
-				$wpse_excerpt = trim( force_balance_tags( $excerpt_output ) );
406
+				$wpse_excerpt = trim(force_balance_tags($excerpt_output));
407 407
 
408
-				if ( $has_more ) {
409
-					$excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>';
410
-					$excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end );
408
+				if ($has_more) {
409
+					$excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>';
410
+					$excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end);
411 411
 
412
-					$pos = strrpos( $wpse_excerpt, '</' );
412
+					$pos = strrpos($wpse_excerpt, '</');
413 413
 
414
-					if ( false !== $pos ) {
414
+					if (false !== $pos) {
415 415
 						// Inside last HTML tag
416
-						$wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */
416
+						$wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */
417 417
 					} else {
418 418
 						// After the content
419 419
 						$wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */
420 420
 					}
421 421
 				}
422 422
 			} else {
423
-				$wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt );
424
-				$wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt );
423
+				$wpse_excerpt = apply_filters('the_content', $wpse_excerpt);
424
+				$wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt);
425 425
 				//$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' );
426
-				$wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) );
426
+				$wpse_excerpt = trim(force_balance_tags($wpse_excerpt));
427 427
 			}
428 428
 
429 429
 			return $wpse_excerpt;
430 430
 		}
431 431
 
432
-		return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt );
432
+		return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt);
433 433
 	}
434 434
 
435 435
 endif;
436 436
 
437
-remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' );
438
-add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' );
437
+remove_filter('get_the_excerpt', 'wp_trim_excerpt');
438
+add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt');
439 439
 
440
-if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) :
440
+if ( ! function_exists('lsx_full_width_widget_classes')) :
441 441
 
442 442
 	/**
443 443
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -445,8 +445,8 @@  discard block
 block discarded – undo
445 445
 	 * @package    lsx
446 446
 	 * @subpackage extras
447 447
 	 */
448
-	function lsx_full_width_widget_classes( $params ) {
449
-		if ( is_admin() ) {
448
+	function lsx_full_width_widget_classes($params) {
449
+		if (is_admin()) {
450 450
 			return $params;
451 451
 		}
452 452
 
@@ -455,9 +455,9 @@  discard block
 block discarded – undo
455 455
 		$widget_id   = $params[0]['widget_id'];
456 456
 		$widget_name = $params[0]['widget_name'];
457 457
 
458
-		if ( 'Text' === $widget_name ) {
459
-			$wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback'];
460
-			$wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback';
458
+		if ('Text' === $widget_name) {
459
+			$wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback'];
460
+			$wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback';
461 461
 		}
462 462
 
463 463
 		return $params;
@@ -465,9 +465,9 @@  discard block
 block discarded – undo
465 465
 
466 466
 endif;
467 467
 
468
-add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' );
468
+add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes');
469 469
 
470
-if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) :
470
+if ( ! function_exists('lsx_full_width_widget_custom_callback')) :
471 471
 
472 472
 	/**
473 473
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -481,25 +481,25 @@  discard block
 block discarded – undo
481 481
 		$original_callback_params = func_get_args();
482 482
 		$widget_id = $original_callback_params[0]['widget_id'];
483 483
 
484
-		$original_callback = $wp_registered_widgets[ $widget_id ]['original_callback'];
485
-		$wp_registered_widgets[ $widget_id ]['callback'] = $original_callback;
484
+		$original_callback = $wp_registered_widgets[$widget_id]['original_callback'];
485
+		$wp_registered_widgets[$widget_id]['callback'] = $original_callback;
486 486
 
487
-		$widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base;
487
+		$widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base;
488 488
 
489 489
 		$widget_classname = '';
490 490
 
491
-		if ( is_callable( $original_callback ) ) {
491
+		if (is_callable($original_callback)) {
492 492
 			ob_start();
493
-			call_user_func_array( $original_callback, $original_callback_params );
493
+			call_user_func_array($original_callback, $original_callback_params);
494 494
 			$widget_output = ob_get_clean();
495 495
 
496
-			echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) );
496
+			echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id));
497 497
 		}
498 498
 	}
499 499
 
500 500
 endif;
501 501
 
502
-if ( ! function_exists( 'lsx_full_width_widget_output' ) ) :
502
+if ( ! function_exists('lsx_full_width_widget_output')) :
503 503
 
504 504
 	/**
505 505
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -507,12 +507,12 @@  discard block
 block discarded – undo
507 507
 	 * @package    lsx
508 508
 	 * @subpackage extras
509 509
 	 */
510
-	function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) {
511
-		if ( 'text' === $widget_id_base ) {
512
-			if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) {
513
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output );
514
-			} elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) {
515
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output );
510
+	function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) {
511
+		if ('text' === $widget_id_base) {
512
+			if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) {
513
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output);
514
+			} elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) {
515
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output);
516 516
 			}
517 517
 		}
518 518
 
@@ -521,4 +521,4 @@  discard block
 block discarded – undo
521 521
 
522 522
 endif;
523 523
 
524
-add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 );
524
+add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3);
Please login to merge, or discard this patch.
includes/plugins/woocommerce.php 1 patch
Spacing   +169 added lines, -169 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,28 +38,28 @@  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.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.css', array('lsx_main'), LSX_VERSION);
42
+		wp_style_add_data('woocommerce-lsx', 'rtl', 'replace');
43 43
 
44 44
 		// Remove select2 added by WooCommerce
45 45
 
46
-		if ( ! is_admin() ) {
47
-			wp_dequeue_style( 'select2' );
48
-			wp_deregister_style( 'select2' );
46
+		if ( ! is_admin()) {
47
+			wp_dequeue_style('select2');
48
+			wp_deregister_style('select2');
49 49
 
50
-			wp_dequeue_script( 'select2' );
50
+			wp_dequeue_script('select2');
51 51
 			//wp_deregister_script( 'select2' );
52 52
 		}
53 53
 
54 54
 		// Remove WC Shipping Multiple Addresses specific script causing issues on checkout
55
-		wp_dequeue_script( 'wcms-country-select' );
55
+		wp_dequeue_script('wcms-country-select');
56 56
 	}
57 57
 
58
-	add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' );
58
+	add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles');
59 59
 
60 60
 endif;
61 61
 
62
-if ( ! function_exists( 'lsx_wc_form_field_args' ) ) :
62
+if ( ! function_exists('lsx_wc_form_field_args')) :
63 63
 
64 64
 	/**
65 65
 	 * WooCommerce form fields.
@@ -67,17 +67,17 @@  discard block
 block discarded – undo
67 67
 	 * @package    lsx
68 68
 	 * @subpackage woocommerce
69 69
 	 */
70
-	function lsx_wc_form_field_args( $args, $key, $value ) {
70
+	function lsx_wc_form_field_args($args, $key, $value) {
71 71
 		$args['input_class'][] = 'form-control';
72 72
 
73 73
 		return $args;
74 74
 	}
75 75
 
76
-	add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 );
76
+	add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3);
77 77
 
78 78
 endif;
79 79
 
80
-if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) :
80
+if ( ! function_exists('lsx_wc_theme_wrapper_start')) :
81 81
 
82 82
 	/**
83 83
 	 * WooCommerce wrapper start.
@@ -87,18 +87,18 @@  discard block
 block discarded – undo
87 87
 	 */
88 88
 	function lsx_wc_theme_wrapper_start() {
89 89
 		lsx_content_wrap_before();
90
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
90
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
91 91
 		lsx_content_before();
92 92
 		echo '<main id="main" class="site-main" role="main">';
93 93
 		lsx_content_top();
94 94
 	}
95 95
 
96
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
97
-	add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' );
96
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
97
+	add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start');
98 98
 
99 99
 endif;
100 100
 
101
-if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) :
101
+if ( ! function_exists('lsx_wc_theme_wrapper_end')) :
102 102
 
103 103
 	/**
104 104
 	 * WooCommerce wrapper end.
@@ -114,12 +114,12 @@  discard block
 block discarded – undo
114 114
 		lsx_content_wrap_after();
115 115
 	}
116 116
 
117
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
118
-	add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' );
117
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
118
+	add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end');
119 119
 
120 120
 endif;
121 121
 
122
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) :
122
+if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) :
123 123
 
124 124
 	/**
125 125
 	 * Disable LSX Banners plugin in some WC pages.
@@ -127,25 +127,25 @@  discard block
 block discarded – undo
127 127
 	 * @package    lsx
128 128
 	 * @subpackage woocommerce
129 129
 	 */
130
-	function lsx_wc_disable_lsx_banner_plugin( $disabled ) {
130
+	function lsx_wc_disable_lsx_banner_plugin($disabled) {
131 131
 		global $post;
132 132
 
133
-		if ( is_cart() || is_checkout() || is_account_page() ) {
133
+		if (is_cart() || is_checkout() || is_account_page()) {
134 134
 			$disabled = true;
135 135
 		}
136 136
 
137
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
137
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
138 138
 			$disabled = true;
139 139
 		}
140 140
 
141 141
 		return $disabled;
142 142
 	}
143 143
 
144
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' );
144
+	add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin');
145 145
 
146 146
 endif;
147 147
 
148
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) :
148
+if ( ! function_exists('lsx_wc_disable_lsx_banner')) :
149 149
 
150 150
 	/**
151 151
 	 * Disable LSX Banners banner in some WC pages.
@@ -153,19 +153,19 @@  discard block
 block discarded – undo
153 153
 	 * @package    lsx
154 154
 	 * @subpackage woocommerce
155 155
 	 */
156
-	function lsx_wc_disable_lsx_banner( $disabled ) {
157
-		if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) {
156
+	function lsx_wc_disable_lsx_banner($disabled) {
157
+		if (is_shop() || is_product_category() || is_product_tag() || is_product()) {
158 158
 			$disabled = true;
159 159
 		}
160 160
 
161 161
 		return $disabled;
162 162
 	}
163 163
 
164
-	add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' );
164
+	add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner');
165 165
 
166 166
 endif;
167 167
 
168
-if ( ! function_exists( 'lsx_wc_add_cart' ) ) :
168
+if ( ! function_exists('lsx_wc_add_cart')) :
169 169
 
170 170
 	/**
171 171
 	 * Adds WC cart to the header.
@@ -173,32 +173,32 @@  discard block
 block discarded – undo
173 173
 	 * @package    lsx
174 174
 	 * @subpackage template-tags
175 175
 	 */
176
-	function lsx_wc_add_cart( $items, $args ) {
177
-		$cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' );
176
+	function lsx_wc_add_cart($items, $args) {
177
+		$cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary');
178 178
 
179
-		if ( $cart_menu_item_position === $args->theme_location ) {
180
-			$customizer_option  = get_theme_mod( 'lsx_header_wc_cart', false );
179
+		if ($cart_menu_item_position === $args->theme_location) {
180
+			$customizer_option = get_theme_mod('lsx_header_wc_cart', false);
181 181
 
182
-			if ( ! empty( $customizer_option ) ) {
182
+			if ( ! empty($customizer_option)) {
183 183
 				ob_start();
184
-				the_widget( 'WC_Widget_Cart', 'title=' );
184
+				the_widget('WC_Widget_Cart', 'title=');
185 185
 				$widget = ob_get_clean();
186 186
 
187
-				if ( is_cart() ) {
187
+				if (is_cart()) {
188 188
 					$class = 'current-menu-item';
189 189
 				} else {
190 190
 					$class = '';
191 191
 				}
192 192
 
193 193
 				$item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class;
194
-				$item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class );
194
+				$item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class);
195 195
 
196 196
 				$item = '<li class="' . $item_class . '">' .
197
-							'<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">' .
198
-								'<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' .
197
+							'<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">' .
198
+								'<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' .
199 199
 								/* Translators: %s: items quantity */
200
-								'<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>' .
201
-								( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) .
200
+								'<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>' .
201
+								( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') .
202 202
 							'</a>' .
203 203
 							'<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' .
204 204
 								'<li>' .
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 							'</ul>' .
208 208
 						'</li>';
209 209
 
210
-				if ( 'top-menu' === $args->theme_location ) {
210
+				if ('top-menu' === $args->theme_location) {
211 211
 					$items = $item . $items;
212 212
 				} else {
213 213
 					$items = $items . $item;
@@ -218,11 +218,11 @@  discard block
 block discarded – undo
218 218
 		return $items;
219 219
 	}
220 220
 
221
-	add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 );
221
+	add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2);
222 222
 
223 223
 endif;
224 224
 
225
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) :
225
+if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) :
226 226
 
227 227
 	/**
228 228
 	 * Change WC products widget wrapper (before).
@@ -230,16 +230,16 @@  discard block
 block discarded – undo
230 230
 	 * @package    lsx
231 231
 	 * @subpackage woocommerce
232 232
 	 */
233
-	function lsx_wc_products_widget_wrapper_before( $html ) {
233
+	function lsx_wc_products_widget_wrapper_before($html) {
234 234
 		$html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">';
235 235
 		return $html;
236 236
 	}
237 237
 
238
-	add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 );
238
+	add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15);
239 239
 
240 240
 endif;
241 241
 
242
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) :
242
+if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) :
243 243
 
244 244
 	/**
245 245
 	 * Change WC products widget wrapper (after).
@@ -247,16 +247,16 @@  discard block
 block discarded – undo
247 247
 	 * @package    lsx
248 248
 	 * @subpackage woocommerce
249 249
 	 */
250
-	function lsx_wc_products_widget_wrapper_after( $html ) {
250
+	function lsx_wc_products_widget_wrapper_after($html) {
251 251
 		$html = '</div>';
252 252
 		return $html;
253 253
 	}
254 254
 
255
-	add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 );
255
+	add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15);
256 256
 
257 257
 endif;
258 258
 
259
-if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) :
259
+if ( ! function_exists('lsx_wc_reviews_widget_override')) :
260 260
 
261 261
 	/**
262 262
 	 * Override WC ewviews widget.
@@ -265,18 +265,18 @@  discard block
 block discarded – undo
265 265
 	 * @subpackage woocommerce
266 266
 	 */
267 267
 	function lsx_wc_reviews_widget_override() {
268
-		if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) {
269
-			unregister_widget( 'WC_Widget_Recent_Reviews' );
268
+		if (class_exists('WC_Widget_Recent_Reviews')) {
269
+			unregister_widget('WC_Widget_Recent_Reviews');
270 270
 			require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php';
271
-			register_widget( 'LSX_WC_Widget_Recent_Reviews' );
271
+			register_widget('LSX_WC_Widget_Recent_Reviews');
272 272
 		}
273 273
 	}
274 274
 
275
-	add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 );
275
+	add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15);
276 276
 
277 277
 endif;
278 278
 
279
-if ( ! function_exists( 'lsx_wc_change_price_html' ) ) :
279
+if ( ! function_exists('lsx_wc_change_price_html')) :
280 280
 
281 281
 	/**
282 282
 	 * Change WC ZERO price to "free".
@@ -284,28 +284,28 @@  discard block
 block discarded – undo
284 284
 	 * @package    lsx
285 285
 	 * @subpackage woocommerce
286 286
 	 */
287
-	function lsx_wc_change_price_html( $price, $product ) {
288
-		if ( empty( $product->get_price() ) ) {
289
-			if ( $product->is_on_sale() && $product->get_regular_price() ) {
290
-				$regular_price = wc_get_price_to_display( $product, array(
287
+	function lsx_wc_change_price_html($price, $product) {
288
+		if (empty($product->get_price())) {
289
+			if ($product->is_on_sale() && $product->get_regular_price()) {
290
+				$regular_price = wc_get_price_to_display($product, array(
291 291
 					'qty' => 1,
292 292
 					'price' => $product->get_regular_price(),
293
-				) );
293
+				));
294 294
 
295
-				$price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) );
295
+				$price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx'));
296 296
 			} else {
297
-				$price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>';
297
+				$price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>';
298 298
 			}
299 299
 		}
300 300
 
301 301
 		return $price;
302 302
 	}
303 303
 
304
-	add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 );
304
+	add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2);
305 305
 
306 306
 endif;
307 307
 
308
-if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) :
308
+if ( ! function_exists('lsx_wc_cart_link_fragment')) :
309 309
 
310 310
 	/**
311 311
 	 * Cart Fragments.
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 	 * @package    lsx
315 315
 	 * @subpackage woocommerce
316 316
 	 */
317
-	function lsx_wc_cart_link_fragment( $fragments ) {
317
+	function lsx_wc_cart_link_fragment($fragments) {
318 318
 		global $woocommerce;
319 319
 
320 320
 		ob_start();
@@ -325,8 +325,8 @@  discard block
 block discarded – undo
325 325
 		lsx_wc_items_counter();
326 326
 		$items_counter = ob_get_clean();
327 327
 
328
-		if ( ! empty( $items_counter ) ) {
329
-			$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'] );
328
+		if ( ! empty($items_counter)) {
329
+			$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']);
330 330
 		}
331 331
 
332 332
 		return $fragments;
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
 
335 335
 endif;
336 336
 
337
-if ( ! function_exists( 'lsx_wc_cart_link' ) ) :
337
+if ( ! function_exists('lsx_wc_cart_link')) :
338 338
 
339 339
 	/**
340 340
 	 * Cart Link.
@@ -345,14 +345,14 @@  discard block
 block discarded – undo
345 345
 	 */
346 346
 	function lsx_wc_cart_link() {
347 347
 		?>
348
-			<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">
349
-				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
348
+			<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">
349
+				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span>
350 350
 
351 351
 				<?php /* Translators: %s: items quantity */ ?>
352
-				<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>
352
+				<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>
353 353
 
354
-				<?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?>
355
-					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span>
354
+				<?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?>
355
+					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span>
356 356
 				<?php endif; ?>
357 357
 			</a>
358 358
 		<?php
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 
361 361
 endif;
362 362
 
363
-if ( ! function_exists( 'lsx_wc_items_counter' ) ) :
363
+if ( ! function_exists('lsx_wc_items_counter')) :
364 364
 
365 365
 	/**
366 366
 	 * Add car item hidden items counter.
@@ -372,21 +372,21 @@  discard block
 block discarded – undo
372 372
 		$count = (int) WC()->cart->get_cart_contents_count();
373 373
 		$items_counter = '';
374 374
 
375
-		if ( ! empty( $count ) ) {
375
+		if ( ! empty($count)) {
376 376
 			$count -= 3;
377 377
 
378
-			if ( 1 === $count ) {
379
-				$items_counter = esc_html__( '1 other item in cart', 'lsx' );
380
-			} elseif ( $count > 1 ) {
378
+			if (1 === $count) {
379
+				$items_counter = esc_html__('1 other item in cart', 'lsx');
380
+			} elseif ($count > 1) {
381 381
 				/* Translators: %s: items counter */
382
-				$items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count );
382
+				$items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count);
383 383
 			}
384 384
 		}
385 385
 
386
-		if ( ! empty( $items_counter ) ) :
386
+		if ( ! empty($items_counter)) :
387 387
 			?>
388 388
 				<li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;">
389
-					<a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>"><?php echo esc_html( $items_counter ); ?></a>
389
+					<a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>"><?php echo esc_html($items_counter); ?></a>
390 390
 				</li>
391 391
 			<?php
392 392
 		endif;
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
 
395 395
 endif;
396 396
 
397
-if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) :
397
+if ( ! function_exists('lsx_wc_loop_shop_per_page')) :
398 398
 
399 399
 	/**
400 400
 	 * Changes the number of products to display on shop.
@@ -402,16 +402,16 @@  discard block
 block discarded – undo
402 402
 	 * @package    lsx
403 403
 	 * @subpackage woocommerce
404 404
 	 */
405
-	function lsx_wc_loop_shop_per_page( $items ) {
405
+	function lsx_wc_loop_shop_per_page($items) {
406 406
 		$items = 20;
407 407
 		return $items;
408 408
 	}
409 409
 
410
-	add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 );
410
+	add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20);
411 411
 
412 412
 endif;
413 413
 
414
-if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) :
414
+if ( ! function_exists('lsx_wc_add_to_cart_message_html')) :
415 415
 
416 416
 	/**
417 417
 	 * Changes the "added to cart" message HTML.
@@ -419,39 +419,39 @@  discard block
 block discarded – undo
419 419
 	 * @package    lsx
420 420
 	 * @subpackage woocommerce
421 421
 	 */
422
-	function lsx_wc_add_to_cart_message_html( $message, $products ) {
422
+	function lsx_wc_add_to_cart_message_html($message, $products) {
423 423
 		$message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>';
424 424
 		return $message;
425 425
 	}
426 426
 
427
-	add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 );
427
+	add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2);
428 428
 
429 429
 endif;
430 430
 
431
-if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
432
-	add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
431
+if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
432
+	add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
433 433
 } else {
434
-	add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
434
+	add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
435 435
 }
436 436
 
437
-remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
437
+remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
438 438
 
439
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
440
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
441
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
442
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
443
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
439
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
440
+add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
441
+add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
442
+add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
443
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
444 444
 
445
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
446
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
445
+remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
446
+remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
447 447
 
448
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
449
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
450
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
451
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
452
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
448
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
449
+add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
450
+add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
451
+add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
452
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
453 453
 
454
-if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) :
454
+if ( ! function_exists('lsx_wc_sorting_wrapper')) :
455 455
 
456 456
 	/**
457 457
 	 * Sorting wrapper.
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
 
466 466
 endif;
467 467
 
468
-if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) :
468
+if ( ! function_exists('lsx_wc_sorting_wrapper_close')) :
469 469
 
470 470
 	/**
471 471
 	 * Sorting wrapper close.
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
 
480 480
 endif;
481 481
 
482
-if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) :
482
+if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) :
483 483
 
484 484
 	/**
485 485
 	 * Product columns wrapper close.
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
 
494 494
 endif;
495 495
 
496
-if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) :
496
+if ( ! function_exists('lsx_wc_woocommerce_pagination')) :
497 497
 
498 498
 	/**
499 499
 	 * LSX WooCommerce Pagination
@@ -505,14 +505,14 @@  discard block
 block discarded – undo
505 505
 	 * @subpackage woocommerce
506 506
 	 */
507 507
 	function lsx_wc_woocommerce_pagination() {
508
-		if ( woocommerce_products_will_display() ) {
508
+		if (woocommerce_products_will_display()) {
509 509
 			woocommerce_pagination();
510 510
 		}
511 511
 	}
512 512
 
513 513
 endif;
514 514
 
515
-if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) :
515
+if ( ! function_exists('lsx_customizer_wc_controls')) :
516 516
 
517 517
 	/**
518 518
 	 * Returns an array of the core panel.
@@ -522,10 +522,10 @@  discard block
 block discarded – undo
522 522
 	 *
523 523
 	 * @return $lsx_controls array()
524 524
 	 */
525
-	function lsx_customizer_wc_controls( $lsx_controls ) {
525
+	function lsx_customizer_wc_controls($lsx_controls) {
526 526
 		$lsx_controls['panels']['lsx-wc'] = array(
527
-			'title'       => esc_html__( 'WooCommerce', 'lsx' ),
528
-			'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ),
527
+			'title'       => esc_html__('WooCommerce', 'lsx'),
528
+			'description' => esc_html__('Change the WooCommerce settings.', 'lsx'),
529 529
 			'priority'    => 23,
530 530
 		);
531 531
 
@@ -534,8 +534,8 @@  discard block
 block discarded – undo
534 534
 		 */
535 535
 
536 536
 		$lsx_controls['sections']['lsx-wc-global'] = array(
537
-			'title'       => esc_html__( 'Global', 'lsx' ),
538
-			'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ),
537
+			'title'       => esc_html__('Global', 'lsx'),
538
+			'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'),
539 539
 			'panel'       => 'lsx-wc',
540 540
 			'priority'    => 1,
541 541
 		);
@@ -546,8 +546,8 @@  discard block
 block discarded – undo
546 546
 		);
547 547
 
548 548
 		$lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array(
549
-			'label'       => esc_html__( 'Footer Bar', 'lsx' ),
550
-			'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ),
549
+			'label'       => esc_html__('Footer Bar', 'lsx'),
550
+			'description' => esc_html__('Enable the mobile footer bar.', 'lsx'),
551 551
 			'section'     => 'lsx-wc-global',
552 552
 			'type'        => 'checkbox',
553 553
 			'priority'    => 1,
@@ -558,8 +558,8 @@  discard block
 block discarded – undo
558 558
 		 */
559 559
 
560 560
 		$lsx_controls['sections']['lsx-wc-cart'] = array(
561
-			'title'       => esc_html__( 'Cart', 'lsx' ),
562
-			'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ),
561
+			'title'       => esc_html__('Cart', 'lsx'),
562
+			'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'),
563 563
 			'panel'       => 'lsx-wc',
564 564
 			'priority'    => 2,
565 565
 		);
@@ -570,8 +570,8 @@  discard block
 block discarded – undo
570 570
 		);
571 571
 
572 572
 		$lsx_controls['fields']['lsx_header_wc_cart'] = array(
573
-			'label'       => esc_html__( 'Menu Item', 'lsx' ),
574
-			'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ),
573
+			'label'       => esc_html__('Menu Item', 'lsx'),
574
+			'description' => esc_html__('Enable the cart menu item.', 'lsx'),
575 575
 			'section'     => 'lsx-wc-cart',
576 576
 			'type'        => 'checkbox',
577 577
 			'priority'    => 1,
@@ -580,11 +580,11 @@  discard block
 block discarded – undo
580 580
 		return $lsx_controls;
581 581
 	}
582 582
 
583
-	add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' );
583
+	add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls');
584 584
 
585 585
 endif;
586 586
 
587
-if ( ! function_exists( 'lsx_wc_footer_bar' ) ) :
587
+if ( ! function_exists('lsx_wc_footer_bar')) :
588 588
 
589 589
 	/**
590 590
 	 * Display WC footer bar.
@@ -593,46 +593,46 @@  discard block
 block discarded – undo
593 593
 	 * @subpackage woocommerce
594 594
 	 */
595 595
 	function lsx_wc_footer_bar() {
596
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) :
596
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) :
597 597
 			?>
598 598
 			<div class="lsx-wc-footer-bar">
599
-				<form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form">
599
+				<form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form">
600 600
 					<fieldset>
601
-						<legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend>
602
-						<input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control">
601
+						<legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend>
602
+						<input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control">
603 603
 					</fieldset>
604 604
 				</form>
605 605
 
606 606
 				<ul class="lsx-wc-footer-bar-items">
607 607
 					<li class="lsx-wc-footer-bar-item">
608
-						<a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link">
608
+						<a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link">
609 609
 							<i class="fa fa-home" aria-hidden="true"></i>
610
-							<span><?php esc_html_e( 'Home', 'lsx' ); ?></span>
610
+							<span><?php esc_html_e('Home', 'lsx'); ?></span>
611 611
 						</a>
612 612
 					</li>
613 613
 
614 614
 					<li class="lsx-wc-footer-bar-item">
615
-						<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link">
615
+						<a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link">
616 616
 							<i class="fa fa-user" aria-hidden="true"></i>
617
-							<span><?php esc_html_e( 'Account', 'lsx' ); ?></span>
617
+							<span><?php esc_html_e('Account', 'lsx'); ?></span>
618 618
 						</a>
619 619
 					</li>
620 620
 
621 621
 					<li class="lsx-wc-footer-bar-item">
622 622
 						<a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle">
623 623
 							<i class="fa fa-search" aria-hidden="true"></i>
624
-							<span><?php esc_html_e( 'Search', 'lsx' ); ?></span>
624
+							<span><?php esc_html_e('Search', 'lsx'); ?></span>
625 625
 						</a>
626 626
 					</li>
627 627
 
628 628
 					<li class="lsx-wc-footer-bar-item">
629
-						<a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" class="lsx-wc-footer-bar-link">
629
+						<a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>" class="lsx-wc-footer-bar-link">
630 630
 							<i class="fa fa-shopping-basket" aria-hidden="true"></i>
631 631
 							<?php $count = WC()->cart->get_cart_contents_count(); ?>
632
-							<?php if ( ! empty( $count ) ) : ?>
633
-								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span>
632
+							<?php if ( ! empty($count)) : ?>
633
+								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span>
634 634
 							<?php endif; ?>
635
-							<span><?php esc_html_e( 'Cart', 'lsx' ); ?></span>
635
+							<span><?php esc_html_e('Cart', 'lsx'); ?></span>
636 636
 						</a>
637 637
 					</li>
638 638
 				</ul>
@@ -641,11 +641,11 @@  discard block
 block discarded – undo
641 641
 		endif;
642 642
 	}
643 643
 
644
-	add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 );
644
+	add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15);
645 645
 
646 646
 endif;
647 647
 
648
-if ( ! function_exists( 'lsx_wc_body_class' ) ) :
648
+if ( ! function_exists('lsx_wc_body_class')) :
649 649
 
650 650
 	/**
651 651
 	 * Changes body class.
@@ -653,25 +653,25 @@  discard block
 block discarded – undo
653 653
 	 * @package    lsx
654 654
 	 * @subpackage woocommerce
655 655
 	 */
656
-	function lsx_wc_body_class( $classes ) {
656
+	function lsx_wc_body_class($classes) {
657 657
 		global $post;
658 658
 
659
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
659
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
660 660
 			$classes[] = 'woocommerce-page woocommerce-wishlist';
661 661
 		}
662 662
 
663
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) {
663
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) {
664 664
 			$classes[] = 'lsx-wc-has-footer-bar';
665 665
 		}
666 666
 
667 667
 		return $classes;
668 668
 	}
669 669
 
670
-	add_filter( 'body_class', 'lsx_wc_body_class', 2999 );
670
+	add_filter('body_class', 'lsx_wc_body_class', 2999);
671 671
 
672 672
 endif;
673 673
 
674
-if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) :
674
+if ( ! function_exists('lsx_wc_downloadable_products')) :
675 675
 
676 676
 	/**
677 677
 	 * Changes downloads "download" button text.
@@ -679,19 +679,19 @@  discard block
 block discarded – undo
679 679
 	 * @package    lsx
680 680
 	 * @subpackage woocommerce
681 681
 	 */
682
-	function lsx_wc_downloadable_products( $downloads ) {
683
-		foreach ( $downloads as $i => $download ) {
684
-			$downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' );
682
+	function lsx_wc_downloadable_products($downloads) {
683
+		foreach ($downloads as $i => $download) {
684
+			$downloads[$i]['download_name'] = esc_html__('Download', 'lsx');
685 685
 		}
686 686
 
687 687
 		return $downloads;
688 688
 	}
689 689
 
690
-	add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 );
690
+	add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999);
691 691
 
692 692
 endif;
693 693
 
694
-if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) :
694
+if ( ! function_exists('lsx_wc_move_bundle_products')) :
695 695
 
696 696
 	/**
697 697
 	 * WooCommerce - Move the bundle products to a tab.
@@ -699,46 +699,46 @@  discard block
 block discarded – undo
699 699
 	 * @package    lsx
700 700
 	 * @subpackage woocommerce
701 701
 	 */
702
-	function lsx_wc_move_bundle_products( $tabs ) {
702
+	function lsx_wc_move_bundle_products($tabs) {
703 703
 		global $product, $post;
704 704
 
705
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
705
+		if (method_exists($product, 'get_bundled_items')) {
706 706
 			$bundled_items = $product->get_bundled_items();
707 707
 
708
-			if ( ! empty( $bundled_items ) ) {
708
+			if ( ! empty($bundled_items)) {
709 709
 				$tabs['bundled_products'] = array(
710
-					'title'    => __( 'Included Products', 'lsx' ),
710
+					'title'    => __('Included Products', 'lsx'),
711 711
 					'priority' => 10,
712 712
 					'callback' => 'lsx_wc_bundle_products',
713 713
 				);
714 714
 			}
715 715
 		}
716 716
 
717
-		if ( isset( $tabs['description'] ) ) {
717
+		if (isset($tabs['description'])) {
718 718
 			$tabs['description']['priority'] = 5;
719 719
 		}
720 720
 
721
-		if ( isset( $tabs['reviews'] ) ) {
721
+		if (isset($tabs['reviews'])) {
722 722
 			$tabs['reviews']['priority'] = 15;
723 723
 		}
724 724
 
725
-		if ( isset( $tabs['product_enquiry'] ) ) {
725
+		if (isset($tabs['product_enquiry'])) {
726 726
 			$tabs['product_enquiry']['priority'] = 20;
727 727
 		}
728 728
 
729 729
 		return $tabs;
730 730
 	}
731 731
 
732
-	add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 );
732
+	add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50);
733 733
 
734 734
 endif;
735 735
 
736
-if ( ! function_exists( 'lsx_wc_bundle_products' ) ) :
736
+if ( ! function_exists('lsx_wc_bundle_products')) :
737 737
 
738 738
 	function lsx_wc_bundle_products() {
739 739
 		global $product, $post;
740 740
 
741
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
741
+		if (method_exists($product, 'get_bundled_items')) {
742 742
 			$bundled_items = $product->get_bundled_items();
743 743
 
744 744
 			// do_action( 'woocommerce_before_bundled_items', $product );
@@ -754,16 +754,16 @@  discard block
 block discarded – undo
754 754
 			// $this->widget_start( $args, $instance );
755 755
 
756 756
 			// @codingStandardsIgnoreLine
757
-			echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );
757
+			echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">');
758 758
 
759
-			foreach ( $bundled_items as $bundled_item ) {
760
-				$product = wc_get_product( $bundled_item->item_data['product_id'] );
761
-				wc_get_template( 'content-widget-product.php' );
759
+			foreach ($bundled_items as $bundled_item) {
760
+				$product = wc_get_product($bundled_item->item_data['product_id']);
761
+				wc_get_template('content-widget-product.php');
762 762
 				$product = $product_original;
763 763
 			}
764 764
 
765 765
 			// @codingStandardsIgnoreLine
766
-			echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' );
766
+			echo apply_filters('woocommerce_after_widget_product_list', '</ul>');
767 767
 		}
768 768
 
769 769
 		// $this->widget_end( $args );
Please login to merge, or discard this patch.