@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage layout |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_wc_support' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_wc_support')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * WooCommerce support. |
@@ -19,14 +19,14 @@ discard block |
||
| 19 | 19 | * @subpackage woocommerce |
| 20 | 20 | */ |
| 21 | 21 | function lsx_wc_support() { |
| 22 | - add_theme_support( 'woocommerce' ); |
|
| 22 | + add_theme_support('woocommerce'); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
| 25 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
| 26 | 26 | |
| 27 | 27 | endif; |
| 28 | 28 | |
| 29 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
| 29 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * WooCommerce enqueue styles. |
@@ -35,23 +35,23 @@ discard block |
||
| 35 | 35 | * @subpackage woocommerce |
| 36 | 36 | */ |
| 37 | 37 | function lsx_wc_scripts_add_styles() { |
| 38 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 39 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
| 38 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
| 39 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
| 40 | 40 | |
| 41 | 41 | // Remove select2 added by WooCommerce |
| 42 | 42 | |
| 43 | - wp_dequeue_style( 'select2' ); |
|
| 44 | - wp_deregister_style( 'select2' ); |
|
| 43 | + wp_dequeue_style('select2'); |
|
| 44 | + wp_deregister_style('select2'); |
|
| 45 | 45 | |
| 46 | - wp_dequeue_script( 'select2' ); |
|
| 47 | - wp_deregister_script( 'select2' ); |
|
| 46 | + wp_dequeue_script('select2'); |
|
| 47 | + wp_deregister_script('select2'); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
| 50 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
| 51 | 51 | |
| 52 | 52 | endif; |
| 53 | 53 | |
| 54 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
| 54 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * WooCommerce form fields. |
@@ -59,17 +59,17 @@ discard block |
||
| 59 | 59 | * @package lsx |
| 60 | 60 | * @subpackage woocommerce |
| 61 | 61 | */ |
| 62 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
| 62 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
| 63 | 63 | $args['input_class'][] = 'form-control'; |
| 64 | 64 | |
| 65 | 65 | return $args; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
| 68 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
| 69 | 69 | |
| 70 | 70 | endif; |
| 71 | 71 | |
| 72 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
| 72 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
| 73 | 73 | |
| 74 | 74 | /** |
| 75 | 75 | * WooCommerce wrapper start. |
@@ -85,12 +85,12 @@ discard block |
||
| 85 | 85 | lsx_content_top(); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
| 89 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
| 88 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
| 89 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
| 90 | 90 | |
| 91 | 91 | endif; |
| 92 | 92 | |
| 93 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
| 93 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
| 94 | 94 | |
| 95 | 95 | /** |
| 96 | 96 | * WooCommerce wrapper end. |
@@ -106,12 +106,12 @@ discard block |
||
| 106 | 106 | lsx_content_wrap_after(); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
| 110 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
| 109 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
| 110 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
| 111 | 111 | |
| 112 | 112 | endif; |
| 113 | 113 | |
| 114 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
| 114 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | 117 | * Disable LSX Banners plugin in some WC pages. |
@@ -119,19 +119,19 @@ discard block |
||
| 119 | 119 | * @package lsx |
| 120 | 120 | * @subpackage woocommerce |
| 121 | 121 | */ |
| 122 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
| 123 | - if ( is_cart() || is_checkout() || is_account_page() ) { |
|
| 122 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
| 123 | + if (is_cart() || is_checkout() || is_account_page()) { |
|
| 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,19 +139,19 @@ 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_add_cart' ) ) : |
|
| 154 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
| 155 | 155 | |
| 156 | 156 | /** |
| 157 | 157 | * Adds WC cart to the header. |
@@ -159,25 +159,25 @@ discard block |
||
| 159 | 159 | * @package lsx |
| 160 | 160 | * @subpackage template-tags |
| 161 | 161 | */ |
| 162 | - function lsx_wc_add_cart( $items, $args ) { |
|
| 163 | - if ( 'primary' === $args->theme_location ) { |
|
| 164 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
| 162 | + function lsx_wc_add_cart($items, $args) { |
|
| 163 | + if ('primary' === $args->theme_location) { |
|
| 164 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
| 165 | 165 | |
| 166 | - if ( ! empty( $customizer_option ) ) { |
|
| 166 | + if ( ! empty($customizer_option)) { |
|
| 167 | 167 | ob_start(); |
| 168 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
| 168 | + the_widget('WC_Widget_Cart', 'title='); |
|
| 169 | 169 | $widget = ob_get_clean(); |
| 170 | 170 | |
| 171 | - if ( is_cart() ) { |
|
| 171 | + if (is_cart()) { |
|
| 172 | 172 | $class = 'current-menu-item'; |
| 173 | 173 | } else { |
| 174 | 174 | $class = ''; |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | $item = '<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class . '">' . |
| 178 | - '<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">' . |
|
| 178 | + '<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">' . |
|
| 179 | 179 | /* Translators: %s: items quantity */ |
| 180 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span> <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>' . |
|
| 180 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span> <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>' . |
|
| 181 | 181 | '</a>' . |
| 182 | 182 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
| 183 | 183 | '<li>' . |
@@ -193,11 +193,11 @@ discard block |
||
| 193 | 193 | return $items; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
| 196 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
| 197 | 197 | |
| 198 | 198 | endif; |
| 199 | 199 | |
| 200 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
| 200 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
| 201 | 201 | |
| 202 | 202 | /** |
| 203 | 203 | * Change WC products widget wrapper (before). |
@@ -205,16 +205,16 @@ discard block |
||
| 205 | 205 | * @package lsx |
| 206 | 206 | * @subpackage woocommerce |
| 207 | 207 | */ |
| 208 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
| 208 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
| 209 | 209 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
| 210 | 210 | return $html; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
| 213 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
| 214 | 214 | |
| 215 | 215 | endif; |
| 216 | 216 | |
| 217 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
| 217 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
| 218 | 218 | |
| 219 | 219 | /** |
| 220 | 220 | * Change WC products widget wrapper (after). |
@@ -222,16 +222,16 @@ discard block |
||
| 222 | 222 | * @package lsx |
| 223 | 223 | * @subpackage woocommerce |
| 224 | 224 | */ |
| 225 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
| 225 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
| 226 | 226 | $html = '</div>'; |
| 227 | 227 | return $html; |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
| 230 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
| 231 | 231 | |
| 232 | 232 | endif; |
| 233 | 233 | |
| 234 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
| 234 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
| 235 | 235 | |
| 236 | 236 | /** |
| 237 | 237 | * Override WC ewviews widget. |
@@ -240,18 +240,18 @@ discard block |
||
| 240 | 240 | * @subpackage woocommerce |
| 241 | 241 | */ |
| 242 | 242 | function lsx_wc_reviews_widget_override() { |
| 243 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
| 244 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
| 243 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
| 244 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
| 245 | 245 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
| 246 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
| 246 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
| 247 | 247 | } |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
| 250 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
| 251 | 251 | |
| 252 | 252 | endif; |
| 253 | 253 | |
| 254 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
| 254 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
| 255 | 255 | |
| 256 | 256 | /** |
| 257 | 257 | * Change WC ZERO price to "free". |
@@ -259,28 +259,28 @@ discard block |
||
| 259 | 259 | * @package lsx |
| 260 | 260 | * @subpackage woocommerce |
| 261 | 261 | */ |
| 262 | - function lsx_wc_change_price_html( $price, $product ) { |
|
| 263 | - if ( empty( $product->get_price() ) ) { |
|
| 264 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
| 265 | - $regular_price = wc_get_price_to_display( $product, array( |
|
| 262 | + function lsx_wc_change_price_html($price, $product) { |
|
| 263 | + if (empty($product->get_price())) { |
|
| 264 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
| 265 | + $regular_price = wc_get_price_to_display($product, array( |
|
| 266 | 266 | 'qty' => 1, |
| 267 | 267 | 'price' => $product->get_regular_price(), |
| 268 | - ) ); |
|
| 268 | + )); |
|
| 269 | 269 | |
| 270 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
| 270 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
| 271 | 271 | } else { |
| 272 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
| 272 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
| 273 | 273 | } |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | return $price; |
| 277 | 277 | } |
| 278 | 278 | |
| 279 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
| 279 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
| 280 | 280 | |
| 281 | 281 | endif; |
| 282 | 282 | |
| 283 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
| 283 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
| 284 | 284 | |
| 285 | 285 | /** |
| 286 | 286 | * Cart Fragments. |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | * @package lsx |
| 290 | 290 | * @subpackage woocommerce |
| 291 | 291 | */ |
| 292 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
| 292 | + function lsx_wc_cart_link_fragment($fragments) { |
|
| 293 | 293 | global $woocommerce; |
| 294 | 294 | |
| 295 | 295 | ob_start(); |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | |
| 302 | 302 | endif; |
| 303 | 303 | |
| 304 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
| 304 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
| 305 | 305 | |
| 306 | 306 | /** |
| 307 | 307 | * Cart Link. |
@@ -312,16 +312,16 @@ discard block |
||
| 312 | 312 | */ |
| 313 | 313 | function lsx_wc_cart_link() { |
| 314 | 314 | ?> |
| 315 | - <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"> |
|
| 315 | + <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"> |
|
| 316 | 316 | <?php /* Translators: %s: items quantity */ ?> |
| 317 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <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> |
|
| 317 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> <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> |
|
| 318 | 318 | </a> |
| 319 | 319 | <?php |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | endif; |
| 323 | 323 | |
| 324 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
| 324 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
| 325 | 325 | |
| 326 | 326 | /** |
| 327 | 327 | * Changes the number of products to display on shop. |
@@ -329,16 +329,16 @@ discard block |
||
| 329 | 329 | * @package lsx |
| 330 | 330 | * @subpackage woocommerce |
| 331 | 331 | */ |
| 332 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
| 332 | + function lsx_wc_loop_shop_per_page($items) { |
|
| 333 | 333 | $items = 20; |
| 334 | 334 | return $items; |
| 335 | 335 | } |
| 336 | 336 | |
| 337 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
| 337 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
| 338 | 338 | |
| 339 | 339 | endif; |
| 340 | 340 | |
| 341 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
| 341 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
| 342 | 342 | |
| 343 | 343 | /** |
| 344 | 344 | * Changes the "added to cart" message HTML. |
@@ -346,39 +346,39 @@ discard block |
||
| 346 | 346 | * @package lsx |
| 347 | 347 | * @subpackage woocommerce |
| 348 | 348 | */ |
| 349 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
| 349 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
| 350 | 350 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
| 351 | 351 | return $message; |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
| 354 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
| 355 | 355 | |
| 356 | 356 | endif; |
| 357 | 357 | |
| 358 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
| 359 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 358 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
| 359 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 360 | 360 | } else { |
| 361 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 361 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 362 | 362 | } |
| 363 | 363 | |
| 364 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
| 364 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
| 365 | 365 | |
| 366 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 367 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 368 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 369 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
| 370 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 366 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 367 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 368 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
| 369 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
| 370 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 371 | 371 | |
| 372 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 373 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
| 372 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 373 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
| 374 | 374 | |
| 375 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 376 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 377 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 378 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
| 379 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 375 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 376 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 377 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 378 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
| 379 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 380 | 380 | |
| 381 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
| 381 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
| 382 | 382 | |
| 383 | 383 | /** |
| 384 | 384 | * Sorting wrapper. |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | |
| 393 | 393 | endif; |
| 394 | 394 | |
| 395 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
| 395 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
| 396 | 396 | |
| 397 | 397 | /** |
| 398 | 398 | * Sorting wrapper close. |
@@ -406,7 +406,7 @@ discard block |
||
| 406 | 406 | |
| 407 | 407 | endif; |
| 408 | 408 | |
| 409 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
| 409 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
| 410 | 410 | |
| 411 | 411 | /** |
| 412 | 412 | * Product columns wrapper close. |
@@ -420,7 +420,7 @@ discard block |
||
| 420 | 420 | |
| 421 | 421 | endif; |
| 422 | 422 | |
| 423 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
| 423 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
| 424 | 424 | |
| 425 | 425 | /** |
| 426 | 426 | * LSX WooCommerce Pagination |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | * @subpackage woocommerce |
| 433 | 433 | */ |
| 434 | 434 | function lsx_wc_woocommerce_pagination() { |
| 435 | - if ( woocommerce_products_will_display() ) { |
|
| 435 | + if (woocommerce_products_will_display()) { |
|
| 436 | 436 | woocommerce_pagination(); |
| 437 | 437 | } |
| 438 | 438 | } |