@@ -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,28 +38,28 @@ 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.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 42 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
| 41 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
| 42 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
| 43 | 43 | |
| 44 | 44 | // Remove select2 added by WooCommerce |
| 45 | 45 | |
| 46 | - if ( ! is_admin() ) { |
|
| 47 | - wp_dequeue_style( 'select2' ); |
|
| 48 | - wp_deregister_style( 'select2' ); |
|
| 46 | + if ( ! is_admin()) { |
|
| 47 | + wp_dequeue_style('select2'); |
|
| 48 | + wp_deregister_style('select2'); |
|
| 49 | 49 | |
| 50 | - wp_dequeue_script( 'select2' ); |
|
| 50 | + wp_dequeue_script('select2'); |
|
| 51 | 51 | //wp_deregister_script( 'select2' ); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | // Remove WC Shipping Multiple Addresses specific script causing issues on checkout |
| 55 | - wp_dequeue_script( 'wcms-country-select' ); |
|
| 55 | + wp_dequeue_script('wcms-country-select'); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
| 58 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
| 59 | 59 | |
| 60 | 60 | endif; |
| 61 | 61 | |
| 62 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
| 62 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | 65 | * WooCommerce form fields. |
@@ -67,17 +67,17 @@ discard block |
||
| 67 | 67 | * @package lsx |
| 68 | 68 | * @subpackage woocommerce |
| 69 | 69 | */ |
| 70 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
| 70 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
| 71 | 71 | $args['input_class'][] = 'form-control'; |
| 72 | 72 | |
| 73 | 73 | return $args; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
| 76 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
| 77 | 77 | |
| 78 | 78 | endif; |
| 79 | 79 | |
| 80 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
| 80 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * WooCommerce wrapper start. |
@@ -87,18 +87,18 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | function lsx_wc_theme_wrapper_start() { |
| 89 | 89 | lsx_content_wrap_before(); |
| 90 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
| 90 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
| 91 | 91 | lsx_content_before(); |
| 92 | 92 | echo '<main id="main" class="site-main" role="main">'; |
| 93 | 93 | lsx_content_top(); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
| 97 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
| 96 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
| 97 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
| 98 | 98 | |
| 99 | 99 | endif; |
| 100 | 100 | |
| 101 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
| 101 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
| 102 | 102 | |
| 103 | 103 | /** |
| 104 | 104 | * WooCommerce wrapper end. |
@@ -114,12 +114,12 @@ discard block |
||
| 114 | 114 | lsx_content_wrap_after(); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
| 118 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
| 117 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
| 118 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
| 119 | 119 | |
| 120 | 120 | endif; |
| 121 | 121 | |
| 122 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
| 122 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
| 123 | 123 | |
| 124 | 124 | /** |
| 125 | 125 | * Disable LSX Banners plugin in some WC pages. |
@@ -127,25 +127,25 @@ discard block |
||
| 127 | 127 | * @package lsx |
| 128 | 128 | * @subpackage woocommerce |
| 129 | 129 | */ |
| 130 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
| 130 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
| 131 | 131 | global $post; |
| 132 | 132 | |
| 133 | - if ( is_cart() || is_checkout() || is_account_page() ) { |
|
| 133 | + if (is_cart() || is_checkout() || is_account_page()) { |
|
| 134 | 134 | $disabled = true; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
| 137 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
| 138 | 138 | $disabled = true; |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | return $disabled; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
| 144 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
| 145 | 145 | |
| 146 | 146 | endif; |
| 147 | 147 | |
| 148 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
| 148 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | 151 | * Disable LSX Banners banner in some WC pages. |
@@ -153,19 +153,19 @@ discard block |
||
| 153 | 153 | * @package lsx |
| 154 | 154 | * @subpackage woocommerce |
| 155 | 155 | */ |
| 156 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
| 157 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
| 156 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
| 157 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
| 158 | 158 | $disabled = true; |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | return $disabled; |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
| 164 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
| 165 | 165 | |
| 166 | 166 | endif; |
| 167 | 167 | |
| 168 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
| 168 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
| 169 | 169 | |
| 170 | 170 | /** |
| 171 | 171 | * Adds WC cart to the header. |
@@ -173,32 +173,32 @@ discard block |
||
| 173 | 173 | * @package lsx |
| 174 | 174 | * @subpackage template-tags |
| 175 | 175 | */ |
| 176 | - function lsx_wc_add_cart( $items, $args ) { |
|
| 177 | - $cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' ); |
|
| 176 | + function lsx_wc_add_cart($items, $args) { |
|
| 177 | + $cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary'); |
|
| 178 | 178 | |
| 179 | - if ( $cart_menu_item_position === $args->theme_location ) { |
|
| 180 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
| 179 | + if ($cart_menu_item_position === $args->theme_location) { |
|
| 180 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
| 181 | 181 | |
| 182 | - if ( ! empty( $customizer_option ) ) { |
|
| 182 | + if ( ! empty($customizer_option)) { |
|
| 183 | 183 | ob_start(); |
| 184 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
| 184 | + the_widget('WC_Widget_Cart', 'title='); |
|
| 185 | 185 | $widget = ob_get_clean(); |
| 186 | 186 | |
| 187 | - if ( is_cart() ) { |
|
| 187 | + if (is_cart()) { |
|
| 188 | 188 | $item_class = 'current-menu-item'; |
| 189 | 189 | } else { |
| 190 | 190 | $item_class = ''; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | $item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class; |
| 194 | - $item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class ); |
|
| 194 | + $item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class); |
|
| 195 | 195 | |
| 196 | 196 | $item = '<li class="' . $item_class . '">' . |
| 197 | - '<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
| 198 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' . |
|
| 197 | + '<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
| 198 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' . |
|
| 199 | 199 | /* Translators: %s: items quantity */ |
| 200 | - '<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' . |
|
| 201 | - ( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) . |
|
| 200 | + '<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' . |
|
| 201 | + ( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') . |
|
| 202 | 202 | '</a>' . |
| 203 | 203 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
| 204 | 204 | '<li>' . |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | '</ul>' . |
| 208 | 208 | '</li>'; |
| 209 | 209 | |
| 210 | - if ( 'top-menu' === $args->theme_location ) { |
|
| 210 | + if ('top-menu' === $args->theme_location) { |
|
| 211 | 211 | $items = $item . $items; |
| 212 | 212 | } else { |
| 213 | 213 | $items = $items . $item; |
@@ -218,11 +218,11 @@ discard block |
||
| 218 | 218 | return $items; |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
| 221 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
| 222 | 222 | |
| 223 | 223 | endif; |
| 224 | 224 | |
| 225 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
| 225 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
| 226 | 226 | |
| 227 | 227 | /** |
| 228 | 228 | * Change WC products widget wrapper (before). |
@@ -230,16 +230,16 @@ discard block |
||
| 230 | 230 | * @package lsx |
| 231 | 231 | * @subpackage woocommerce |
| 232 | 232 | */ |
| 233 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
| 233 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
| 234 | 234 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
| 235 | 235 | return $html; |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
| 238 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
| 239 | 239 | |
| 240 | 240 | endif; |
| 241 | 241 | |
| 242 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
| 242 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
| 243 | 243 | |
| 244 | 244 | /** |
| 245 | 245 | * Change WC products widget wrapper (after). |
@@ -247,16 +247,16 @@ discard block |
||
| 247 | 247 | * @package lsx |
| 248 | 248 | * @subpackage woocommerce |
| 249 | 249 | */ |
| 250 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
| 250 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
| 251 | 251 | $html = '</div>'; |
| 252 | 252 | return $html; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
| 255 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
| 256 | 256 | |
| 257 | 257 | endif; |
| 258 | 258 | |
| 259 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
| 259 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
| 260 | 260 | |
| 261 | 261 | /** |
| 262 | 262 | * Override WC ewviews widget. |
@@ -265,18 +265,18 @@ discard block |
||
| 265 | 265 | * @subpackage woocommerce |
| 266 | 266 | */ |
| 267 | 267 | function lsx_wc_reviews_widget_override() { |
| 268 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
| 269 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
| 268 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
| 269 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
| 270 | 270 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
| 271 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
| 271 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
| 272 | 272 | } |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
| 275 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
| 276 | 276 | |
| 277 | 277 | endif; |
| 278 | 278 | |
| 279 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
| 279 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
| 280 | 280 | |
| 281 | 281 | /** |
| 282 | 282 | * Change WC ZERO price to "free". |
@@ -284,28 +284,28 @@ discard block |
||
| 284 | 284 | * @package lsx |
| 285 | 285 | * @subpackage woocommerce |
| 286 | 286 | */ |
| 287 | - function lsx_wc_change_price_html( $price, $product ) { |
|
| 288 | - if ( empty( $product->get_price() ) ) { |
|
| 289 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
| 290 | - $regular_price = wc_get_price_to_display( $product, array( |
|
| 287 | + function lsx_wc_change_price_html($price, $product) { |
|
| 288 | + if (empty($product->get_price())) { |
|
| 289 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
| 290 | + $regular_price = wc_get_price_to_display($product, array( |
|
| 291 | 291 | 'qty' => 1, |
| 292 | 292 | 'price' => $product->get_regular_price(), |
| 293 | - ) ); |
|
| 293 | + )); |
|
| 294 | 294 | |
| 295 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
| 295 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
| 296 | 296 | } else { |
| 297 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
| 297 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
| 298 | 298 | } |
| 299 | 299 | } |
| 300 | 300 | |
| 301 | 301 | return $price; |
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
| 304 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
| 305 | 305 | |
| 306 | 306 | endif; |
| 307 | 307 | |
| 308 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
| 308 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
| 309 | 309 | |
| 310 | 310 | /** |
| 311 | 311 | * Cart Fragments. |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | * @package lsx |
| 315 | 315 | * @subpackage woocommerce |
| 316 | 316 | */ |
| 317 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
| 317 | + function lsx_wc_cart_link_fragment($fragments) { |
|
| 318 | 318 | global $woocommerce; |
| 319 | 319 | |
| 320 | 320 | ob_start(); |
@@ -325,8 +325,8 @@ discard block |
||
| 325 | 325 | lsx_wc_items_counter(); |
| 326 | 326 | $items_counter = ob_get_clean(); |
| 327 | 327 | |
| 328 | - if ( ! empty( $items_counter ) ) { |
|
| 329 | - $fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] ); |
|
| 328 | + if ( ! empty($items_counter)) { |
|
| 329 | + $fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']); |
|
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | return $fragments; |
@@ -334,7 +334,7 @@ discard block |
||
| 334 | 334 | |
| 335 | 335 | endif; |
| 336 | 336 | |
| 337 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
| 337 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
| 338 | 338 | |
| 339 | 339 | /** |
| 340 | 340 | * Cart Link. |
@@ -345,14 +345,14 @@ discard block |
||
| 345 | 345 | */ |
| 346 | 346 | function lsx_wc_cart_link() { |
| 347 | 347 | ?> |
| 348 | - <a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
| 349 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> |
|
| 348 | + <a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
| 349 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> |
|
| 350 | 350 | |
| 351 | 351 | <?php /* Translators: %s: items quantity */ ?> |
| 352 | - <span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span> |
|
| 352 | + <span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span> |
|
| 353 | 353 | |
| 354 | - <?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?> |
|
| 355 | - <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span> |
|
| 354 | + <?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?> |
|
| 355 | + <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span> |
|
| 356 | 356 | <?php endif; ?> |
| 357 | 357 | </a> |
| 358 | 358 | <?php |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | |
| 361 | 361 | endif; |
| 362 | 362 | |
| 363 | -if ( ! function_exists( 'lsx_wc_items_counter' ) ) : |
|
| 363 | +if ( ! function_exists('lsx_wc_items_counter')) : |
|
| 364 | 364 | |
| 365 | 365 | /** |
| 366 | 366 | * Add car item hidden items counter. |
@@ -372,21 +372,21 @@ discard block |
||
| 372 | 372 | $count = (int) WC()->cart->get_cart_contents_count(); |
| 373 | 373 | $items_counter = ''; |
| 374 | 374 | |
| 375 | - if ( ! empty( $count ) ) { |
|
| 375 | + if ( ! empty($count)) { |
|
| 376 | 376 | $count -= 3; |
| 377 | 377 | |
| 378 | - if ( 1 === $count ) { |
|
| 379 | - $items_counter = esc_html__( '1 other item in cart', 'lsx' ); |
|
| 380 | - } elseif ( $count > 1 ) { |
|
| 378 | + if (1 === $count) { |
|
| 379 | + $items_counter = esc_html__('1 other item in cart', 'lsx'); |
|
| 380 | + } elseif ($count > 1) { |
|
| 381 | 381 | /* Translators: %s: items counter */ |
| 382 | - $items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count ); |
|
| 382 | + $items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count); |
|
| 383 | 383 | } |
| 384 | 384 | } |
| 385 | 385 | |
| 386 | - if ( ! empty( $items_counter ) ) : |
|
| 386 | + if ( ! empty($items_counter)) : |
|
| 387 | 387 | ?> |
| 388 | 388 | <li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;"> |
| 389 | - <a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>"><?php echo esc_html( $items_counter ); ?></a> |
|
| 389 | + <a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>"><?php echo esc_html($items_counter); ?></a> |
|
| 390 | 390 | </li> |
| 391 | 391 | <?php |
| 392 | 392 | endif; |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | |
| 395 | 395 | endif; |
| 396 | 396 | |
| 397 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
| 397 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
| 398 | 398 | |
| 399 | 399 | /** |
| 400 | 400 | * Changes the number of products to display on shop. |
@@ -402,16 +402,16 @@ discard block |
||
| 402 | 402 | * @package lsx |
| 403 | 403 | * @subpackage woocommerce |
| 404 | 404 | */ |
| 405 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
| 405 | + function lsx_wc_loop_shop_per_page($items) { |
|
| 406 | 406 | $items = 20; |
| 407 | 407 | return $items; |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
| 410 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
| 411 | 411 | |
| 412 | 412 | endif; |
| 413 | 413 | |
| 414 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
| 414 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
| 415 | 415 | |
| 416 | 416 | /** |
| 417 | 417 | * Changes the "added to cart" message HTML. |
@@ -419,39 +419,39 @@ discard block |
||
| 419 | 419 | * @package lsx |
| 420 | 420 | * @subpackage woocommerce |
| 421 | 421 | */ |
| 422 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
| 422 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
| 423 | 423 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
| 424 | 424 | return $message; |
| 425 | 425 | } |
| 426 | 426 | |
| 427 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
| 427 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
| 428 | 428 | |
| 429 | 429 | endif; |
| 430 | 430 | |
| 431 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
| 432 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 431 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
| 432 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 433 | 433 | } else { |
| 434 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 434 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 435 | 435 | } |
| 436 | 436 | |
| 437 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
| 437 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
| 438 | 438 | |
| 439 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 440 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 441 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 442 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
| 443 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 439 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 440 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 441 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
| 442 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
| 443 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 444 | 444 | |
| 445 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 446 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
| 445 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 446 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
| 447 | 447 | |
| 448 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 449 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 450 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 451 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
| 452 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 448 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 449 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 450 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 451 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
| 452 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 453 | 453 | |
| 454 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
| 454 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
| 455 | 455 | |
| 456 | 456 | /** |
| 457 | 457 | * Sorting wrapper. |
@@ -465,7 +465,7 @@ discard block |
||
| 465 | 465 | |
| 466 | 466 | endif; |
| 467 | 467 | |
| 468 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
| 468 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
| 469 | 469 | |
| 470 | 470 | /** |
| 471 | 471 | * Sorting wrapper close. |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | |
| 480 | 480 | endif; |
| 481 | 481 | |
| 482 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
| 482 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
| 483 | 483 | |
| 484 | 484 | /** |
| 485 | 485 | * Product columns wrapper close. |
@@ -493,7 +493,7 @@ discard block |
||
| 493 | 493 | |
| 494 | 494 | endif; |
| 495 | 495 | |
| 496 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
| 496 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
| 497 | 497 | |
| 498 | 498 | /** |
| 499 | 499 | * LSX WooCommerce Pagination |
@@ -505,14 +505,14 @@ discard block |
||
| 505 | 505 | * @subpackage woocommerce |
| 506 | 506 | */ |
| 507 | 507 | function lsx_wc_woocommerce_pagination() { |
| 508 | - if ( woocommerce_products_will_display() ) { |
|
| 508 | + if (woocommerce_products_will_display()) { |
|
| 509 | 509 | woocommerce_pagination(); |
| 510 | 510 | } |
| 511 | 511 | } |
| 512 | 512 | |
| 513 | 513 | endif; |
| 514 | 514 | |
| 515 | -if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) : |
|
| 515 | +if ( ! function_exists('lsx_customizer_wc_controls')) : |
|
| 516 | 516 | |
| 517 | 517 | /** |
| 518 | 518 | * Returns an array of the core panel. |
@@ -522,10 +522,10 @@ discard block |
||
| 522 | 522 | * |
| 523 | 523 | * @return $lsx_controls array() |
| 524 | 524 | */ |
| 525 | - function lsx_customizer_wc_controls( $lsx_controls ) { |
|
| 525 | + function lsx_customizer_wc_controls($lsx_controls) { |
|
| 526 | 526 | $lsx_controls['panels']['lsx-wc'] = array( |
| 527 | - 'title' => esc_html__( 'WooCommerce', 'lsx' ), |
|
| 528 | - 'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ), |
|
| 527 | + 'title' => esc_html__('WooCommerce', 'lsx'), |
|
| 528 | + 'description' => esc_html__('Change the WooCommerce settings.', 'lsx'), |
|
| 529 | 529 | 'priority' => 23, |
| 530 | 530 | ); |
| 531 | 531 | |
@@ -534,8 +534,8 @@ discard block |
||
| 534 | 534 | */ |
| 535 | 535 | |
| 536 | 536 | $lsx_controls['sections']['lsx-wc-global'] = array( |
| 537 | - 'title' => esc_html__( 'Global', 'lsx' ), |
|
| 538 | - 'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ), |
|
| 537 | + 'title' => esc_html__('Global', 'lsx'), |
|
| 538 | + 'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'), |
|
| 539 | 539 | 'panel' => 'lsx-wc', |
| 540 | 540 | 'priority' => 1, |
| 541 | 541 | ); |
@@ -546,8 +546,8 @@ discard block |
||
| 546 | 546 | ); |
| 547 | 547 | |
| 548 | 548 | $lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array( |
| 549 | - 'label' => esc_html__( 'Footer Bar', 'lsx' ), |
|
| 550 | - 'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ), |
|
| 549 | + 'label' => esc_html__('Footer Bar', 'lsx'), |
|
| 550 | + 'description' => esc_html__('Enable the mobile footer bar.', 'lsx'), |
|
| 551 | 551 | 'section' => 'lsx-wc-global', |
| 552 | 552 | 'type' => 'checkbox', |
| 553 | 553 | 'priority' => 1, |
@@ -558,8 +558,8 @@ discard block |
||
| 558 | 558 | */ |
| 559 | 559 | |
| 560 | 560 | $lsx_controls['sections']['lsx-wc-cart'] = array( |
| 561 | - 'title' => esc_html__( 'Cart', 'lsx' ), |
|
| 562 | - 'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ), |
|
| 561 | + 'title' => esc_html__('Cart', 'lsx'), |
|
| 562 | + 'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'), |
|
| 563 | 563 | 'panel' => 'lsx-wc', |
| 564 | 564 | 'priority' => 2, |
| 565 | 565 | ); |
@@ -570,8 +570,8 @@ discard block |
||
| 570 | 570 | ); |
| 571 | 571 | |
| 572 | 572 | $lsx_controls['fields']['lsx_header_wc_cart'] = array( |
| 573 | - 'label' => esc_html__( 'Menu Item', 'lsx' ), |
|
| 574 | - 'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ), |
|
| 573 | + 'label' => esc_html__('Menu Item', 'lsx'), |
|
| 574 | + 'description' => esc_html__('Enable the cart menu item.', 'lsx'), |
|
| 575 | 575 | 'section' => 'lsx-wc-cart', |
| 576 | 576 | 'type' => 'checkbox', |
| 577 | 577 | 'priority' => 1, |
@@ -580,11 +580,11 @@ discard block |
||
| 580 | 580 | return $lsx_controls; |
| 581 | 581 | } |
| 582 | 582 | |
| 583 | - add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' ); |
|
| 583 | + add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls'); |
|
| 584 | 584 | |
| 585 | 585 | endif; |
| 586 | 586 | |
| 587 | -if ( ! function_exists( 'lsx_wc_footer_bar' ) ) : |
|
| 587 | +if ( ! function_exists('lsx_wc_footer_bar')) : |
|
| 588 | 588 | |
| 589 | 589 | /** |
| 590 | 590 | * Display WC footer bar. |
@@ -593,46 +593,46 @@ discard block |
||
| 593 | 593 | * @subpackage woocommerce |
| 594 | 594 | */ |
| 595 | 595 | function lsx_wc_footer_bar() { |
| 596 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) : |
|
| 596 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) : |
|
| 597 | 597 | ?> |
| 598 | 598 | <div class="lsx-wc-footer-bar"> |
| 599 | - <form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form"> |
|
| 599 | + <form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form"> |
|
| 600 | 600 | <fieldset> |
| 601 | - <legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend> |
|
| 602 | - <input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products…', 'lsx' ); ?>" class="form-control"> |
|
| 601 | + <legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend> |
|
| 602 | + <input type="search" name="s" placeholder="<?php esc_attr_e('Search products…', 'lsx'); ?>" class="form-control"> |
|
| 603 | 603 | </fieldset> |
| 604 | 604 | </form> |
| 605 | 605 | |
| 606 | 606 | <ul class="lsx-wc-footer-bar-items"> |
| 607 | 607 | <li class="lsx-wc-footer-bar-item"> |
| 608 | - <a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 608 | + <a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
| 609 | 609 | <i class="fa fa-home" aria-hidden="true"></i> |
| 610 | - <span><?php esc_html_e( 'Home', 'lsx' ); ?></span> |
|
| 610 | + <span><?php esc_html_e('Home', 'lsx'); ?></span> |
|
| 611 | 611 | </a> |
| 612 | 612 | </li> |
| 613 | 613 | |
| 614 | 614 | <li class="lsx-wc-footer-bar-item"> |
| 615 | - <a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 615 | + <a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link"> |
|
| 616 | 616 | <i class="fa fa-user" aria-hidden="true"></i> |
| 617 | - <span><?php esc_html_e( 'Account', 'lsx' ); ?></span> |
|
| 617 | + <span><?php esc_html_e('Account', 'lsx'); ?></span> |
|
| 618 | 618 | </a> |
| 619 | 619 | </li> |
| 620 | 620 | |
| 621 | 621 | <li class="lsx-wc-footer-bar-item"> |
| 622 | 622 | <a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle"> |
| 623 | 623 | <i class="fa fa-search" aria-hidden="true"></i> |
| 624 | - <span><?php esc_html_e( 'Search', 'lsx' ); ?></span> |
|
| 624 | + <span><?php esc_html_e('Search', 'lsx'); ?></span> |
|
| 625 | 625 | </a> |
| 626 | 626 | </li> |
| 627 | 627 | |
| 628 | 628 | <li class="lsx-wc-footer-bar-item"> |
| 629 | - <a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 629 | + <a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
| 630 | 630 | <i class="fa fa-shopping-basket" aria-hidden="true"></i> |
| 631 | 631 | <?php $count = WC()->cart->get_cart_contents_count(); ?> |
| 632 | - <?php if ( ! empty( $count ) ) : ?> |
|
| 633 | - <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span> |
|
| 632 | + <?php if ( ! empty($count)) : ?> |
|
| 633 | + <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span> |
|
| 634 | 634 | <?php endif; ?> |
| 635 | - <span><?php esc_html_e( 'Cart', 'lsx' ); ?></span> |
|
| 635 | + <span><?php esc_html_e('Cart', 'lsx'); ?></span> |
|
| 636 | 636 | </a> |
| 637 | 637 | </li> |
| 638 | 638 | </ul> |
@@ -641,11 +641,11 @@ discard block |
||
| 641 | 641 | endif; |
| 642 | 642 | } |
| 643 | 643 | |
| 644 | - add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 ); |
|
| 644 | + add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15); |
|
| 645 | 645 | |
| 646 | 646 | endif; |
| 647 | 647 | |
| 648 | -if ( ! function_exists( 'lsx_wc_body_class' ) ) : |
|
| 648 | +if ( ! function_exists('lsx_wc_body_class')) : |
|
| 649 | 649 | |
| 650 | 650 | /** |
| 651 | 651 | * Changes body class. |
@@ -653,25 +653,25 @@ discard block |
||
| 653 | 653 | * @package lsx |
| 654 | 654 | * @subpackage woocommerce |
| 655 | 655 | */ |
| 656 | - function lsx_wc_body_class( $classes ) { |
|
| 656 | + function lsx_wc_body_class($classes) { |
|
| 657 | 657 | global $post; |
| 658 | 658 | |
| 659 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
| 659 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
| 660 | 660 | $classes[] = 'woocommerce-page woocommerce-wishlist'; |
| 661 | 661 | } |
| 662 | 662 | |
| 663 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) { |
|
| 663 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) { |
|
| 664 | 664 | $classes[] = 'lsx-wc-has-footer-bar'; |
| 665 | 665 | } |
| 666 | 666 | |
| 667 | 667 | return $classes; |
| 668 | 668 | } |
| 669 | 669 | |
| 670 | - add_filter( 'body_class', 'lsx_wc_body_class', 2999 ); |
|
| 670 | + add_filter('body_class', 'lsx_wc_body_class', 2999); |
|
| 671 | 671 | |
| 672 | 672 | endif; |
| 673 | 673 | |
| 674 | -if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) : |
|
| 674 | +if ( ! function_exists('lsx_wc_downloadable_products')) : |
|
| 675 | 675 | |
| 676 | 676 | /** |
| 677 | 677 | * Changes downloads "download" button text. |
@@ -679,19 +679,19 @@ discard block |
||
| 679 | 679 | * @package lsx |
| 680 | 680 | * @subpackage woocommerce |
| 681 | 681 | */ |
| 682 | - function lsx_wc_downloadable_products( $downloads ) { |
|
| 683 | - foreach ( $downloads as $i => $download ) { |
|
| 684 | - $downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' ); |
|
| 682 | + function lsx_wc_downloadable_products($downloads) { |
|
| 683 | + foreach ($downloads as $i => $download) { |
|
| 684 | + $downloads[$i]['download_name'] = esc_html__('Download', 'lsx'); |
|
| 685 | 685 | } |
| 686 | 686 | |
| 687 | 687 | return $downloads; |
| 688 | 688 | } |
| 689 | 689 | |
| 690 | - add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 ); |
|
| 690 | + add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999); |
|
| 691 | 691 | |
| 692 | 692 | endif; |
| 693 | 693 | |
| 694 | -if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) : |
|
| 694 | +if ( ! function_exists('lsx_wc_move_bundle_products')) : |
|
| 695 | 695 | |
| 696 | 696 | /** |
| 697 | 697 | * WooCommerce - Move the bundle products to a tab. |
@@ -699,46 +699,46 @@ discard block |
||
| 699 | 699 | * @package lsx |
| 700 | 700 | * @subpackage woocommerce |
| 701 | 701 | */ |
| 702 | - function lsx_wc_move_bundle_products( $tabs ) { |
|
| 702 | + function lsx_wc_move_bundle_products($tabs) { |
|
| 703 | 703 | global $product, $post; |
| 704 | 704 | |
| 705 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
| 705 | + if (method_exists($product, 'get_bundled_items')) { |
|
| 706 | 706 | $bundled_items = $product->get_bundled_items(); |
| 707 | 707 | |
| 708 | - if ( ! empty( $bundled_items ) ) { |
|
| 708 | + if ( ! empty($bundled_items)) { |
|
| 709 | 709 | $tabs['bundled_products'] = array( |
| 710 | - 'title' => __( 'Included Products', 'lsx' ), |
|
| 710 | + 'title' => __('Included Products', 'lsx'), |
|
| 711 | 711 | 'priority' => 10, |
| 712 | 712 | 'callback' => 'lsx_wc_bundle_products', |
| 713 | 713 | ); |
| 714 | 714 | } |
| 715 | 715 | } |
| 716 | 716 | |
| 717 | - if ( isset( $tabs['description'] ) ) { |
|
| 717 | + if (isset($tabs['description'])) { |
|
| 718 | 718 | $tabs['description']['priority'] = 5; |
| 719 | 719 | } |
| 720 | 720 | |
| 721 | - if ( isset( $tabs['reviews'] ) ) { |
|
| 721 | + if (isset($tabs['reviews'])) { |
|
| 722 | 722 | $tabs['reviews']['priority'] = 15; |
| 723 | 723 | } |
| 724 | 724 | |
| 725 | - if ( isset( $tabs['product_enquiry'] ) ) { |
|
| 725 | + if (isset($tabs['product_enquiry'])) { |
|
| 726 | 726 | $tabs['product_enquiry']['priority'] = 20; |
| 727 | 727 | } |
| 728 | 728 | |
| 729 | 729 | return $tabs; |
| 730 | 730 | } |
| 731 | 731 | |
| 732 | - add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 ); |
|
| 732 | + add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50); |
|
| 733 | 733 | |
| 734 | 734 | endif; |
| 735 | 735 | |
| 736 | -if ( ! function_exists( 'lsx_wc_bundle_products' ) ) : |
|
| 736 | +if ( ! function_exists('lsx_wc_bundle_products')) : |
|
| 737 | 737 | |
| 738 | 738 | function lsx_wc_bundle_products() { |
| 739 | 739 | global $product, $post; |
| 740 | 740 | |
| 741 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
| 741 | + if (method_exists($product, 'get_bundled_items')) { |
|
| 742 | 742 | $bundled_items = $product->get_bundled_items(); |
| 743 | 743 | |
| 744 | 744 | // do_action( 'woocommerce_before_bundled_items', $product ); |
@@ -754,16 +754,16 @@ discard block |
||
| 754 | 754 | // $this->widget_start( $args, $instance ); |
| 755 | 755 | |
| 756 | 756 | // @codingStandardsIgnoreLine |
| 757 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
| 757 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
| 758 | 758 | |
| 759 | - foreach ( $bundled_items as $bundled_item ) { |
|
| 760 | - $product = wc_get_product( $bundled_item->item_data['product_id'] ); |
|
| 761 | - wc_get_template( 'content-widget-product.php' ); |
|
| 759 | + foreach ($bundled_items as $bundled_item) { |
|
| 760 | + $product = wc_get_product($bundled_item->item_data['product_id']); |
|
| 761 | + wc_get_template('content-widget-product.php'); |
|
| 762 | 762 | $product = $product_original; |
| 763 | 763 | } |
| 764 | 764 | |
| 765 | 765 | // @codingStandardsIgnoreLine |
| 766 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
| 766 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
| 767 | 767 | } |
| 768 | 768 | |
| 769 | 769 | // $this->widget_end( $args ); |