????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.116 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/themes/x/woocommerce/cart/ |
Upload File : |
<?php // ============================================================================= // WOOCOMMERCE/CART/CROSS-SELLS.PHP // ----------------------------------------------------------------------------- // @version 1.6.4 // ============================================================================= if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce, $woocommerce_loop; $crosssells = WC()->cart->get_cross_sells(); if ( sizeof( $crosssells ) == 0 ) return; $meta_query = WC()->query->get_meta_query(); $enable = x_get_option( 'x_woocommerce_cart_cross_sells_enable' ); $count = x_get_option( 'x_woocommerce_cart_cross_sells_count' ); $columns = x_get_option( 'x_woocommerce_cart_cross_sells_columns' ); $args = array( 'post_type' => 'product', 'ignore_sticky_posts' => 1, 'no_found_rows' => 1, 'posts_per_page' => apply_filters( 'woocommerce_cross_sells_total', $count ), 'orderby' => $orderby, 'post__in' => $crosssells, 'meta_query' => $meta_query ); $products = new WP_Query( $args ); $woocommerce_loop['columns'] = apply_filters( 'woocommerce_cross_sells_columns', $columns ); if ( $products->have_posts() && $enable == '1' ) : ?> <div class="cross-sells cols-<?php echo $columns; ?>"> <h2><?php _e( 'You May Be Interested In…', '__x__' ) ?></h2> <?php woocommerce_product_loop_start(); ?> <?php while ( $products->have_posts() ) : $products->the_post(); ?> <?php wc_get_template_part( 'content', 'product' ); ?> <?php endwhile; ?> <?php woocommerce_product_loop_end(); ?> </div> <?php endif; wp_reset_query();