@@ -8,25 +8,25 @@ |
||
8 | 8 | |
9 | 9 | <section class="no-results not-found"> |
10 | 10 | <header class="page-header"> |
11 | - <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1> |
|
11 | + <h1 class="page-title"><?php esc_html_e('Nothing Found', 'lsx'); ?></h1> |
|
12 | 12 | </header><!-- .page-header --> |
13 | 13 | |
14 | 14 | <div class="page-content"> |
15 | 15 | |
16 | - <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?> |
|
16 | + <?php if (is_home() && current_user_can('publish_posts')) : ?> |
|
17 | 17 | |
18 | - <p><?php esc_html_e( 'Ready to publish your first post?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php' ) ); ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p> |
|
18 | + <p><?php esc_html_e('Ready to publish your first post?', 'lsx'); ?> <a href="<?php echo esc_url(admin_url('post-new.php')); ?>"><?php esc_html_e('Get started here', 'lsx'); ?></a></p> |
|
19 | 19 | |
20 | - <?php elseif ( is_search() ) : ?> |
|
20 | + <?php elseif (is_search()) : ?> |
|
21 | 21 | |
22 | - <p><?php esc_html_e( 'Your search for "', 'lsx' ); ?><?php echo get_search_query(); ?><?php esc_html_e( '" didn’t return any results… ', 'lsx' ); ?><br><?php esc_html_e( 'Please try another keyword', 'lsx' ); ?></p> |
|
22 | + <p><?php esc_html_e('Your search for "', 'lsx'); ?><?php echo get_search_query(); ?><?php esc_html_e('" didn’t return any results… ', 'lsx'); ?><br><?php esc_html_e('Please try another keyword', 'lsx'); ?></p> |
|
23 | 23 | |
24 | - <?php echo wp_kses_post( apply_filters( 'lsx_404_search_form', get_search_form() ) ); ?> |
|
24 | + <?php echo wp_kses_post(apply_filters('lsx_404_search_form', get_search_form())); ?> |
|
25 | 25 | |
26 | 26 | <?php else : ?> |
27 | 27 | |
28 | - <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); ?></p> |
|
29 | - <?php echo wp_kses_post( apply_filters( 'lsx_404_search_form', get_search_form() ) ); ?> |
|
28 | + <p><?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx'); ?></p> |
|
29 | + <?php echo wp_kses_post(apply_filters('lsx_404_search_form', get_search_form())); ?> |
|
30 | 30 | |
31 | 31 | <?php endif; ?> |
32 | 32 |
@@ -23,9 +23,12 @@ |
||
23 | 23 | |
24 | 24 | <?php echo wp_kses_post( apply_filters( 'lsx_404_search_form', get_search_form() ) ); ?> |
25 | 25 | |
26 | - <?php else : ?> |
|
26 | + <?php else { |
|
27 | + : ?> |
|
27 | 28 | |
28 | - <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); ?></p> |
|
29 | + <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); |
|
30 | +} |
|
31 | +?></p> |
|
29 | 32 | <?php echo wp_kses_post( apply_filters( 'lsx_404_search_form', get_search_form() ) ); ?> |
30 | 33 | |
31 | 34 | <?php endif; ?> |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category bootstrap-walker |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -if ( ! class_exists( 'Walker_Nav_Menu' ) ) { |
|
14 | +if ( ! class_exists('Walker_Nav_Menu')) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'LSX_Nav_Walker' ) ) : |
|
18 | +if ( ! class_exists('LSX_Nav_Walker')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Cleaner walker for wp_nav_menu() |
@@ -34,46 +34,46 @@ discard block |
||
34 | 34 | */ |
35 | 35 | class LSX_Nav_Walker extends Walker_Nav_Menu { |
36 | 36 | |
37 | - function check_current( $classes ) { |
|
38 | - return preg_match( '/^(current[-_])|active|dropdown$/', $classes ); |
|
37 | + function check_current($classes) { |
|
38 | + return preg_match('/^(current[-_])|active|dropdown$/', $classes); |
|
39 | 39 | } |
40 | 40 | |
41 | - function start_lvl( &$output, $depth = 0, $args = array() ) { |
|
41 | + function start_lvl(&$output, $depth = 0, $args = array()) { |
|
42 | 42 | $output .= "\n<ul class=\"dropdown-menu\">\n"; |
43 | 43 | } |
44 | 44 | |
45 | - function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { |
|
45 | + function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) { |
|
46 | 46 | $item_html = ''; |
47 | 47 | |
48 | - if ( isset( $item->title ) ) { |
|
49 | - parent::start_el( $item_html, $item, $depth, $args ); |
|
48 | + if (isset($item->title)) { |
|
49 | + parent::start_el($item_html, $item, $depth, $args); |
|
50 | 50 | |
51 | - if ( $item->is_dropdown && ( 0 === $depth ) ) { |
|
52 | - $item_html = str_replace( '<a', '<a class="dropdown-toggle" data-target="#"', $item_html ); |
|
53 | - $item_html = str_replace( '</a>', ' <b class="caret"></b></a>', $item_html ); |
|
54 | - } elseif ( stristr( $item_html, 'li class="divider"' ) ) { |
|
55 | - $item_html = preg_replace( '/<a[^>]*>.*?<\/a>/iU', '', $item_html ); |
|
56 | - } elseif ( stristr( $item_html, 'li class="dropdown-header"' ) ) { |
|
57 | - $item_html = preg_replace( '/<a[^>]*>(.*)<\/a>/iU', '$1', $item_html ); |
|
51 | + if ($item->is_dropdown && (0 === $depth)) { |
|
52 | + $item_html = str_replace('<a', '<a class="dropdown-toggle" data-target="#"', $item_html); |
|
53 | + $item_html = str_replace('</a>', ' <b class="caret"></b></a>', $item_html); |
|
54 | + } elseif (stristr($item_html, 'li class="divider"')) { |
|
55 | + $item_html = preg_replace('/<a[^>]*>.*?<\/a>/iU', '', $item_html); |
|
56 | + } elseif (stristr($item_html, 'li class="dropdown-header"')) { |
|
57 | + $item_html = preg_replace('/<a[^>]*>(.*)<\/a>/iU', '$1', $item_html); |
|
58 | 58 | } |
59 | 59 | |
60 | - $item_html = apply_filters( 'lsx_wp_nav_menu_item', $item_html ); |
|
60 | + $item_html = apply_filters('lsx_wp_nav_menu_item', $item_html); |
|
61 | 61 | $output .= $item_html; |
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
65 | - function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) { |
|
66 | - $element->is_dropdown = ( ( ! empty( $children_elements[ $element->ID ] ) && ( ( $depth + 1 ) < $max_depth || ( 0 === $max_depth ) ) ) ); |
|
65 | + function display_element($element, &$children_elements, $max_depth, $depth = 0, $args, &$output) { |
|
66 | + $element->is_dropdown = (( ! empty($children_elements[$element->ID]) && (($depth + 1) < $max_depth || (0 === $max_depth)))); |
|
67 | 67 | |
68 | - if ( $element->is_dropdown ) { |
|
69 | - if ( $depth > 0 ) { |
|
68 | + if ($element->is_dropdown) { |
|
69 | + if ($depth > 0) { |
|
70 | 70 | $element->classes[] = 'dropdown-submenu'; |
71 | 71 | } else { |
72 | 72 | $element->classes[] = 'dropdown'; |
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | - parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
|
76 | + parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | } |
@@ -79,14 +79,20 @@ discard block |
||
79 | 79 | <h2 class="entry-title"> |
80 | 80 | <?php if ( has_post_thumbnail() ) : ?> |
81 | 81 | <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
82 | - <?php else : ?> |
|
83 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
82 | + <?php else { |
|
83 | + : ?> |
|
84 | + <a href="<?php echo esc_url( $archive_link ); |
|
85 | +} |
|
86 | +?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
84 | 87 | <?php endif; ?> |
85 | 88 | |
86 | 89 | <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
87 | 90 | <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
88 | - <?php else : ?> |
|
89 | - <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
|
91 | + <?php else { |
|
92 | + : ?> |
|
93 | + <a href="<?php the_permalink(); |
|
94 | +} |
|
95 | +?>" rel="bookmark"><?php the_title(); ?></a> |
|
90 | 96 | <?php endif; ?> |
91 | 97 | |
92 | 98 | <?php if ( is_sticky() ) : ?> |
@@ -111,11 +117,13 @@ discard block |
||
111 | 117 | <?php the_content(); ?> |
112 | 118 | </div><!-- .entry-content --> |
113 | 119 | |
114 | - <?php else : ?> |
|
120 | + <?php else { |
|
121 | + : ?> |
|
115 | 122 | |
116 | 123 | <div class="entry-content"> |
117 | 124 | <?php |
118 | 125 | the_content(); |
126 | +} |
|
119 | 127 | |
120 | 128 | wp_link_pages( array( |
121 | 129 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | <?php lsx_entry_before(); ?> |
11 | 11 | |
12 | 12 | <?php |
13 | - $no_thumb_post_types = array( |
|
13 | + $no_thumb_post_types = array( |
|
14 | 14 | 'audio' => 'audio', |
15 | 15 | 'gallery' => 'gallery', |
16 | 16 | 'image' => 'image', |
@@ -18,38 +18,38 @@ discard block |
||
18 | 18 | 'quote' => 'quote', |
19 | 19 | 'video' => 'video', |
20 | 20 | ); |
21 | - $no_thumb_post_formats = apply_filters( 'lsx_no_thumb_post_formats', $no_thumb_post_types ); |
|
21 | + $no_thumb_post_formats = apply_filters('lsx_no_thumb_post_formats', $no_thumb_post_types); |
|
22 | 22 | |
23 | - $has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats ); |
|
23 | + $has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats); |
|
24 | 24 | |
25 | - if ( $has_thumb ) { |
|
25 | + if ($has_thumb) { |
|
26 | 26 | $thumb_class = 'has-thumb'; |
27 | 27 | } else { |
28 | 28 | $thumb_class = 'no-thumb'; |
29 | 29 | } |
30 | 30 | |
31 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); |
|
31 | + $blog_layout = apply_filters('lsx_blog_layout', 'default'); |
|
32 | 32 | |
33 | 33 | $image_class = ''; |
34 | 34 | |
35 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); |
|
36 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' ); |
|
35 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
|
36 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single'); |
|
37 | 37 | |
38 | - if ( is_array( $image_arr ) ) { |
|
38 | + if (is_array($image_arr)) { |
|
39 | 39 | $image_src = $image_arr[0]; |
40 | 40 | } |
41 | 41 | ?> |
42 | 42 | |
43 | -<article id="post-<?php the_ID(); ?>" <?php post_class( array( 'lsx-slot', $thumb_class ) ); ?>> |
|
43 | +<article id="post-<?php the_ID(); ?>" <?php post_class(array('lsx-slot', $thumb_class)); ?>> |
|
44 | 44 | <?php lsx_entry_top(); ?> |
45 | 45 | |
46 | 46 | <div class="entry-layout"> |
47 | 47 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> |
48 | 48 | <header class="entry-header"> |
49 | - <?php if ( $has_thumb ) : ?> |
|
50 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> |
|
49 | + <?php if ($has_thumb) : ?> |
|
50 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> |
|
51 | 51 | <a class="thumbnail" href="<?php the_permalink(); ?>"> |
52 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
52 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
53 | 53 | </a> |
54 | 54 | </div> |
55 | 55 | <?php endif; ?> |
@@ -57,37 +57,37 @@ discard block |
||
57 | 57 | <?php |
58 | 58 | $format = get_post_format(); |
59 | 59 | |
60 | - if ( false === $format ) { |
|
60 | + if (false === $format) { |
|
61 | 61 | $format = 'standard'; |
62 | - $show_on_front = get_option( 'show_on_front', 'posts' ); |
|
62 | + $show_on_front = get_option('show_on_front', 'posts'); |
|
63 | 63 | |
64 | - if ( 'page' === $show_on_front ) { |
|
65 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); |
|
64 | + if ('page' === $show_on_front) { |
|
65 | + $archive_link = get_permalink(get_option('page_for_posts')); |
|
66 | 66 | } else { |
67 | 67 | $archive_link = home_url(); |
68 | 68 | } |
69 | 69 | } else { |
70 | - $archive_link = get_post_format_link( $format ); |
|
70 | + $archive_link = get_post_format_link($format); |
|
71 | 71 | } |
72 | 72 | |
73 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
73 | + $format = lsx_translate_format_to_fontawesome($format); |
|
74 | 74 | ?> |
75 | 75 | |
76 | 76 | <h2 class="entry-title"> |
77 | - <?php if ( has_post_thumbnail() ) : ?> |
|
78 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
77 | + <?php if (has_post_thumbnail()) : ?> |
|
78 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a> |
|
79 | 79 | <?php else : ?> |
80 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
80 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a> |
|
81 | 81 | <?php endif; ?> |
82 | 82 | |
83 | - <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
|
84 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
83 | + <?php if (has_post_format(array('link'))) : ?> |
|
84 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
85 | 85 | <?php else : ?> |
86 | 86 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
87 | 87 | <?php endif; ?> |
88 | 88 | |
89 | - <?php if ( is_sticky() ) : ?> |
|
90 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> |
|
89 | + <?php if (is_sticky()) : ?> |
|
90 | + <span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> |
|
91 | 91 | <?php endif; ?> |
92 | 92 | </h2> |
93 | 93 | <div class="entry-meta"> |
@@ -98,27 +98,27 @@ discard block |
||
98 | 98 | |
99 | 99 | </header><!-- .entry-header --> |
100 | 100 | |
101 | - <?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?> |
|
101 | + <?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?> |
|
102 | 102 | |
103 | - <?php if ( lsx_post_format_force_content_on_list() && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
103 | + <?php if (lsx_post_format_force_content_on_list() && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
104 | 104 | |
105 | 105 | <div class="entry-summary"> |
106 | 106 | <?php |
107 | - if ( ! has_excerpt() ) { |
|
107 | + if ( ! has_excerpt()) { |
|
108 | 108 | |
109 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>'; |
|
110 | - $content = wp_trim_words( get_the_content(), 50 ); |
|
109 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>'; |
|
110 | + $content = wp_trim_words(get_the_content(), 50); |
|
111 | 111 | $content = '<p>' . $content . '</p>' . $excerpt_more; |
112 | - echo wp_kses_post( $content ); |
|
112 | + echo wp_kses_post($content); |
|
113 | 113 | } else { |
114 | 114 | the_excerpt(); |
115 | 115 | } |
116 | 116 | ?> |
117 | 117 | </div><!-- .entry-summary --> |
118 | 118 | |
119 | - <?php elseif ( has_post_format( array( 'link' ) ) ) : ?> |
|
119 | + <?php elseif (has_post_format(array('link'))) : ?> |
|
120 | 120 | |
121 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
121 | + <?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
122 | 122 | |
123 | 123 | <div class="entry-content"> |
124 | 124 | <?php the_content(); ?> |
@@ -130,12 +130,12 @@ discard block |
||
130 | 130 | <?php |
131 | 131 | the_content(); |
132 | 132 | |
133 | - wp_link_pages( array( |
|
133 | + wp_link_pages(array( |
|
134 | 134 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
135 | 135 | 'after' => '</div></div>', |
136 | 136 | 'link_before' => '<span>', |
137 | 137 | 'link_after' => '</span>', |
138 | - ) ); |
|
138 | + )); |
|
139 | 139 | ?> |
140 | 140 | </div><!-- .entry-content --> |
141 | 141 | |
@@ -151,23 +151,23 @@ discard block |
||
151 | 151 | |
152 | 152 | <?php lsx_content_post_tags(); ?> |
153 | 153 | |
154 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> |
|
154 | + <?php if (comments_open() && ! empty($comments_number)) : ?> |
|
155 | 155 | <div class="post-comments"> |
156 | 156 | <a href="<?php the_permalink(); ?>#comments"> |
157 | 157 | <?php |
158 | - if ( '1' === $comments_number ) { |
|
159 | - echo esc_html_x( 'One Comment', 'content.php', 'lsx' ); |
|
158 | + if ('1' === $comments_number) { |
|
159 | + echo esc_html_x('One Comment', 'content.php', 'lsx'); |
|
160 | 160 | } else { |
161 | 161 | printf( |
162 | 162 | /* Translators: %s: number of comments */ |
163 | - esc_html( _nx( |
|
163 | + esc_html(_nx( |
|
164 | 164 | '%s Comment', |
165 | 165 | '%s Comments', |
166 | 166 | $comments_number, |
167 | 167 | 'content.php', |
168 | 168 | 'lsx' |
169 | - ) ), |
|
170 | - esc_html( number_format_i18n( $comments_number ) ) |
|
169 | + )), |
|
170 | + esc_html(number_format_i18n($comments_number)) |
|
171 | 171 | ); |
172 | 172 | } |
173 | 173 | ?> |
@@ -177,11 +177,11 @@ discard block |
||
177 | 177 | </div> |
178 | 178 | </div> |
179 | 179 | |
180 | - <?php if ( has_post_thumbnail() ) : ?> |
|
180 | + <?php if (has_post_thumbnail()) : ?> |
|
181 | 181 | |
182 | 182 | <div class="entry-image hidden-xs"> |
183 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> |
|
184 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
183 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> |
|
184 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
185 | 185 | </a> |
186 | 186 | </div> |
187 | 187 |
@@ -46,7 +46,6 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * Defers the JS loading till Last |
48 | 48 | * |
49 | - * @param string $url The url to check and defer. |
|
50 | 49 | * @return string |
51 | 50 | */ |
52 | 51 | public function preload_css( $tag, $handle, $href, $media ) { |
@@ -59,7 +58,6 @@ discard block |
||
59 | 58 | /** |
60 | 59 | * Defers the JS loading till Last |
61 | 60 | * |
62 | - * @param string $url The url to check and defer. |
|
63 | 61 | * @return string |
64 | 62 | */ |
65 | 63 | public function defer_parsing_of_js( $tag, $handle, $href ) { |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if ( ! defined('ABSPATH')) { |
|
4 | 4 | exit; |
5 | 5 | } |
6 | 6 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | public function __construct() { |
29 | 29 | //add_filter( 'style_loader_tag', array( $this, 'preload_css' ), 100, 4 ); |
30 | 30 | //add_filter( 'script_loader_tag', array( $this, 'defer_parsing_of_js' ), 100, 3 ); |
31 | - add_action( 'init', array( $this, 'pum_remove_admin_bar_tools' ), 100 ); |
|
31 | + add_action('init', array($this, 'pum_remove_admin_bar_tools'), 100); |
|
32 | 32 | } |
33 | 33 | /** |
34 | 34 | * Return an instance of this class. |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public static function get_instance() { |
40 | 40 | // If the single instance hasn't been set, set it now. |
41 | - if ( null === self::$instance ) { |
|
41 | + if (null === self::$instance) { |
|
42 | 42 | self::$instance = new self; |
43 | 43 | } |
44 | 44 | return self::$instance; |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | * @param string $url The url to check and defer. |
51 | 51 | * @return string |
52 | 52 | */ |
53 | - public function preload_css( $tag, $handle, $href, $media ) { |
|
54 | - if ( 'lsx_fonts' === $handle || 'fontawesome' === $handle ) { |
|
55 | - $tag = str_replace( 'href', ' preload href', $tag ); |
|
53 | + public function preload_css($tag, $handle, $href, $media) { |
|
54 | + if ('lsx_fonts' === $handle || 'fontawesome' === $handle) { |
|
55 | + $tag = str_replace('href', ' preload href', $tag); |
|
56 | 56 | } |
57 | 57 | return $tag; |
58 | 58 | } |
@@ -63,18 +63,18 @@ discard block |
||
63 | 63 | * @param string $url The url to check and defer. |
64 | 64 | * @return string |
65 | 65 | */ |
66 | - public function defer_parsing_of_js( $tag, $handle, $href ) { |
|
67 | - $skip_defer = apply_filters( 'lsx_defer_parsing_of_js', false, $tag, $handle, $href ); |
|
68 | - if ( ! is_admin() && false !== stripos( $href, '.js' ) && false === stripos( $href, 'jquery.js' ) && false === $skip_defer ) { |
|
69 | - $tag = str_replace( 'src=', ' defer src=', $tag ); |
|
66 | + public function defer_parsing_of_js($tag, $handle, $href) { |
|
67 | + $skip_defer = apply_filters('lsx_defer_parsing_of_js', false, $tag, $handle, $href); |
|
68 | + if ( ! is_admin() && false !== stripos($href, '.js') && false === stripos($href, 'jquery.js') && false === $skip_defer) { |
|
69 | + $tag = str_replace('src=', ' defer src=', $tag); |
|
70 | 70 | } |
71 | 71 | return $tag; |
72 | 72 | } |
73 | 73 | |
74 | 74 | public function pum_remove_admin_bar_tools() { |
75 | - remove_action( 'admin_bar_menu', array( 'PUM_Modules_Admin_Bar', 'toolbar_links' ), 999 ); |
|
76 | - remove_action( 'wp_footer', array( 'PUM_Modules_Admin_Bar', 'admin_bar_styles' ), 999 ); |
|
77 | - remove_action( 'init', array( 'PUM_Modules_Admin_Bar', 'show_debug_bar' ) ); |
|
75 | + remove_action('admin_bar_menu', array('PUM_Modules_Admin_Bar', 'toolbar_links'), 999); |
|
76 | + remove_action('wp_footer', array('PUM_Modules_Admin_Bar', 'admin_bar_styles'), 999); |
|
77 | + remove_action('init', array('PUM_Modules_Admin_Bar', 'show_debug_bar')); |
|
78 | 78 | } |
79 | 79 | } |
80 | 80 | LSX_Optimisation::get_instance(); |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * @subpackage deprecated |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * |
10 | 10 | * @since 10.2 |
11 | 11 | */ |
12 | -if ( interface_exists( 'WPSEO_Graph_Piece' ) ) { |
|
12 | +if (interface_exists('WPSEO_Graph_Piece')) { |
|
13 | 13 | |
14 | 14 | class LSX_Schema_Graph_Piece implements WPSEO_Graph_Piece { |
15 | 15 | /** |
@@ -53,13 +53,13 @@ discard block |
||
53 | 53 | * |
54 | 54 | * @param \WPSEO_Schema_Context $context A value object with context variables. |
55 | 55 | */ |
56 | - public function __construct( WPSEO_Schema_Context $context ) { |
|
56 | + public function __construct(WPSEO_Schema_Context $context) { |
|
57 | 57 | $this->context = $context; |
58 | 58 | $this->place_ids = array(); |
59 | - $this->post = get_post( $this->context->id ); |
|
60 | - $this->post_url = get_permalink( $this->context->id ); |
|
59 | + $this->post = get_post($this->context->id); |
|
60 | + $this->post_url = get_permalink($this->context->id); |
|
61 | 61 | $this->is_top_level = false; |
62 | - if ( is_object( $this->post ) && isset( $this->post->post_parent ) && ( false === $this->post->post_parent || 0 === $this->post->post_parent || '' === $this->post->post_parent ) ) { |
|
62 | + if (is_object($this->post) && isset($this->post->post_parent) && (false === $this->post->post_parent || 0 === $this->post->post_parent || '' === $this->post->post_parent)) { |
|
63 | 63 | $this->is_top_level = true; |
64 | 64 | } |
65 | 65 | } |
@@ -69,13 +69,13 @@ discard block |
||
69 | 69 | * @return bool |
70 | 70 | */ |
71 | 71 | public function is_needed() { |
72 | - if ( ! is_singular() ) { |
|
72 | + if ( ! is_singular()) { |
|
73 | 73 | return false; |
74 | 74 | } |
75 | - if ( false === $this->context->site_represents ) { |
|
75 | + if (false === $this->context->site_represents) { |
|
76 | 76 | return false; |
77 | 77 | } |
78 | - return LSX_Schema_Utils::is_type( get_post_type(), $this->post_type ); |
|
78 | + return LSX_Schema_Utils::is_type(get_post_type(), $this->post_type); |
|
79 | 79 | } |
80 | 80 | /** |
81 | 81 | * Returns Review data. |
@@ -94,32 +94,32 @@ discard block |
||
94 | 94 | * @param boolean $include_aggregate |
95 | 95 | * @return array $data |
96 | 96 | */ |
97 | - public function add_reviews( $data, $data_key = 'reviews', $include_aggregate = true ) { |
|
98 | - $reviews = get_post_meta( $this->context->id, 'review_to_' . $this->post_type, false ); |
|
97 | + public function add_reviews($data, $data_key = 'reviews', $include_aggregate = true) { |
|
98 | + $reviews = get_post_meta($this->context->id, 'review_to_' . $this->post_type, false); |
|
99 | 99 | $reviews_array = array(); |
100 | - if ( ! empty( $reviews ) ) { |
|
100 | + if ( ! empty($reviews)) { |
|
101 | 101 | $aggregate_value = 1; |
102 | 102 | $review_count = 0; |
103 | - foreach ( $reviews as $review_id ) { |
|
104 | - $rating = get_post_meta( $review_id, 'rating', true ); |
|
105 | - $author = get_post_meta( $review_id, 'reviewer_name', true ); |
|
106 | - $description = wp_strip_all_tags( get_the_excerpt( $review_id ) ); |
|
103 | + foreach ($reviews as $review_id) { |
|
104 | + $rating = get_post_meta($review_id, 'rating', true); |
|
105 | + $author = get_post_meta($review_id, 'reviewer_name', true); |
|
106 | + $description = wp_strip_all_tags(get_the_excerpt($review_id)); |
|
107 | 107 | $review_args = array( |
108 | 108 | 'author' => $author, |
109 | 109 | 'reviewBody' => $description, |
110 | 110 | ); |
111 | 111 | // Add in the review rating. |
112 | - if ( false !== $rating && '' !== $rating && '0' !== $rating && 0 !== $rating ) { |
|
112 | + if (false !== $rating && '' !== $rating && '0' !== $rating && 0 !== $rating) { |
|
113 | 113 | $review_args['reviewRating'] = array( |
114 | 114 | '@type' => 'Rating', |
115 | 115 | 'ratingValue' => $rating, |
116 | 116 | ); |
117 | 117 | } |
118 | - $reviews_array = LSX_Schema_Utils::add_review( $reviews_array, $review_id, $this->context, $review_args ); |
|
118 | + $reviews_array = LSX_Schema_Utils::add_review($reviews_array, $review_id, $this->context, $review_args); |
|
119 | 119 | $review_count++; |
120 | 120 | } |
121 | - if ( ! empty( $reviews_array ) ) { |
|
122 | - if ( true === $include_aggregate ) { |
|
121 | + if ( ! empty($reviews_array)) { |
|
122 | + if (true === $include_aggregate) { |
|
123 | 123 | $data['aggregateRating'] = array( |
124 | 124 | '@type' => 'AggregateRating', |
125 | 125 | 'ratingValue' => (string) $aggregate_value, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | 'worstRating' => '1', |
129 | 129 | ); |
130 | 130 | } |
131 | - $data[ $data_key ] = $reviews_array; |
|
131 | + $data[$data_key] = $reviews_array; |
|
132 | 132 | } |
133 | 133 | } |
134 | 134 | return $data; |
@@ -140,30 +140,30 @@ discard block |
||
140 | 140 | * @param string $data_key |
141 | 141 | * @return array $data |
142 | 142 | */ |
143 | - public function add_articles( $data, $data_key = 'subjectOf' ) { |
|
144 | - $posts = get_post_meta( $this->context->id, 'post_to_' . $this->post_type, false ); |
|
143 | + public function add_articles($data, $data_key = 'subjectOf') { |
|
144 | + $posts = get_post_meta($this->context->id, 'post_to_' . $this->post_type, false); |
|
145 | 145 | $posts_array = array(); |
146 | - if ( ! empty( $posts ) ) { |
|
147 | - foreach ( $posts as $post_id ) { |
|
146 | + if ( ! empty($posts)) { |
|
147 | + foreach ($posts as $post_id) { |
|
148 | 148 | $post_args = array( |
149 | - 'articleBody' => wp_strip_all_tags( get_the_excerpt( $post_id ) ), |
|
150 | - 'headline' => get_the_title( $post_id ), |
|
149 | + 'articleBody' => wp_strip_all_tags(get_the_excerpt($post_id)), |
|
150 | + 'headline' => get_the_title($post_id), |
|
151 | 151 | ); |
152 | - $section = get_the_term_list( $post_id, 'category' ); |
|
153 | - if ( ! is_wp_error( $section ) && '' !== $section && false !== $section ) { |
|
154 | - $post_args['articleSection'] = wp_strip_all_tags( $section ); |
|
152 | + $section = get_the_term_list($post_id, 'category'); |
|
153 | + if ( ! is_wp_error($section) && '' !== $section && false !== $section) { |
|
154 | + $post_args['articleSection'] = wp_strip_all_tags($section); |
|
155 | 155 | } |
156 | - if ( $this->context->site_represents_reference ) { |
|
156 | + if ($this->context->site_represents_reference) { |
|
157 | 157 | $post_args['publisher'] = $this->context->site_represents_reference; |
158 | 158 | } |
159 | - $image_url = get_the_post_thumbnail_url( $post_id, 'lsx-thumbnail-wide' ); |
|
160 | - if ( false !== $image_url ) { |
|
159 | + $image_url = get_the_post_thumbnail_url($post_id, 'lsx-thumbnail-wide'); |
|
160 | + if (false !== $image_url) { |
|
161 | 161 | $post_args['image'] = $image_url; |
162 | 162 | } |
163 | - $posts_array = LSX_Schema_Utils::add_article( $posts_array, $post_id, $this->context, $post_args ); |
|
163 | + $posts_array = LSX_Schema_Utils::add_article($posts_array, $post_id, $this->context, $post_args); |
|
164 | 164 | } |
165 | - if ( ! empty( $posts_array ) ) { |
|
166 | - $data[ $data_key ] = $posts_array; |
|
165 | + if ( ! empty($posts_array)) { |
|
166 | + $data[$data_key] = $posts_array; |
|
167 | 167 | } |
168 | 168 | } |
169 | 169 | return $data; |
@@ -175,19 +175,19 @@ discard block |
||
175 | 175 | * |
176 | 176 | * @return array $data |
177 | 177 | */ |
178 | - public function add_connections( $data ) { |
|
178 | + public function add_connections($data) { |
|
179 | 179 | $connections_array = array(); |
180 | - if ( $this->is_top_level ) { |
|
181 | - $connections_array = $this->add_regions( $connections_array ); |
|
182 | - $connections_array = $this->add_accommodation( $connections_array ); |
|
183 | - if ( ! empty( $connections_array ) ) { |
|
180 | + if ($this->is_top_level) { |
|
181 | + $connections_array = $this->add_regions($connections_array); |
|
182 | + $connections_array = $this->add_accommodation($connections_array); |
|
183 | + if ( ! empty($connections_array)) { |
|
184 | 184 | $data['containsPlace'] = $connections_array; |
185 | 185 | } |
186 | 186 | } else { |
187 | - $connections_array = $this->add_countries( $connections_array ); |
|
187 | + $connections_array = $this->add_countries($connections_array); |
|
188 | 188 | $data['containedInPlace'] = $connections_array; |
189 | 189 | $connections_array = array(); |
190 | - $connections_array = $this->add_accommodation( $connections_array ); |
|
190 | + $connections_array = $this->add_accommodation($connections_array); |
|
191 | 191 | $data['containsPlace'] = $connections_array; |
192 | 192 | } |
193 | 193 | return $data; |
@@ -201,14 +201,14 @@ discard block |
||
201 | 201 | * |
202 | 202 | * @return array $data Review data. |
203 | 203 | */ |
204 | - public function add_taxonomy_terms( $data, $data_key, $taxonomy ) { |
|
204 | + public function add_taxonomy_terms($data, $data_key, $taxonomy) { |
|
205 | 205 | /** |
206 | 206 | * Filter: 'lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy' - Allow changing the taxonomy used to assign keywords to a post type Review data. |
207 | 207 | * |
208 | 208 | * @api string $taxonomy The chosen taxonomy. |
209 | 209 | */ |
210 | - $taxonomy = apply_filters( 'lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy', $taxonomy ); |
|
211 | - return LSX_Schema_Utils::add_terms( $data, $this->context->id, $data_key, $taxonomy ); |
|
210 | + $taxonomy = apply_filters('lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy', $taxonomy); |
|
211 | + return LSX_Schema_Utils::add_terms($data, $this->context->id, $data_key, $taxonomy); |
|
212 | 212 | } |
213 | 213 | /** |
214 | 214 | * Adds the custom field value for the supplied key |
@@ -220,10 +220,10 @@ discard block |
||
220 | 220 | * |
221 | 221 | * @return array $data Review data. |
222 | 222 | */ |
223 | - public function add_custom_field( $data, $data_key, $meta_key, $single = true ) { |
|
224 | - $value = get_post_meta( $this->context->id, $meta_key, $single ); |
|
225 | - if ( '' !== $value && false !== $value ) { |
|
226 | - $data[ $data_key ] = $value; |
|
223 | + public function add_custom_field($data, $data_key, $meta_key, $single = true) { |
|
224 | + $value = get_post_meta($this->context->id, $meta_key, $single); |
|
225 | + if ('' !== $value && false !== $value) { |
|
226 | + $data[$data_key] = $value; |
|
227 | 227 | } |
228 | 228 | return $data; |
229 | 229 | } |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage scripts |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_scripts' ) ) : |
|
13 | +if ( ! function_exists('lsx_scripts')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Enqueue scripts, fonts and styles. |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts', 5 ); |
|
29 | +add_action('wp_enqueue_scripts', 'lsx_scripts', 5); |
|
30 | 30 | |
31 | -if ( ! function_exists( 'lsx_admin_scripts' ) ) : |
|
31 | +if ( ! function_exists('lsx_admin_scripts')) : |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Enqueue scripts (admin). |
@@ -37,14 +37,14 @@ discard block |
||
37 | 37 | * @subpackage scripts |
38 | 38 | */ |
39 | 39 | function lsx_admin_scripts() { |
40 | - wp_enqueue_script( 'lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array( 'jquery' ), LSX_VERSION, true ); |
|
40 | + wp_enqueue_script('lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array('jquery'), LSX_VERSION, true); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | endif; |
44 | 44 | |
45 | -add_action( 'admin_enqueue_scripts', 'lsx_admin_scripts' ); |
|
45 | +add_action('admin_enqueue_scripts', 'lsx_admin_scripts'); |
|
46 | 46 | |
47 | -if ( ! function_exists( 'lsx_scripts_add_styles' ) ) : |
|
47 | +if ( ! function_exists('lsx_scripts_add_styles')) : |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Enqueue styles. |
@@ -53,23 +53,23 @@ discard block |
||
53 | 53 | * @subpackage scripts |
54 | 54 | */ |
55 | 55 | function lsx_scripts_add_styles() { |
56 | - wp_enqueue_style( 'lsx_fonts', get_template_directory_uri() . '/assets/css/lsx-fonts.css', array(), LSX_VERSION ); |
|
56 | + wp_enqueue_style('lsx_fonts', get_template_directory_uri() . '/assets/css/lsx-fonts.css', array(), LSX_VERSION); |
|
57 | 57 | |
58 | - wp_register_style( 'fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION ); |
|
59 | - wp_style_add_data( 'fontawesome', 'rtl', 'replace' ); |
|
58 | + wp_register_style('fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION); |
|
59 | + wp_style_add_data('fontawesome', 'rtl', 'replace'); |
|
60 | 60 | |
61 | - wp_register_style( 'bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION ); |
|
62 | - wp_style_add_data( 'bootstrap', 'rtl', 'replace' ); |
|
61 | + wp_register_style('bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION); |
|
62 | + wp_style_add_data('bootstrap', 'rtl', 'replace'); |
|
63 | 63 | |
64 | - wp_enqueue_style( 'lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array( 'lsx_fonts', 'fontawesome', 'bootstrap'/*, 'slick'*/ ), LSX_VERSION ); |
|
65 | - wp_enqueue_style( 'lsx_gutenberg', get_template_directory_uri() . '/assets/css/gutenberg.css', array( 'lsx_main' ), LSX_VERSION ); |
|
64 | + wp_enqueue_style('lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array('lsx_fonts', 'fontawesome', 'bootstrap'/*, 'slick'*/), LSX_VERSION); |
|
65 | + wp_enqueue_style('lsx_gutenberg', get_template_directory_uri() . '/assets/css/gutenberg.css', array('lsx_main'), LSX_VERSION); |
|
66 | 66 | |
67 | - wp_style_add_data( 'lsx_main', 'rtl', 'replace' ); |
|
67 | + wp_style_add_data('lsx_main', 'rtl', 'replace'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | endif; |
71 | 71 | |
72 | -if ( ! function_exists( 'lsx_scripts_add_fonts' ) ) : |
|
72 | +if ( ! function_exists('lsx_scripts_add_fonts')) : |
|
73 | 73 | /** |
74 | 74 | * Enqueue fonts. |
75 | 75 | * |
@@ -77,14 +77,14 @@ discard block |
||
77 | 77 | * @subpackage scripts |
78 | 78 | */ |
79 | 79 | function lsx_scripts_add_fonts() { |
80 | - $disable_fonts = get_theme_mod( 'lsx_disable_fonts', false ); |
|
81 | - if ( false !== $disable_fonts ) { |
|
80 | + $disable_fonts = get_theme_mod('lsx_disable_fonts', false); |
|
81 | + if (false !== $disable_fonts) { |
|
82 | 82 | return; |
83 | 83 | } |
84 | 84 | } |
85 | 85 | endif; |
86 | 86 | |
87 | -if ( ! function_exists( 'lsx_scripts_add_scripts' ) ) : |
|
87 | +if ( ! function_exists('lsx_scripts_add_scripts')) : |
|
88 | 88 | |
89 | 89 | /** |
90 | 90 | * Enqueue scripts. |
@@ -93,39 +93,39 @@ discard block |
||
93 | 93 | * @subpackage scripts |
94 | 94 | */ |
95 | 95 | function lsx_scripts_add_scripts() { |
96 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
97 | - wp_enqueue_script( 'comment-reply' ); |
|
96 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
97 | + wp_enqueue_script('comment-reply'); |
|
98 | 98 | } |
99 | 99 | |
100 | - wp_enqueue_script( 'platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true ); |
|
101 | - wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
100 | + wp_enqueue_script('platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true); |
|
101 | + wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array('jquery'), LSX_VERSION, true); |
|
102 | 102 | |
103 | - wp_enqueue_script( 'imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array( 'masonry' ), LSX_VERSION, true ); |
|
104 | - wp_enqueue_script( 'scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
105 | - wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
106 | - wp_enqueue_script( 'slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array( 'jquery', 'slick' ), LSX_VERSION, true ); |
|
107 | - wp_enqueue_script( 'picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true ); |
|
103 | + wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array('masonry'), LSX_VERSION, true); |
|
104 | + wp_enqueue_script('scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array('jquery'), LSX_VERSION, true); |
|
105 | + wp_enqueue_script('slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array('jquery'), LSX_VERSION, true); |
|
106 | + wp_enqueue_script('slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array('jquery', 'slick'), LSX_VERSION, true); |
|
107 | + wp_enqueue_script('picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true); |
|
108 | 108 | |
109 | - if ( defined( 'SCRIPT_DEBUG' ) ) { |
|
109 | + if (defined('SCRIPT_DEBUG')) { |
|
110 | 110 | $prefix = 'src/'; |
111 | 111 | $suffix = ''; |
112 | 112 | } else { |
113 | 113 | $prefix = ''; |
114 | 114 | $suffix = '.min'; |
115 | 115 | } |
116 | - wp_enqueue_script( 'lsx_script', get_template_directory_uri() . '/assets/js/' . $prefix . 'lsx' . $suffix . '.js', array( 'jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill' ), LSX_VERSION, true ); |
|
116 | + wp_enqueue_script('lsx_script', get_template_directory_uri() . '/assets/js/' . $prefix . 'lsx' . $suffix . '.js', array('jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill'), LSX_VERSION, true); |
|
117 | 117 | |
118 | 118 | $param_array = array( |
119 | - 'columns' => apply_filters( 'lsx_archive_column_number', 3 ), |
|
120 | - 'stickyMenuSelector' => apply_filters( 'lsx_sticky_menu_selector', 'header.navbar' ), |
|
119 | + 'columns' => apply_filters('lsx_archive_column_number', 3), |
|
120 | + 'stickyMenuSelector' => apply_filters('lsx_sticky_menu_selector', 'header.navbar'), |
|
121 | 121 | ); |
122 | 122 | |
123 | - wp_localize_script( 'lsx_script', 'lsx_params', $param_array ); |
|
123 | + wp_localize_script('lsx_script', 'lsx_params', $param_array); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | endif; |
127 | 127 | |
128 | -if ( ! function_exists( 'lsx_scripts_child_theme' ) ) : |
|
128 | +if ( ! function_exists('lsx_scripts_child_theme')) : |
|
129 | 129 | |
130 | 130 | /** |
131 | 131 | * Enqueue scripts and styles (for child theme). |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | * @subpackage scripts |
135 | 135 | */ |
136 | 136 | function lsx_scripts_child_theme() { |
137 | - if ( is_child_theme() && file_exists( get_stylesheet_directory() . '/assets/css/custom.css' ) ) { |
|
138 | - wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array( 'lsx_main' ), LSX_VERSION ); |
|
139 | - wp_style_add_data( 'child-css', 'rtl', 'replace' ); |
|
137 | + if (is_child_theme() && file_exists(get_stylesheet_directory() . '/assets/css/custom.css')) { |
|
138 | + wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array('lsx_main'), LSX_VERSION); |
|
139 | + wp_style_add_data('child-css', 'rtl', 'replace'); |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | |
143 | 143 | endif; |
144 | 144 | |
145 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999 ); |
|
145 | +add_action('wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999); |
@@ -645,7 +645,6 @@ |
||
645 | 645 | /** |
646 | 646 | * Show the 'Back to My Courses' button on messages. |
647 | 647 | * |
648 | - * @param [type] $message_post_id |
|
649 | 648 | * @return void |
650 | 649 | */ |
651 | 650 | public function lsx_sensei_back_message_button( $courses_link ) { |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage sensei |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! class_exists( 'LSX_Sensei' ) ) : |
|
13 | +if ( ! class_exists('LSX_Sensei')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * The LSX Sensei integration class |
@@ -50,60 +50,60 @@ discard block |
||
50 | 50 | |
51 | 51 | global $woothemes_sensei; |
52 | 52 | |
53 | - add_action( 'wp_enqueue_scripts', array( $this, 'lsx_sensei_scripts_add_styles' ) ); |
|
53 | + add_action('wp_enqueue_scripts', array($this, 'lsx_sensei_scripts_add_styles')); |
|
54 | 54 | |
55 | - remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); |
|
56 | - add_action( 'sensei_before_main_content', array( $this, 'lsx_sensei_theme_wrapper_start' ) ); |
|
55 | + remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10); |
|
56 | + add_action('sensei_before_main_content', array($this, 'lsx_sensei_theme_wrapper_start')); |
|
57 | 57 | |
58 | - remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); |
|
59 | - add_action( 'sensei_after_main_content', array( $this, 'lsx_sensei_theme_wrapper_end' ) ); |
|
58 | + remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10); |
|
59 | + add_action('sensei_after_main_content', array($this, 'lsx_sensei_theme_wrapper_end')); |
|
60 | 60 | |
61 | - add_filter( 'get_the_archive_title', array( $this, 'lsx_sensei_modify_archive_title' ), 99, 1 ); |
|
61 | + add_filter('get_the_archive_title', array($this, 'lsx_sensei_modify_archive_title'), 99, 1); |
|
62 | 62 | |
63 | 63 | // LSX. |
64 | - add_filter( 'lsx_global_header_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) ); |
|
64 | + add_filter('lsx_global_header_disable', array($this, 'lsx_sensei_disable_lsx_banner')); |
|
65 | 65 | // LSX Banners - Plugin, Placeholders. |
66 | - add_filter( 'lsx_banner_plugin_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) ); |
|
66 | + add_filter('lsx_banner_plugin_disable', array($this, 'lsx_sensei_disable_lsx_banner')); |
|
67 | 67 | // LSX Banners - Banner. |
68 | - add_filter( 'lsx_banner_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) ); |
|
68 | + add_filter('lsx_banner_disable', array($this, 'lsx_sensei_disable_lsx_banner')); |
|
69 | 69 | |
70 | - add_filter( 'course_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 ); |
|
71 | - add_filter( 'sensei_lesson_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 ); |
|
70 | + add_filter('course_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1); |
|
71 | + add_filter('sensei_lesson_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1); |
|
72 | 72 | |
73 | - add_filter( 'course_category_title', array( $this, 'lsx_sensei_category_title' ), 10, 1 ); |
|
73 | + add_filter('course_category_title', array($this, 'lsx_sensei_category_title'), 10, 1); |
|
74 | 74 | |
75 | - add_action( 'sensei_course_content_inside_after', array( $this, 'lsx_sensei_add_buttons' ), 9 ); |
|
75 | + add_action('sensei_course_content_inside_after', array($this, 'lsx_sensei_add_buttons'), 9); |
|
76 | 76 | |
77 | - add_filter( 'sensei_wc_paid_courses_add_to_cart_button_text', array( $this, 'lsx_sensei_add_to_cart_text' ) ); |
|
77 | + add_filter('sensei_wc_paid_courses_add_to_cart_button_text', array($this, 'lsx_sensei_add_to_cart_text')); |
|
78 | 78 | |
79 | - add_action( 'lsx_content_wrap_before', array( $this, 'lsx_sensei_results_header' ) ); |
|
79 | + add_action('lsx_content_wrap_before', array($this, 'lsx_sensei_results_header')); |
|
80 | 80 | |
81 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 ); |
|
82 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 ); |
|
81 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1); |
|
82 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1); |
|
83 | 83 | |
84 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 ); |
|
85 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 ); |
|
84 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1); |
|
85 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1); |
|
86 | 86 | |
87 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 ); |
|
88 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 ); |
|
87 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1); |
|
88 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1); |
|
89 | 89 | |
90 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 ); |
|
91 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 ); |
|
90 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1); |
|
91 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1); |
|
92 | 92 | |
93 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 ); |
|
94 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 ); |
|
93 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1); |
|
94 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1); |
|
95 | 95 | |
96 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 ); |
|
97 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 ); |
|
96 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1); |
|
97 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1); |
|
98 | 98 | |
99 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_single_message_breadcrumb_filter' ), 40, 1 ); |
|
100 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_single_message_breadcrumb_filter' ), 40, 1 ); |
|
99 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_single_message_breadcrumb_filter'), 40, 1); |
|
100 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_single_message_breadcrumb_filter'), 40, 1); |
|
101 | 101 | |
102 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 ); |
|
103 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 ); |
|
102 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1); |
|
103 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1); |
|
104 | 104 | |
105 | - add_action( 'sensei_archive_before_message_loop', array( $this, 'lsx_sensei_back_message_button' ) ); |
|
106 | - add_action( 'sensei_content_message_after', array( $this, 'lsx_sensei_view_message_button' ) ); |
|
105 | + add_action('sensei_archive_before_message_loop', array($this, 'lsx_sensei_back_message_button')); |
|
106 | + add_action('sensei_content_message_after', array($this, 'lsx_sensei_view_message_button')); |
|
107 | 107 | |
108 | 108 | } |
109 | 109 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public static function get_instance() { |
117 | 117 | // If the single instance hasn't been set, set it now. |
118 | - if ( null === self::$instance ) { |
|
118 | + if (null === self::$instance) { |
|
119 | 119 | self::$instance = new self(); |
120 | 120 | } |
121 | 121 | return self::$instance; |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | * @subpackage sensei |
129 | 129 | */ |
130 | 130 | public function lsx_sensei_scripts_add_styles() { |
131 | - wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array( 'lsx_main' ), LSX_VERSION ); |
|
132 | - wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' ); |
|
131 | + wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array('lsx_main'), LSX_VERSION); |
|
132 | + wp_style_add_data('sensei-lsx', 'rtl', 'replace'); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | */ |
141 | 141 | public function lsx_sensei_theme_wrapper_start() { |
142 | 142 | lsx_content_wrap_before(); |
143 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
143 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
144 | 144 | lsx_content_before(); |
145 | 145 | echo '<main id="main" class="site-main" role="main">'; |
146 | 146 | lsx_content_top(); |
@@ -166,18 +166,18 @@ discard block |
||
166 | 166 | * @param [type] $title |
167 | 167 | * @return @title |
168 | 168 | */ |
169 | - public function lsx_sensei_modify_archive_title( $title ) { |
|
170 | - if ( is_archive() && is_post_type_archive( 'course' ) ) { |
|
171 | - $title = __( 'Courses', 'lsx' ); |
|
169 | + public function lsx_sensei_modify_archive_title($title) { |
|
170 | + if (is_archive() && is_post_type_archive('course')) { |
|
171 | + $title = __('Courses', 'lsx'); |
|
172 | 172 | } |
173 | - if ( is_archive() && is_post_type_archive( 'sensei_message' ) ) { |
|
174 | - $title = __( 'Messages', 'lsx' ); |
|
173 | + if (is_archive() && is_post_type_archive('sensei_message')) { |
|
174 | + $title = __('Messages', 'lsx'); |
|
175 | 175 | } |
176 | - if ( is_archive() && is_post_type_archive( 'lesson' ) ) { |
|
177 | - $title = __( 'Lessons', 'lsx' ); |
|
176 | + if (is_archive() && is_post_type_archive('lesson')) { |
|
177 | + $title = __('Lessons', 'lsx'); |
|
178 | 178 | } |
179 | - if ( is_archive() && is_tax() ) { |
|
180 | - $title = single_term_title( '', false ); |
|
179 | + if (is_archive() && is_tax()) { |
|
180 | + $title = single_term_title('', false); |
|
181 | 181 | } |
182 | 182 | return $title; |
183 | 183 | } |
@@ -188,8 +188,8 @@ discard block |
||
188 | 188 | * @package lsx |
189 | 189 | * @subpackage sensei |
190 | 190 | */ |
191 | - public function lsx_sensei_disable_lsx_banner( $disabled ) { |
|
192 | - if ( is_sensei() ) { |
|
191 | + public function lsx_sensei_disable_lsx_banner($disabled) { |
|
192 | + if (is_sensei()) { |
|
193 | 193 | $disabled = true; |
194 | 194 | } |
195 | 195 | |
@@ -202,8 +202,8 @@ discard block |
||
202 | 202 | * @package lsx |
203 | 203 | * @subpackage sensei |
204 | 204 | */ |
205 | - public function lsx_sensei_archive_title( $html ) { |
|
206 | - $html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html ); |
|
205 | + public function lsx_sensei_archive_title($html) { |
|
206 | + $html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html); |
|
207 | 207 | return $html; |
208 | 208 | } |
209 | 209 | |
@@ -213,8 +213,8 @@ discard block |
||
213 | 213 | * @package lsx |
214 | 214 | * @subpackage sensei |
215 | 215 | */ |
216 | - public function lsx_sensei_category_title( $html ) { |
|
217 | - $html = str_replace( 'h2', 'h1', $html ); |
|
216 | + public function lsx_sensei_category_title($html) { |
|
217 | + $html = str_replace('h2', 'h1', $html); |
|
218 | 218 | return $html; |
219 | 219 | } |
220 | 220 | |
@@ -224,19 +224,19 @@ discard block |
||
224 | 224 | * @package lsx |
225 | 225 | * @subpackage sensei |
226 | 226 | */ |
227 | - public function lsx_sensei_add_buttons( $course_id ) { |
|
227 | + public function lsx_sensei_add_buttons($course_id) { |
|
228 | 228 | global $post, $current_user; |
229 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
229 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
230 | 230 | $course_purchasable = ''; |
231 | - if ( class_exists( 'Sensei_WC' ) ) { |
|
232 | - $course_purchasable = Sensei_WC::is_course_purchasable( $post->ID ); |
|
231 | + if (class_exists('Sensei_WC')) { |
|
232 | + $course_purchasable = Sensei_WC::is_course_purchasable($post->ID); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | ?> |
236 | 236 | <section class="entry-actions"> |
237 | 237 | <?php |
238 | - if ( ( ! $is_user_taking_course ) && $course_purchasable ) { |
|
239 | - Sensei_WC::the_add_to_cart_button_html( $post->ID ); |
|
238 | + if (( ! $is_user_taking_course) && $course_purchasable) { |
|
239 | + Sensei_WC::the_add_to_cart_button_html($post->ID); |
|
240 | 240 | } |
241 | 241 | ?> |
242 | 242 | </section> |
@@ -249,8 +249,8 @@ discard block |
||
249 | 249 | * @package lsx |
250 | 250 | * @subpackage sensei |
251 | 251 | */ |
252 | - public function lsx_sensei_add_to_cart_text( $text ) { |
|
253 | - $text = esc_html__( 'Add to cart', 'lsx' ); |
|
252 | + public function lsx_sensei_add_to_cart_text($text) { |
|
253 | + $text = esc_html__('Add to cart', 'lsx'); |
|
254 | 254 | return $text; |
255 | 255 | } |
256 | 256 | |
@@ -260,46 +260,46 @@ discard block |
||
260 | 260 | * @package lsx |
261 | 261 | * @subpackage layout |
262 | 262 | */ |
263 | - public function lsx_sensei_results_header( $user ) { |
|
263 | + public function lsx_sensei_results_header($user) { |
|
264 | 264 | |
265 | 265 | $default_size = 'sm'; |
266 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
266 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
267 | 267 | global $wp_query; |
268 | - if ( isset( $wp_query->query_vars['course_results'] ) ) { |
|
268 | + if (isset($wp_query->query_vars['course_results'])) { |
|
269 | 269 | $is_results = $wp_query->query_vars['course_results']; |
270 | 270 | } else { |
271 | 271 | $is_results = false; |
272 | 272 | } |
273 | - if ( isset( $wp_query->query_vars['learner_profile'] ) ) { |
|
273 | + if (isset($wp_query->query_vars['learner_profile'])) { |
|
274 | 274 | $is_profile = $wp_query->query_vars['learner_profile']; |
275 | 275 | } else { |
276 | 276 | $is_profile = false; |
277 | 277 | } |
278 | 278 | |
279 | - if ( is_sticky() && $is_results ) : |
|
280 | - $course_for_results = get_page_by_path( $is_results, OBJECT, 'course' ); |
|
279 | + if (is_sticky() && $is_results) : |
|
280 | + $course_for_results = get_page_by_path($is_results, OBJECT, 'course'); |
|
281 | 281 | |
282 | - $course_title = esc_html( $course_for_results->post_title ); |
|
282 | + $course_title = esc_html($course_for_results->post_title); |
|
283 | 283 | ?> |
284 | - <div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12"> |
|
284 | + <div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12"> |
|
285 | 285 | <?php lsx_global_header_inner_bottom(); ?> |
286 | 286 | <header class="archive-header"> |
287 | - <h1 class="archive-title"><?php echo wp_kses_post( $course_title ); ?></h1> |
|
287 | + <h1 class="archive-title"><?php echo wp_kses_post($course_title); ?></h1> |
|
288 | 288 | </header> |
289 | 289 | |
290 | 290 | </div> |
291 | 291 | <?php |
292 | 292 | endif; |
293 | 293 | |
294 | - if ( $is_profile ) : |
|
294 | + if ($is_profile) : |
|
295 | 295 | $query_var = $wp_query->query_vars['learner_profile']; |
296 | - $learner_user = Sensei_Learner::find_by_query_var( $query_var ); |
|
296 | + $learner_user = Sensei_Learner::find_by_query_var($query_var); |
|
297 | 297 | $learner_name = $learner_user->display_name; |
298 | 298 | ?> |
299 | - <div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12"> |
|
299 | + <div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12"> |
|
300 | 300 | <?php lsx_global_header_inner_bottom(); ?> |
301 | 301 | <header class="archive-header"> |
302 | - <h1 class="archive-title"><?php echo esc_html( $learner_name ); ?></h1> |
|
302 | + <h1 class="archive-title"><?php echo esc_html($learner_name); ?></h1> |
|
303 | 303 | </header> |
304 | 304 | |
305 | 305 | </div> |
@@ -312,21 +312,21 @@ discard block |
||
312 | 312 | * @param $crumbs |
313 | 313 | * @return array |
314 | 314 | */ |
315 | - public function lsx_sensei_course_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
316 | - if ( is_single() && ( is_singular( 'course' ) ) ) { |
|
315 | + public function lsx_sensei_course_breadcrumb_filter($crumbs, $id = 0) { |
|
316 | + if (is_single() && (is_singular('course'))) { |
|
317 | 317 | global $course; |
318 | 318 | $lesson = get_the_title(); |
319 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
320 | - $course_page_url = get_permalink( $course_page_url ); |
|
319 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
320 | + $course_page_url = get_permalink($course_page_url); |
|
321 | 321 | |
322 | - if ( $lesson ) { |
|
322 | + if ($lesson) { |
|
323 | 323 | |
324 | 324 | $new_crumbs = array(); |
325 | 325 | $new_crumbs[0] = $crumbs[0]; |
326 | 326 | |
327 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
327 | + if (function_exists('woocommerce_breadcrumb')) { |
|
328 | 328 | $new_crumbs[1] = array( |
329 | - 0 => __( 'All Courses', 'lsx' ), |
|
329 | + 0 => __('All Courses', 'lsx'), |
|
330 | 330 | 1 => $course_page_url, |
331 | 331 | ); |
332 | 332 | $new_crumbs[2] = array( |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | ); |
335 | 335 | } else { |
336 | 336 | $new_crumbs[1] = array( |
337 | - 'text' => __( 'All Courses', 'lsx' ), |
|
337 | + 'text' => __('All Courses', 'lsx'), |
|
338 | 338 | 'url' => $course_page_url, |
339 | 339 | ); |
340 | 340 | $new_crumbs[2] = array( |
@@ -352,34 +352,34 @@ discard block |
||
352 | 352 | * @param $crumbs |
353 | 353 | * @return array |
354 | 354 | */ |
355 | - public function lsx_sensei_lesson_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
356 | - if ( is_sensei() && is_single() && ( is_singular( 'lesson' ) ) ) { |
|
355 | + public function lsx_sensei_lesson_breadcrumb_filter($crumbs, $id = 0) { |
|
356 | + if (is_sensei() && is_single() && (is_singular('lesson'))) { |
|
357 | 357 | global $course; |
358 | 358 | $lesson = get_the_title(); |
359 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
360 | - $course_page_url = get_permalink( $course_page_url ); |
|
359 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
360 | + $course_page_url = get_permalink($course_page_url); |
|
361 | 361 | |
362 | - if ( empty( $id ) ) { |
|
362 | + if (empty($id)) { |
|
363 | 363 | $id = get_the_ID(); |
364 | 364 | } |
365 | 365 | |
366 | - if ( 0 < intval( $id ) ) { |
|
367 | - $course = intval( get_post_meta( $id, '_lesson_course', true ) ); |
|
368 | - $course_id = esc_url( get_permalink( $course ) ); |
|
369 | - $course_title = esc_html( get_the_title( $course ) ); |
|
370 | - if ( ! $course ) { |
|
366 | + if (0 < intval($id)) { |
|
367 | + $course = intval(get_post_meta($id, '_lesson_course', true)); |
|
368 | + $course_id = esc_url(get_permalink($course)); |
|
369 | + $course_title = esc_html(get_the_title($course)); |
|
370 | + if ( ! $course) { |
|
371 | 371 | return; |
372 | 372 | } |
373 | 373 | } |
374 | 374 | |
375 | - if ( $course_id ) { |
|
375 | + if ($course_id) { |
|
376 | 376 | |
377 | 377 | $new_crumbs = array(); |
378 | 378 | $new_crumbs[0] = $crumbs[0]; |
379 | 379 | |
380 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
380 | + if (function_exists('woocommerce_breadcrumb')) { |
|
381 | 381 | $new_crumbs[1] = array( |
382 | - 0 => __( 'Courses', 'lsx' ), |
|
382 | + 0 => __('Courses', 'lsx'), |
|
383 | 383 | 1 => $course_page_url, |
384 | 384 | ); |
385 | 385 | $new_crumbs[2] = array( |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | ); |
392 | 392 | } else { |
393 | 393 | $new_crumbs[1] = array( |
394 | - 'text' => __( 'Courses', 'lsx' ), |
|
394 | + 'text' => __('Courses', 'lsx'), |
|
395 | 395 | 'url' => $course_page_url, |
396 | 396 | ); |
397 | 397 | $new_crumbs[2] = array( |
@@ -413,27 +413,27 @@ discard block |
||
413 | 413 | * @param $crumbs |
414 | 414 | * @return array |
415 | 415 | */ |
416 | - public function lsx_sensei_module_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
417 | - if ( ! empty( get_queried_object()->name ) ) { |
|
418 | - $title = apply_filters( 'sensei_module_archive_title', get_queried_object()->name ); |
|
416 | + public function lsx_sensei_module_breadcrumb_filter($crumbs, $id = 0) { |
|
417 | + if ( ! empty(get_queried_object()->name)) { |
|
418 | + $title = apply_filters('sensei_module_archive_title', get_queried_object()->name); |
|
419 | 419 | } |
420 | 420 | |
421 | - if ( is_sensei() && is_tax() && is_archive() && ( ! empty( $title ) ) ) { |
|
421 | + if (is_sensei() && is_tax() && is_archive() && ( ! empty($title))) { |
|
422 | 422 | |
423 | 423 | $lesson = get_the_archive_title(); |
424 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
425 | - $course_page_url = get_permalink( $course_page_url ); |
|
424 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
425 | + $course_page_url = get_permalink($course_page_url); |
|
426 | 426 | |
427 | - if ( empty( $id ) ) { |
|
427 | + if (empty($id)) { |
|
428 | 428 | $id = get_the_ID(); |
429 | 429 | } |
430 | 430 | |
431 | 431 | $new_crumbs = array(); |
432 | 432 | $new_crumbs[0] = $crumbs[0]; |
433 | 433 | |
434 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
434 | + if (function_exists('woocommerce_breadcrumb')) { |
|
435 | 435 | $new_crumbs[1] = array( |
436 | - 0 => __( 'Courses', 'lsx' ), |
|
436 | + 0 => __('Courses', 'lsx'), |
|
437 | 437 | 1 => $course_page_url, |
438 | 438 | ); |
439 | 439 | $new_crumbs[2] = array( |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | ); |
442 | 442 | } else { |
443 | 443 | $new_crumbs[1] = array( |
444 | - 'text' => __( 'Courses', 'lsx' ), |
|
444 | + 'text' => __('Courses', 'lsx'), |
|
445 | 445 | 'url' => $course_page_url, |
446 | 446 | ); |
447 | 447 | $new_crumbs[2] = array( |
@@ -458,38 +458,38 @@ discard block |
||
458 | 458 | * @param $crumbs |
459 | 459 | * @return array |
460 | 460 | */ |
461 | - public function lsx_sensei_learner_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
461 | + public function lsx_sensei_learner_breadcrumb_filter($crumbs, $id = 0) { |
|
462 | 462 | global $wp_query; |
463 | 463 | |
464 | - if ( isset( $wp_query->query_vars['learner_profile'] ) ) { |
|
464 | + if (isset($wp_query->query_vars['learner_profile'])) { |
|
465 | 465 | $is_profile = $wp_query->query_vars['learner_profile']; |
466 | 466 | } else { |
467 | 467 | $is_profile = false; |
468 | 468 | } |
469 | 469 | |
470 | - if ( $is_profile ) { |
|
470 | + if ($is_profile) { |
|
471 | 471 | |
472 | - if ( empty( $id ) ) { |
|
472 | + if (empty($id)) { |
|
473 | 473 | $id = get_the_ID(); |
474 | 474 | } |
475 | 475 | |
476 | 476 | $query_var = $wp_query->query_vars['learner_profile']; |
477 | - $learner_user = Sensei_Learner::find_by_query_var( $query_var ); |
|
477 | + $learner_user = Sensei_Learner::find_by_query_var($query_var); |
|
478 | 478 | $learner_name = $learner_user->display_name; |
479 | 479 | |
480 | 480 | $new_crumbs = array(); |
481 | 481 | $new_crumbs[0] = $crumbs[0]; |
482 | 482 | |
483 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
483 | + if (function_exists('woocommerce_breadcrumb')) { |
|
484 | 484 | $new_crumbs[1] = array( |
485 | - 0 => __( 'Learners', 'lsx' ), |
|
485 | + 0 => __('Learners', 'lsx'), |
|
486 | 486 | ); |
487 | 487 | $new_crumbs[2] = array( |
488 | 488 | 0 => $learner_name, |
489 | 489 | ); |
490 | 490 | } else { |
491 | 491 | $new_crumbs[1] = array( |
492 | - 'text' => __( 'Learners', 'lsx' ), |
|
492 | + 'text' => __('Learners', 'lsx'), |
|
493 | 493 | ); |
494 | 494 | $new_crumbs[2] = array( |
495 | 495 | 'text' => $learner_name, |
@@ -505,36 +505,36 @@ discard block |
||
505 | 505 | * @param $crumbs |
506 | 506 | * @return array |
507 | 507 | */ |
508 | - public function lsx_sensei_messages_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
509 | - if ( is_archive() && ( is_post_type_archive( 'sensei_message' ) ) ) { |
|
508 | + public function lsx_sensei_messages_breadcrumb_filter($crumbs, $id = 0) { |
|
509 | + if (is_archive() && (is_post_type_archive('sensei_message'))) { |
|
510 | 510 | |
511 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
512 | - $course_page_url = get_permalink( $course_page_url ); |
|
511 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
512 | + $course_page_url = get_permalink($course_page_url); |
|
513 | 513 | |
514 | - if ( empty( $id ) ) { |
|
514 | + if (empty($id)) { |
|
515 | 515 | $id = get_the_ID(); |
516 | 516 | } |
517 | 517 | |
518 | - if ( $id ) { |
|
518 | + if ($id) { |
|
519 | 519 | |
520 | 520 | $new_crumbs = array(); |
521 | 521 | $new_crumbs[0] = $crumbs[0]; |
522 | 522 | |
523 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
523 | + if (function_exists('woocommerce_breadcrumb')) { |
|
524 | 524 | $new_crumbs[1] = array( |
525 | - 0 => __( 'Courses', 'lsx' ), |
|
525 | + 0 => __('Courses', 'lsx'), |
|
526 | 526 | 1 => $course_page_url, |
527 | 527 | ); |
528 | 528 | $new_crumbs[2] = array( |
529 | - 0 => __( 'Messages', 'lsx' ), |
|
529 | + 0 => __('Messages', 'lsx'), |
|
530 | 530 | ); |
531 | 531 | } else { |
532 | 532 | $new_crumbs[1] = array( |
533 | - 'text' => __( 'Courses', 'lsx' ), |
|
533 | + 'text' => __('Courses', 'lsx'), |
|
534 | 534 | 'url' => $course_page_url, |
535 | 535 | ); |
536 | 536 | $new_crumbs[2] = array( |
537 | - 'text' => __( 'Messages', 'lsx' ), |
|
537 | + 'text' => __('Messages', 'lsx'), |
|
538 | 538 | ); |
539 | 539 | } |
540 | 540 | $crumbs = $new_crumbs; |
@@ -548,35 +548,35 @@ discard block |
||
548 | 548 | * @param $crumbs |
549 | 549 | * @return array |
550 | 550 | */ |
551 | - public function lsx_sensei_single_message_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
552 | - if ( is_single() && ( is_singular( 'sensei_message' ) ) ) { |
|
551 | + public function lsx_sensei_single_message_breadcrumb_filter($crumbs, $id = 0) { |
|
552 | + if (is_single() && (is_singular('sensei_message'))) { |
|
553 | 553 | |
554 | 554 | $messages_page_url = '/messages/'; |
555 | 555 | |
556 | - if ( empty( $id ) ) { |
|
556 | + if (empty($id)) { |
|
557 | 557 | $id = get_the_ID(); |
558 | 558 | } |
559 | 559 | |
560 | - if ( $id ) { |
|
560 | + if ($id) { |
|
561 | 561 | |
562 | 562 | $new_crumbs = array(); |
563 | 563 | $new_crumbs[0] = $crumbs[0]; |
564 | 564 | |
565 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
565 | + if (function_exists('woocommerce_breadcrumb')) { |
|
566 | 566 | $new_crumbs[1] = array( |
567 | - 0 => __( 'Messages', 'lsx' ), |
|
567 | + 0 => __('Messages', 'lsx'), |
|
568 | 568 | 1 => $messages_page_url, |
569 | 569 | ); |
570 | 570 | $new_crumbs[2] = array( |
571 | - 0 => __( 'Message', 'lsx' ), |
|
571 | + 0 => __('Message', 'lsx'), |
|
572 | 572 | ); |
573 | 573 | } else { |
574 | 574 | $new_crumbs[1] = array( |
575 | - 'text' => __( 'Messages', 'lsx' ), |
|
575 | + 'text' => __('Messages', 'lsx'), |
|
576 | 576 | 'url' => $messages_page_url, |
577 | 577 | ); |
578 | 578 | $new_crumbs[2] = array( |
579 | - 'text' => __( 'Message', 'lsx' ), |
|
579 | + 'text' => __('Message', 'lsx'), |
|
580 | 580 | ); |
581 | 581 | } |
582 | 582 | $crumbs = $new_crumbs; |
@@ -590,35 +590,35 @@ discard block |
||
590 | 590 | * @param $crumbs |
591 | 591 | * @return array |
592 | 592 | */ |
593 | - public function lsx_sensei_quiz_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
594 | - if ( ( is_single() && ( is_singular( 'quiz' ) ) ) ) { |
|
593 | + public function lsx_sensei_quiz_breadcrumb_filter($crumbs, $id = 0) { |
|
594 | + if ((is_single() && (is_singular('quiz')))) { |
|
595 | 595 | global $course; |
596 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
597 | - $course_page_url = get_permalink( $course_page_url ); |
|
596 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
597 | + $course_page_url = get_permalink($course_page_url); |
|
598 | 598 | $lesson = get_the_title(); |
599 | 599 | |
600 | - if ( empty( $id ) ) { |
|
600 | + if (empty($id)) { |
|
601 | 601 | $id = get_the_ID(); |
602 | 602 | } |
603 | 603 | |
604 | - if ( 0 < intval( $id ) ) { |
|
604 | + if (0 < intval($id)) { |
|
605 | 605 | |
606 | - $course = intval( get_post_meta( $id, '_quiz_lesson', true ) ); |
|
607 | - $course_id = esc_url( get_permalink( $course ) ); |
|
608 | - $course_title = esc_html( get_the_title( $course ) ); |
|
609 | - if ( ! $course ) { |
|
606 | + $course = intval(get_post_meta($id, '_quiz_lesson', true)); |
|
607 | + $course_id = esc_url(get_permalink($course)); |
|
608 | + $course_title = esc_html(get_the_title($course)); |
|
609 | + if ( ! $course) { |
|
610 | 610 | return; |
611 | 611 | } |
612 | 612 | } |
613 | 613 | |
614 | - if ( $course_id ) { |
|
614 | + if ($course_id) { |
|
615 | 615 | |
616 | 616 | $new_crumbs = array(); |
617 | 617 | $new_crumbs[0] = $crumbs[0]; |
618 | 618 | |
619 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
619 | + if (function_exists('woocommerce_breadcrumb')) { |
|
620 | 620 | $new_crumbs[1] = array( |
621 | - 0 => __( 'Courses', 'lsx' ), |
|
621 | + 0 => __('Courses', 'lsx'), |
|
622 | 622 | 1 => $course_page_url, |
623 | 623 | ); |
624 | 624 | $new_crumbs[2] = array( |
@@ -630,7 +630,7 @@ discard block |
||
630 | 630 | ); |
631 | 631 | } else { |
632 | 632 | $new_crumbs[1] = array( |
633 | - 'text' => __( 'Courses', 'lsx' ), |
|
633 | + 'text' => __('Courses', 'lsx'), |
|
634 | 634 | 'url' => $course_page_url, |
635 | 635 | ); |
636 | 636 | $new_crumbs[2] = array( |
@@ -653,36 +653,36 @@ discard block |
||
653 | 653 | * @param $crumbs |
654 | 654 | * @return array |
655 | 655 | */ |
656 | - public function lsx_sensei_results_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
657 | - if ( is_sticky() ) { |
|
656 | + public function lsx_sensei_results_breadcrumb_filter($crumbs, $id = 0) { |
|
657 | + if (is_sticky()) { |
|
658 | 658 | global $wp_query; |
659 | 659 | $course_id = ''; |
660 | - if ( isset( $wp_query->query_vars['course_results'] ) ) { |
|
660 | + if (isset($wp_query->query_vars['course_results'])) { |
|
661 | 661 | $is_results = $wp_query->query_vars['course_results']; |
662 | 662 | } |
663 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
664 | - $course_page_url = get_permalink( $course_page_url ); |
|
663 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
664 | + $course_page_url = get_permalink($course_page_url); |
|
665 | 665 | |
666 | - if ( empty( $id ) ) { |
|
666 | + if (empty($id)) { |
|
667 | 667 | $id = get_the_ID(); |
668 | 668 | } |
669 | 669 | |
670 | - if ( isset( $is_results ) ) { |
|
671 | - $course_for_results = get_page_by_path( $is_results, OBJECT, 'course' ); |
|
670 | + if (isset($is_results)) { |
|
671 | + $course_for_results = get_page_by_path($is_results, OBJECT, 'course'); |
|
672 | 672 | |
673 | - $course_id = esc_url( get_permalink( $course_for_results ) ); |
|
674 | - $course_title = esc_html( $course_for_results->post_title ); |
|
673 | + $course_id = esc_url(get_permalink($course_for_results)); |
|
674 | + $course_title = esc_html($course_for_results->post_title); |
|
675 | 675 | |
676 | 676 | } |
677 | 677 | |
678 | - if ( $course_id ) { |
|
678 | + if ($course_id) { |
|
679 | 679 | $new_crumbs = array(); |
680 | 680 | $new_crumbs[0] = $crumbs[0]; |
681 | 681 | |
682 | - if ( $is_results ) { |
|
683 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
682 | + if ($is_results) { |
|
683 | + if (function_exists('woocommerce_breadcrumb')) { |
|
684 | 684 | $new_crumbs[1] = array( |
685 | - 0 => __( 'Courses', 'lsx' ), |
|
685 | + 0 => __('Courses', 'lsx'), |
|
686 | 686 | 1 => $course_page_url, |
687 | 687 | ); |
688 | 688 | $new_crumbs[2] = array( |
@@ -690,15 +690,15 @@ discard block |
||
690 | 690 | 1 => $course_id, |
691 | 691 | ); |
692 | 692 | $new_crumbs[3] = array( |
693 | - 0 => __( 'Results', 'lsx' ), |
|
693 | + 0 => __('Results', 'lsx'), |
|
694 | 694 | ); |
695 | 695 | } else { |
696 | 696 | $new_crumbs[1] = array( |
697 | - 'text' => __( 'Courses', 'lsx' ), |
|
697 | + 'text' => __('Courses', 'lsx'), |
|
698 | 698 | 'url' => $course_page_url, |
699 | 699 | ); |
700 | 700 | $new_crumbs[2] = array( |
701 | - 'text' => __( 'Results', 'lsx' ), |
|
701 | + 'text' => __('Results', 'lsx'), |
|
702 | 702 | ); |
703 | 703 | } |
704 | 704 | } |
@@ -714,9 +714,9 @@ discard block |
||
714 | 714 | * @param [type] $message_post_id |
715 | 715 | * @return void |
716 | 716 | */ |
717 | - public function lsx_sensei_view_message_button( $message_post_id ) { |
|
718 | - $message_link = get_the_permalink( $message_post_id ); |
|
719 | - echo '<a href="' . esc_url_raw( $message_link ) . '" class="btn view-msg-btn">' . wp_kses_post( 'View Message', 'lsx' ) . '</a>'; |
|
717 | + public function lsx_sensei_view_message_button($message_post_id) { |
|
718 | + $message_link = get_the_permalink($message_post_id); |
|
719 | + echo '<a href="' . esc_url_raw($message_link) . '" class="btn view-msg-btn">' . wp_kses_post('View Message', 'lsx') . '</a>'; |
|
720 | 720 | } |
721 | 721 | |
722 | 722 | /** |
@@ -725,9 +725,9 @@ discard block |
||
725 | 725 | * @param [type] $message_post_id |
726 | 726 | * @return void |
727 | 727 | */ |
728 | - public function lsx_sensei_back_message_button( $courses_link ) { |
|
728 | + public function lsx_sensei_back_message_button($courses_link) { |
|
729 | 729 | $courses_link = '/my-courses/'; |
730 | - echo '<a href="' . esc_url_raw( $courses_link ) . '" class="btn border-btn my-courses-btn">' . wp_kses_post( 'My Courses', 'lsx' ) . '</a>'; |
|
730 | + echo '<a href="' . esc_url_raw($courses_link) . '" class="btn border-btn my-courses-btn">' . wp_kses_post('My Courses', 'lsx') . '</a>'; |
|
731 | 731 | } |
732 | 732 | } |
733 | 733 |
@@ -784,7 +784,7 @@ |
||
784 | 784 | * |
785 | 785 | * @access public |
786 | 786 | * @since 1.0 |
787 | - * @return void |
|
787 | + * @return string |
|
788 | 788 | */ |
789 | 789 | function lsx_wc_product_searchform( $form ) { |
790 | 790 |
@@ -6,11 +6,11 @@ discard block |
||
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 |
||
19 | 19 | * @subpackage woocommerce |
20 | 20 | */ |
21 | 21 | function lsx_wc_support() { |
22 | - add_theme_support( 'woocommerce' ); |
|
23 | - add_theme_support( 'wc-product-gallery-zoom' ); |
|
24 | - add_theme_support( 'wc-product-gallery-lightbox' ); |
|
25 | - add_theme_support( 'wc-product-gallery-slider' ); |
|
22 | + add_theme_support('woocommerce'); |
|
23 | + add_theme_support('wc-product-gallery-zoom'); |
|
24 | + add_theme_support('wc-product-gallery-lightbox'); |
|
25 | + add_theme_support('wc-product-gallery-slider'); |
|
26 | 26 | } |
27 | 27 | |
28 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
28 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
29 | 29 | |
30 | 30 | endif; |
31 | 31 | |
32 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
32 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
33 | 33 | |
34 | 34 | /** |
35 | 35 | * WooCommerce enqueue styles. |
@@ -38,18 +38,18 @@ discard block |
||
38 | 38 | * @subpackage woocommerce |
39 | 39 | */ |
40 | 40 | function lsx_wc_scripts_add_styles() { |
41 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
42 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
41 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
42 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
43 | 43 | |
44 | 44 | // Remove WC Shipping Multiple Addresses specific script causing issues on checkout. |
45 | - wp_dequeue_script( 'wcms-country-select' ); |
|
45 | + wp_dequeue_script('wcms-country-select'); |
|
46 | 46 | } |
47 | 47 | |
48 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
48 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
49 | 49 | |
50 | 50 | endif; |
51 | 51 | |
52 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
52 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
53 | 53 | |
54 | 54 | /** |
55 | 55 | * WooCommerce form fields. |
@@ -57,17 +57,17 @@ discard block |
||
57 | 57 | * @package lsx |
58 | 58 | * @subpackage woocommerce |
59 | 59 | */ |
60 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
60 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
61 | 61 | $args['input_class'][] = 'form-control'; |
62 | 62 | |
63 | 63 | return $args; |
64 | 64 | } |
65 | 65 | |
66 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
66 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
67 | 67 | |
68 | 68 | endif; |
69 | 69 | |
70 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
70 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * WooCommerce wrapper start. |
@@ -77,18 +77,18 @@ discard block |
||
77 | 77 | */ |
78 | 78 | function lsx_wc_theme_wrapper_start() { |
79 | 79 | lsx_content_wrap_before(); |
80 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
80 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
81 | 81 | lsx_content_before(); |
82 | 82 | echo '<main id="main" class="site-main" role="main">'; |
83 | 83 | lsx_content_top(); |
84 | 84 | } |
85 | 85 | |
86 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
87 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
86 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
87 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
88 | 88 | |
89 | 89 | endif; |
90 | 90 | |
91 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
91 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
92 | 92 | |
93 | 93 | /** |
94 | 94 | * WooCommerce wrapper end. |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | lsx_content_wrap_after(); |
105 | 105 | } |
106 | 106 | |
107 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
108 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
107 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
108 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
112 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * Disable LSX Banners plugin in some WC pages. |
@@ -117,21 +117,21 @@ discard block |
||
117 | 117 | * @package lsx |
118 | 118 | * @subpackage woocommerce |
119 | 119 | */ |
120 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
120 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
121 | 121 | global $post; |
122 | 122 | |
123 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
123 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
124 | 124 | $disabled = true; |
125 | 125 | } |
126 | 126 | |
127 | 127 | return $disabled; |
128 | 128 | } |
129 | 129 | |
130 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
130 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
131 | 131 | |
132 | 132 | endif; |
133 | 133 | |
134 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
134 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
135 | 135 | |
136 | 136 | /** |
137 | 137 | * Disable LSX Banners banner in some WC pages. |
@@ -139,41 +139,41 @@ discard block |
||
139 | 139 | * @package lsx |
140 | 140 | * @subpackage woocommerce |
141 | 141 | */ |
142 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
143 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
142 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
143 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
144 | 144 | $disabled = true; |
145 | 145 | } |
146 | 146 | |
147 | 147 | return $disabled; |
148 | 148 | } |
149 | 149 | |
150 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
150 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
151 | 151 | |
152 | 152 | endif; |
153 | 153 | |
154 | -if ( ! function_exists( 'lsx_wc_categories_breadcrumb_filter' ) ) : |
|
154 | +if ( ! function_exists('lsx_wc_categories_breadcrumb_filter')) : |
|
155 | 155 | /** |
156 | 156 | * Improves the category and taxonomy breadcrumbs for woocommerce. |
157 | 157 | * |
158 | 158 | * @package lsx |
159 | 159 | * @subpackage woocommerce |
160 | 160 | */ |
161 | - function lsx_wc_categories_breadcrumb_filter( $crumbs ) { |
|
161 | + function lsx_wc_categories_breadcrumb_filter($crumbs) { |
|
162 | 162 | |
163 | - $shop_page_url = get_permalink( wc_get_page_id( 'shop' ) ); |
|
163 | + $shop_page_url = get_permalink(wc_get_page_id('shop')); |
|
164 | 164 | |
165 | - if ( is_product_category() || is_product_tag() ) { |
|
165 | + if (is_product_category() || is_product_tag()) { |
|
166 | 166 | $new_crumbs = array(); |
167 | 167 | $new_crumbs[0] = $crumbs[0]; |
168 | 168 | |
169 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
169 | + if (function_exists('woocommerce_breadcrumb')) { |
|
170 | 170 | $new_crumbs[1] = array( |
171 | - 0 => __( 'Shop', 'lsx' ), |
|
171 | + 0 => __('Shop', 'lsx'), |
|
172 | 172 | 1 => $shop_page_url, |
173 | 173 | ); |
174 | 174 | } else { |
175 | 175 | $new_crumbs[1] = array( |
176 | - 'text' => __( 'Shop', 'lsx' ), |
|
176 | + 'text' => __('Shop', 'lsx'), |
|
177 | 177 | 'url' => $shop_page_url, |
178 | 178 | ); |
179 | 179 | } |
@@ -184,12 +184,12 @@ discard block |
||
184 | 184 | } |
185 | 185 | return $crumbs; |
186 | 186 | } |
187 | - add_filter( 'wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1 ); |
|
188 | - add_filter( 'woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1 ); |
|
187 | + add_filter('wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1); |
|
188 | + add_filter('woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1); |
|
189 | 189 | |
190 | 190 | endif; |
191 | 191 | |
192 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
192 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
193 | 193 | |
194 | 194 | /** |
195 | 195 | * Adds WC cart to the header. |
@@ -197,34 +197,34 @@ discard block |
||
197 | 197 | * @package lsx |
198 | 198 | * @subpackage template-tags |
199 | 199 | */ |
200 | - function lsx_wc_add_cart( $items, $args ) { |
|
201 | - $cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' ); |
|
200 | + function lsx_wc_add_cart($items, $args) { |
|
201 | + $cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary'); |
|
202 | 202 | |
203 | 203 | $cart_logged_out_position = $cart_menu_item_position . '_logged_out'; |
204 | 204 | |
205 | - if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) { |
|
206 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
205 | + if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) { |
|
206 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
207 | 207 | |
208 | - if ( ! empty( $customizer_option ) ) { |
|
208 | + if ( ! empty($customizer_option)) { |
|
209 | 209 | ob_start(); |
210 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
210 | + the_widget('WC_Widget_Cart', 'title='); |
|
211 | 211 | $widget = ob_get_clean(); |
212 | 212 | |
213 | - if ( is_cart() ) { |
|
213 | + if (is_cart()) { |
|
214 | 214 | $class = 'current-menu-item'; |
215 | 215 | } else { |
216 | 216 | $class = ''; |
217 | 217 | } |
218 | 218 | |
219 | 219 | $item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class; |
220 | - $item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class ); |
|
220 | + $item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class); |
|
221 | 221 | |
222 | 222 | $item = '<li class="' . $item_class . '">' . |
223 | - '<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
224 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' . |
|
223 | + '<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
224 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' . |
|
225 | 225 | /* Translators: %s: items quantity */ |
226 | - '<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' . |
|
227 | - ( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) . |
|
226 | + '<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' . |
|
227 | + ( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') . |
|
228 | 228 | '</a>' . |
229 | 229 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
230 | 230 | '<li>' . |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | '</ul>' . |
234 | 234 | '</li>'; |
235 | 235 | |
236 | - if ( 'top-menu' === $args->theme_location ) { |
|
236 | + if ('top-menu' === $args->theme_location) { |
|
237 | 237 | $items = $item . $items; |
238 | 238 | } else { |
239 | 239 | $items = $items . $item; |
@@ -244,11 +244,11 @@ discard block |
||
244 | 244 | return $items; |
245 | 245 | } |
246 | 246 | |
247 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
247 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
248 | 248 | |
249 | 249 | endif; |
250 | 250 | |
251 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
251 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
252 | 252 | |
253 | 253 | /** |
254 | 254 | * Change WC products widget wrapper (before). |
@@ -256,16 +256,16 @@ discard block |
||
256 | 256 | * @package lsx |
257 | 257 | * @subpackage woocommerce |
258 | 258 | */ |
259 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
259 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
260 | 260 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
261 | 261 | return $html; |
262 | 262 | } |
263 | 263 | |
264 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
264 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
265 | 265 | |
266 | 266 | endif; |
267 | 267 | |
268 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
268 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
269 | 269 | |
270 | 270 | /** |
271 | 271 | * Change WC products widget wrapper (after). |
@@ -273,16 +273,16 @@ discard block |
||
273 | 273 | * @package lsx |
274 | 274 | * @subpackage woocommerce |
275 | 275 | */ |
276 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
276 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
277 | 277 | $html = '</div>'; |
278 | 278 | return $html; |
279 | 279 | } |
280 | 280 | |
281 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
281 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
282 | 282 | |
283 | 283 | endif; |
284 | 284 | |
285 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
285 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
286 | 286 | |
287 | 287 | /** |
288 | 288 | * Override WC ewviews widget. |
@@ -291,18 +291,18 @@ discard block |
||
291 | 291 | * @subpackage woocommerce |
292 | 292 | */ |
293 | 293 | function lsx_wc_reviews_widget_override() { |
294 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
295 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
294 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
295 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
296 | 296 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
297 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
297 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
298 | 298 | } |
299 | 299 | } |
300 | 300 | |
301 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
301 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
302 | 302 | |
303 | 303 | endif; |
304 | 304 | |
305 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
305 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
306 | 306 | |
307 | 307 | /** |
308 | 308 | * Change WC ZERO price to "free". |
@@ -314,30 +314,30 @@ discard block |
||
314 | 314 | * @param $product WC_Product |
315 | 315 | * @return string |
316 | 316 | */ |
317 | - function lsx_wc_change_price_html( $price, $product ) { |
|
318 | - if ( empty( $product->get_price() ) ) { |
|
319 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
320 | - $regular_price = wc_get_price_to_display( $product, |
|
317 | + function lsx_wc_change_price_html($price, $product) { |
|
318 | + if (empty($product->get_price())) { |
|
319 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
320 | + $regular_price = wc_get_price_to_display($product, |
|
321 | 321 | array( |
322 | 322 | 'qty' => 1, |
323 | 323 | 'price' => $product->get_regular_price(), |
324 | 324 | ) |
325 | 325 | ); |
326 | 326 | |
327 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
327 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
328 | 328 | } else { |
329 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
329 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
330 | 330 | } |
331 | 331 | } |
332 | 332 | |
333 | 333 | return $price; |
334 | 334 | } |
335 | 335 | |
336 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
336 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
337 | 337 | |
338 | 338 | endif; |
339 | 339 | |
340 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
340 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
341 | 341 | |
342 | 342 | /** |
343 | 343 | * Cart Fragments. |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | * @package lsx |
347 | 347 | * @subpackage woocommerce |
348 | 348 | */ |
349 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
349 | + function lsx_wc_cart_link_fragment($fragments) { |
|
350 | 350 | global $woocommerce; |
351 | 351 | |
352 | 352 | ob_start(); |
@@ -357,8 +357,8 @@ discard block |
||
357 | 357 | lsx_wc_items_counter(); |
358 | 358 | $items_counter = ob_get_clean(); |
359 | 359 | |
360 | - if ( ! empty( $items_counter ) ) { |
|
361 | - $fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] ); |
|
360 | + if ( ! empty($items_counter)) { |
|
361 | + $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']); |
|
362 | 362 | } |
363 | 363 | |
364 | 364 | return $fragments; |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | |
367 | 367 | endif; |
368 | 368 | |
369 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
369 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
370 | 370 | |
371 | 371 | /** |
372 | 372 | * Cart Link. |
@@ -377,14 +377,14 @@ discard block |
||
377 | 377 | */ |
378 | 378 | function lsx_wc_cart_link() { |
379 | 379 | ?> |
380 | - <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"> |
|
381 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> |
|
380 | + <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"> |
|
381 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> |
|
382 | 382 | |
383 | 383 | <?php /* Translators: %s: items quantity */ ?> |
384 | - <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> |
|
384 | + <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> |
|
385 | 385 | |
386 | - <?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?> |
|
387 | - <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() ); ?></span> |
|
386 | + <?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?> |
|
387 | + <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span> |
|
388 | 388 | <?php endif; ?> |
389 | 389 | </a> |
390 | 390 | <?php |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | |
393 | 393 | endif; |
394 | 394 | |
395 | -if ( ! function_exists( 'lsx_wc_items_counter' ) ) : |
|
395 | +if ( ! function_exists('lsx_wc_items_counter')) : |
|
396 | 396 | |
397 | 397 | /** |
398 | 398 | * Add car item hidden items counter. |
@@ -404,21 +404,21 @@ discard block |
||
404 | 404 | $count = (int) WC()->cart->get_cart_contents_count(); |
405 | 405 | $items_counter = ''; |
406 | 406 | |
407 | - if ( ! empty( $count ) ) { |
|
407 | + if ( ! empty($count)) { |
|
408 | 408 | $count -= 3; |
409 | 409 | |
410 | - if ( 1 === $count ) { |
|
411 | - $items_counter = esc_html__( '1 other item in cart', 'lsx' ); |
|
412 | - } elseif ( $count > 1 ) { |
|
410 | + if (1 === $count) { |
|
411 | + $items_counter = esc_html__('1 other item in cart', 'lsx'); |
|
412 | + } elseif ($count > 1) { |
|
413 | 413 | /* Translators: %s: items counter */ |
414 | - $items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count ); |
|
414 | + $items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count); |
|
415 | 415 | } |
416 | 416 | } |
417 | - $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
418 | - if ( ! empty( $items_counter ) ) : |
|
417 | + $cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
418 | + if ( ! empty($items_counter)) : |
|
419 | 419 | ?> |
420 | 420 | <li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;"> |
421 | - <a href="<?php echo esc_url( $cart_url ); ?>"><?php echo esc_html( $items_counter ); ?></a> |
|
421 | + <a href="<?php echo esc_url($cart_url); ?>"><?php echo esc_html($items_counter); ?></a> |
|
422 | 422 | </li> |
423 | 423 | <?php |
424 | 424 | endif; |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | |
427 | 427 | endif; |
428 | 428 | |
429 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
429 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
430 | 430 | |
431 | 431 | /** |
432 | 432 | * Changes the number of products to display on shop. |
@@ -434,16 +434,16 @@ discard block |
||
434 | 434 | * @package lsx |
435 | 435 | * @subpackage woocommerce |
436 | 436 | */ |
437 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
437 | + function lsx_wc_loop_shop_per_page($items) { |
|
438 | 438 | $items = 12; |
439 | 439 | return $items; |
440 | 440 | } |
441 | 441 | |
442 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
442 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
443 | 443 | |
444 | 444 | endif; |
445 | 445 | |
446 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
446 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
447 | 447 | |
448 | 448 | /** |
449 | 449 | * Changes the "added to cart" message HTML. |
@@ -451,39 +451,39 @@ discard block |
||
451 | 451 | * @package lsx |
452 | 452 | * @subpackage woocommerce |
453 | 453 | */ |
454 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
454 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
455 | 455 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
456 | 456 | return $message; |
457 | 457 | } |
458 | 458 | |
459 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
459 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
460 | 460 | |
461 | 461 | endif; |
462 | 462 | |
463 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
464 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
463 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
464 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
465 | 465 | } else { |
466 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
466 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
467 | 467 | } |
468 | 468 | |
469 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
469 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
470 | 470 | |
471 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
472 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
473 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
474 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
475 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
471 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
472 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
473 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
474 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
475 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
476 | 476 | |
477 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
478 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
477 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
478 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
479 | 479 | |
480 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
481 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
482 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
483 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
484 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
480 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
481 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
482 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
483 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
484 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
485 | 485 | |
486 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
486 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
487 | 487 | |
488 | 488 | /** |
489 | 489 | * Sorting wrapper. |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | |
498 | 498 | endif; |
499 | 499 | |
500 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
500 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
501 | 501 | |
502 | 502 | /** |
503 | 503 | * Sorting wrapper close. |
@@ -511,7 +511,7 @@ discard block |
||
511 | 511 | |
512 | 512 | endif; |
513 | 513 | |
514 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
514 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
515 | 515 | |
516 | 516 | /** |
517 | 517 | * Product columns wrapper close. |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | |
526 | 526 | endif; |
527 | 527 | |
528 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
528 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
529 | 529 | |
530 | 530 | /** |
531 | 531 | * LSX WooCommerce Pagination |
@@ -537,14 +537,14 @@ discard block |
||
537 | 537 | * @subpackage woocommerce |
538 | 538 | */ |
539 | 539 | function lsx_wc_woocommerce_pagination() { |
540 | - if ( woocommerce_products_will_display() ) { |
|
540 | + if (woocommerce_products_will_display()) { |
|
541 | 541 | woocommerce_pagination(); |
542 | 542 | } |
543 | 543 | } |
544 | 544 | |
545 | 545 | endif; |
546 | 546 | |
547 | -if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) : |
|
547 | +if ( ! function_exists('lsx_customizer_wc_controls')) : |
|
548 | 548 | |
549 | 549 | /** |
550 | 550 | * Returns an array of the core panel. |
@@ -554,10 +554,10 @@ discard block |
||
554 | 554 | * |
555 | 555 | * @return $lsx_controls array() |
556 | 556 | */ |
557 | - function lsx_customizer_wc_controls( $lsx_controls ) { |
|
557 | + function lsx_customizer_wc_controls($lsx_controls) { |
|
558 | 558 | $lsx_controls['panels']['lsx-wc'] = array( |
559 | - 'title' => esc_html__( 'WooCommerce', 'lsx' ), |
|
560 | - 'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ), |
|
559 | + 'title' => esc_html__('WooCommerce', 'lsx'), |
|
560 | + 'description' => esc_html__('Change the WooCommerce settings.', 'lsx'), |
|
561 | 561 | 'priority' => 23, |
562 | 562 | ); |
563 | 563 | |
@@ -566,8 +566,8 @@ discard block |
||
566 | 566 | */ |
567 | 567 | |
568 | 568 | $lsx_controls['sections']['lsx-wc-global'] = array( |
569 | - 'title' => esc_html__( 'Global', 'lsx' ), |
|
570 | - 'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ), |
|
569 | + 'title' => esc_html__('Global', 'lsx'), |
|
570 | + 'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'), |
|
571 | 571 | 'panel' => 'lsx-wc', |
572 | 572 | 'priority' => 1, |
573 | 573 | ); |
@@ -578,8 +578,8 @@ discard block |
||
578 | 578 | ); |
579 | 579 | |
580 | 580 | $lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array( |
581 | - 'label' => esc_html__( 'Footer Bar', 'lsx' ), |
|
582 | - 'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ), |
|
581 | + 'label' => esc_html__('Footer Bar', 'lsx'), |
|
582 | + 'description' => esc_html__('Enable the mobile footer bar.', 'lsx'), |
|
583 | 583 | 'section' => 'lsx-wc-global', |
584 | 584 | 'type' => 'checkbox', |
585 | 585 | 'priority' => 1, |
@@ -590,8 +590,8 @@ discard block |
||
590 | 590 | */ |
591 | 591 | |
592 | 592 | $lsx_controls['sections']['lsx-wc-cart'] = array( |
593 | - 'title' => esc_html__( 'Cart', 'lsx' ), |
|
594 | - 'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ), |
|
593 | + 'title' => esc_html__('Cart', 'lsx'), |
|
594 | + 'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'), |
|
595 | 595 | 'panel' => 'lsx-wc', |
596 | 596 | 'priority' => 2, |
597 | 597 | ); |
@@ -602,8 +602,8 @@ discard block |
||
602 | 602 | ); |
603 | 603 | |
604 | 604 | $lsx_controls['fields']['lsx_header_wc_cart'] = array( |
605 | - 'label' => esc_html__( 'Menu Item', 'lsx' ), |
|
606 | - 'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ), |
|
605 | + 'label' => esc_html__('Menu Item', 'lsx'), |
|
606 | + 'description' => esc_html__('Enable the cart menu item.', 'lsx'), |
|
607 | 607 | 'section' => 'lsx-wc-cart', |
608 | 608 | 'type' => 'checkbox', |
609 | 609 | 'priority' => 1, |
@@ -612,11 +612,11 @@ discard block |
||
612 | 612 | return $lsx_controls; |
613 | 613 | } |
614 | 614 | |
615 | - add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' ); |
|
615 | + add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls'); |
|
616 | 616 | |
617 | 617 | endif; |
618 | 618 | |
619 | -if ( ! function_exists( 'lsx_wc_global_header_title' ) ) : |
|
619 | +if ( ! function_exists('lsx_wc_global_header_title')) : |
|
620 | 620 | |
621 | 621 | /** |
622 | 622 | * Move the shop title into the global header |
@@ -624,21 +624,21 @@ discard block |
||
624 | 624 | * @package lsx |
625 | 625 | * @subpackage the-events-calendar |
626 | 626 | */ |
627 | - function lsx_wc_global_header_title( $title ) { |
|
627 | + function lsx_wc_global_header_title($title) { |
|
628 | 628 | |
629 | - if ( is_woocommerce() && is_shop() ) { |
|
629 | + if (is_woocommerce() && is_shop()) { |
|
630 | 630 | |
631 | - $title = __( 'Shop', 'lsx' ); |
|
631 | + $title = __('Shop', 'lsx'); |
|
632 | 632 | } |
633 | 633 | |
634 | 634 | return $title; |
635 | 635 | } |
636 | - add_filter( 'lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1 ); |
|
636 | + add_filter('lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1); |
|
637 | 637 | |
638 | 638 | endif; |
639 | 639 | |
640 | 640 | |
641 | -if ( ! function_exists( 'lsx_wc_footer_bar' ) ) : |
|
641 | +if ( ! function_exists('lsx_wc_footer_bar')) : |
|
642 | 642 | |
643 | 643 | /** |
644 | 644 | * Display WC footer bar. |
@@ -647,47 +647,47 @@ discard block |
||
647 | 647 | * @subpackage woocommerce |
648 | 648 | */ |
649 | 649 | function lsx_wc_footer_bar() { |
650 | - $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
651 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) : |
|
650 | + $cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
651 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) : |
|
652 | 652 | ?> |
653 | 653 | <div class="lsx-wc-footer-bar"> |
654 | - <form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form"> |
|
654 | + <form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form"> |
|
655 | 655 | <fieldset> |
656 | - <legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend> |
|
657 | - <input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control"> |
|
656 | + <legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend> |
|
657 | + <input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control"> |
|
658 | 658 | </fieldset> |
659 | 659 | </form> |
660 | 660 | |
661 | 661 | <ul class="lsx-wc-footer-bar-items"> |
662 | 662 | <li class="lsx-wc-footer-bar-item"> |
663 | - <a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
663 | + <a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
664 | 664 | <i class="fa fa-home" aria-hidden="true"></i> |
665 | - <span><?php esc_html_e( 'Home', 'lsx' ); ?></span> |
|
665 | + <span><?php esc_html_e('Home', 'lsx'); ?></span> |
|
666 | 666 | </a> |
667 | 667 | </li> |
668 | 668 | |
669 | 669 | <li class="lsx-wc-footer-bar-item"> |
670 | - <a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link"> |
|
670 | + <a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link"> |
|
671 | 671 | <i class="fa fa-user" aria-hidden="true"></i> |
672 | - <span><?php esc_html_e( 'Account', 'lsx' ); ?></span> |
|
672 | + <span><?php esc_html_e('Account', 'lsx'); ?></span> |
|
673 | 673 | </a> |
674 | 674 | </li> |
675 | 675 | |
676 | 676 | <li class="lsx-wc-footer-bar-item"> |
677 | 677 | <a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle"> |
678 | 678 | <i class="fa fa-search" aria-hidden="true"></i> |
679 | - <span><?php esc_html_e( 'Search', 'lsx' ); ?></span> |
|
679 | + <span><?php esc_html_e('Search', 'lsx'); ?></span> |
|
680 | 680 | </a> |
681 | 681 | </li> |
682 | 682 | |
683 | 683 | <li class="lsx-wc-footer-bar-item"> |
684 | - <a href="<?php echo esc_url( $cart_url ); ?>" class="lsx-wc-footer-bar-link"> |
|
684 | + <a href="<?php echo esc_url($cart_url); ?>" class="lsx-wc-footer-bar-link"> |
|
685 | 685 | <i class="fa fa-shopping-basket" aria-hidden="true"></i> |
686 | 686 | <?php $count = WC()->cart->get_cart_contents_count(); ?> |
687 | - <?php if ( ! empty( $count ) ) : ?> |
|
688 | - <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span> |
|
687 | + <?php if ( ! empty($count)) : ?> |
|
688 | + <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span> |
|
689 | 689 | <?php endif; ?> |
690 | - <span><?php esc_html_e( 'Cart', 'lsx' ); ?></span> |
|
690 | + <span><?php esc_html_e('Cart', 'lsx'); ?></span> |
|
691 | 691 | </a> |
692 | 692 | </li> |
693 | 693 | </ul> |
@@ -696,11 +696,11 @@ discard block |
||
696 | 696 | endif; |
697 | 697 | } |
698 | 698 | |
699 | - add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 ); |
|
699 | + add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15); |
|
700 | 700 | |
701 | 701 | endif; |
702 | 702 | |
703 | -if ( ! function_exists( 'lsx_wc_body_class' ) ) : |
|
703 | +if ( ! function_exists('lsx_wc_body_class')) : |
|
704 | 704 | |
705 | 705 | /** |
706 | 706 | * Changes body class. |
@@ -708,25 +708,25 @@ discard block |
||
708 | 708 | * @package lsx |
709 | 709 | * @subpackage woocommerce |
710 | 710 | */ |
711 | - function lsx_wc_body_class( $classes ) { |
|
711 | + function lsx_wc_body_class($classes) { |
|
712 | 712 | global $post; |
713 | 713 | |
714 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
714 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
715 | 715 | $classes[] = 'woocommerce-page woocommerce-wishlist'; |
716 | 716 | } |
717 | 717 | |
718 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) { |
|
718 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) { |
|
719 | 719 | $classes[] = 'lsx-wc-has-footer-bar'; |
720 | 720 | } |
721 | 721 | |
722 | 722 | return $classes; |
723 | 723 | } |
724 | 724 | |
725 | - add_filter( 'body_class', 'lsx_wc_body_class', 2999 ); |
|
725 | + add_filter('body_class', 'lsx_wc_body_class', 2999); |
|
726 | 726 | |
727 | 727 | endif; |
728 | 728 | |
729 | -if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) : |
|
729 | +if ( ! function_exists('lsx_wc_downloadable_products')) : |
|
730 | 730 | |
731 | 731 | /** |
732 | 732 | * Changes downloads "download" button text. |
@@ -734,19 +734,19 @@ discard block |
||
734 | 734 | * @package lsx |
735 | 735 | * @subpackage woocommerce |
736 | 736 | */ |
737 | - function lsx_wc_downloadable_products( $downloads ) { |
|
738 | - foreach ( $downloads as $i => $download ) { |
|
739 | - $downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' ); |
|
737 | + function lsx_wc_downloadable_products($downloads) { |
|
738 | + foreach ($downloads as $i => $download) { |
|
739 | + $downloads[$i]['download_name'] = esc_html__('Download', 'lsx'); |
|
740 | 740 | } |
741 | 741 | |
742 | 742 | return $downloads; |
743 | 743 | } |
744 | 744 | |
745 | - add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 ); |
|
745 | + add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999); |
|
746 | 746 | |
747 | 747 | endif; |
748 | 748 | |
749 | -if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) : |
|
749 | +if ( ! function_exists('lsx_wc_move_bundle_products')) : |
|
750 | 750 | |
751 | 751 | /** |
752 | 752 | * WooCommerce - Move the bundle products to a tab. |
@@ -754,46 +754,46 @@ discard block |
||
754 | 754 | * @package lsx |
755 | 755 | * @subpackage woocommerce |
756 | 756 | */ |
757 | - function lsx_wc_move_bundle_products( $tabs ) { |
|
757 | + function lsx_wc_move_bundle_products($tabs) { |
|
758 | 758 | global $product, $post; |
759 | 759 | |
760 | - if ( method_exists( $product, 'get_bundled_items' ) ) { |
|
760 | + if (method_exists($product, 'get_bundled_items')) { |
|
761 | 761 | $bundled_items = $product->get_bundled_items(); |
762 | 762 | |
763 | - if ( ! empty( $bundled_items ) ) { |
|
763 | + if ( ! empty($bundled_items)) { |
|
764 | 764 | $tabs['bundled_products'] = array( |
765 | - 'title' => __( 'Included Products', 'lsx' ), |
|
765 | + 'title' => __('Included Products', 'lsx'), |
|
766 | 766 | 'priority' => 10, |
767 | 767 | 'callback' => 'lsx_wc_bundle_products', |
768 | 768 | ); |
769 | 769 | } |
770 | 770 | } |
771 | 771 | |
772 | - if ( isset( $tabs['description'] ) ) { |
|
772 | + if (isset($tabs['description'])) { |
|
773 | 773 | $tabs['description']['priority'] = 5; |
774 | 774 | } |
775 | 775 | |
776 | - if ( isset( $tabs['reviews'] ) ) { |
|
776 | + if (isset($tabs['reviews'])) { |
|
777 | 777 | $tabs['reviews']['priority'] = 15; |
778 | 778 | } |
779 | 779 | |
780 | - if ( isset( $tabs['product_enquiry'] ) ) { |
|
780 | + if (isset($tabs['product_enquiry'])) { |
|
781 | 781 | $tabs['product_enquiry']['priority'] = 20; |
782 | 782 | } |
783 | 783 | |
784 | 784 | return $tabs; |
785 | 785 | } |
786 | 786 | |
787 | - add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 ); |
|
787 | + add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50); |
|
788 | 788 | |
789 | 789 | endif; |
790 | 790 | |
791 | -if ( ! function_exists( 'lsx_wc_bundle_products' ) ) : |
|
791 | +if ( ! function_exists('lsx_wc_bundle_products')) : |
|
792 | 792 | |
793 | 793 | function lsx_wc_bundle_products() { |
794 | 794 | global $product, $post; |
795 | 795 | |
796 | - if ( method_exists( $product, 'get_bundled_items' ) ) { |
|
796 | + if (method_exists($product, 'get_bundled_items')) { |
|
797 | 797 | $bundled_items = $product->get_bundled_items(); |
798 | 798 | |
799 | 799 | // do_action( 'woocommerce_before_bundled_items', $product ); |
@@ -809,16 +809,16 @@ discard block |
||
809 | 809 | // $this->widget_start( $args, $instance ); |
810 | 810 | |
811 | 811 | // @codingStandardsIgnoreLine |
812 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
812 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
813 | 813 | |
814 | - foreach ( $bundled_items as $bundled_item ) { |
|
815 | - $product = wc_get_product( $bundled_item->item_data['product_id'] ); |
|
816 | - wc_get_template( 'content-widget-product.php' ); |
|
814 | + foreach ($bundled_items as $bundled_item) { |
|
815 | + $product = wc_get_product($bundled_item->item_data['product_id']); |
|
816 | + wc_get_template('content-widget-product.php'); |
|
817 | 817 | $product = $product_original; |
818 | 818 | } |
819 | 819 | |
820 | 820 | // @codingStandardsIgnoreLine |
821 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
821 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | // $this->widget_end( $args ); |
@@ -827,7 +827,7 @@ discard block |
||
827 | 827 | endif; |
828 | 828 | |
829 | 829 | |
830 | -if ( ! function_exists( 'lsx_wc_product_searchform' ) ) : |
|
830 | +if ( ! function_exists('lsx_wc_product_searchform')) : |
|
831 | 831 | /** |
832 | 832 | * woo_custom_product_searchform |
833 | 833 | * |
@@ -835,7 +835,7 @@ discard block |
||
835 | 835 | * @since 1.0 |
836 | 836 | * @return void |
837 | 837 | */ |
838 | - function lsx_wc_product_searchform( $form ) { |
|
838 | + function lsx_wc_product_searchform($form) { |
|
839 | 839 | |
840 | 840 | $form = ' |
841 | 841 | <form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>"> |
@@ -856,42 +856,42 @@ discard block |
||
856 | 856 | |
857 | 857 | } |
858 | 858 | endif; |
859 | -add_filter( 'get_product_search_form', 'lsx_wc_product_searchform', 10, 1 ); |
|
859 | +add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1); |
|
860 | 860 | |
861 | 861 | /** |
862 | 862 | * Output the pagination. |
863 | 863 | */ |
864 | 864 | function woocommerce_pagination() { |
865 | - if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) { |
|
865 | + if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) { |
|
866 | 866 | return; |
867 | 867 | } |
868 | 868 | $args = array( |
869 | - 'total' => wc_get_loop_prop( 'total_pages' ), |
|
870 | - 'current' => wc_get_loop_prop( 'current_page' ), |
|
869 | + 'total' => wc_get_loop_prop('total_pages'), |
|
870 | + 'current' => wc_get_loop_prop('current_page'), |
|
871 | 871 | ); |
872 | 872 | |
873 | - if ( wc_get_loop_prop( 'is_shortcode' ) ) { |
|
874 | - $args['base'] = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) ); |
|
873 | + if (wc_get_loop_prop('is_shortcode')) { |
|
874 | + $args['base'] = esc_url_raw(add_query_arg('product-page', '%#%', false)); |
|
875 | 875 | $args['format'] = '?product-page = %#%'; |
876 | 876 | } else { |
877 | - $args['base'] = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ); |
|
877 | + $args['base'] = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false)))); |
|
878 | 878 | $args['format'] = ''; |
879 | 879 | } |
880 | 880 | |
881 | - echo wp_kses_post( '<div class="lsx-pagination-wrapper">' ); |
|
882 | - $template = wc_get_template_html( 'loop/pagination.php', $args ); |
|
883 | - $template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template ); |
|
884 | - echo wp_kses_post( $template ); |
|
885 | - echo wp_kses_post( '</div>' ); |
|
881 | + echo wp_kses_post('<div class="lsx-pagination-wrapper">'); |
|
882 | + $template = wc_get_template_html('loop/pagination.php', $args); |
|
883 | + $template = str_replace('woocommerce-pagination', 'lsx-pagination', $template); |
|
884 | + echo wp_kses_post($template); |
|
885 | + echo wp_kses_post('</div>'); |
|
886 | 886 | } |
887 | 887 | |
888 | -function lsx_wc_pagination_args( $args ) { |
|
889 | - $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ); |
|
890 | - $args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>'; |
|
888 | +function lsx_wc_pagination_args($args) { |
|
889 | + $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'); |
|
890 | + $args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>'; |
|
891 | 891 | $args['type'] = 'plain'; |
892 | 892 | return $args; |
893 | 893 | } |
894 | -add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1 ); |
|
894 | +add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1); |
|
895 | 895 | |
896 | 896 | |
897 | 897 | /** |
@@ -902,19 +902,19 @@ discard block |
||
902 | 902 | * |
903 | 903 | * @return array |
904 | 904 | */ |
905 | -function lsx_wc_product_widget_template( $located, $template_name ) { |
|
906 | - if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) { |
|
905 | +function lsx_wc_product_widget_template($located, $template_name) { |
|
906 | + if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) { |
|
907 | 907 | |
908 | 908 | $new_location = get_stylesheet_directory() . '/partials/' . $template_name; |
909 | - if ( file_exists( $new_location ) ) { |
|
909 | + if (file_exists($new_location)) { |
|
910 | 910 | $located = $new_location; |
911 | 911 | } else { |
912 | 912 | $new_location = get_parent_theme_file_path() . '/partials/' . $template_name; |
913 | - if ( file_exists( $new_location ) ) { |
|
913 | + if (file_exists($new_location)) { |
|
914 | 914 | $located = $new_location; |
915 | 915 | } |
916 | 916 | } |
917 | 917 | } |
918 | 918 | return $located; |
919 | 919 | } |
920 | -add_filter( 'wc_get_template', 'lsx_wc_product_widget_template', 90, 2 ); |
|
920 | +add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2); |