/
var
/
www
/
barefootlaw.org
/
wp-content
/
themes
/
archub
/
woocommerce
/
Upload File
HOME
<?php /** * Woocommerce Compare page * * @author YITH * @package YITH Woocommerce Compare * @version 2.3.2 */ // remove the style of woocommerce if( defined('WOOCOMMERCE_USE_CSS') && WOOCOMMERCE_USE_CSS ) wp_dequeue_style('woocommerce_frontend_styles'); $is_iframe = (bool)( isset( $_REQUEST['iframe'] ) && $_REQUEST['iframe'] ); wp_enqueue_script( 'jquery-imagesloaded', YITH_WOOCOMPARE_ASSETS_URL . '/js/imagesloaded.pkgd.min.js', array('jquery'), '3.1.8', true ); wp_enqueue_script( 'jquery-fixedheadertable', YITH_WOOCOMPARE_ASSETS_URL . '/js/jquery.dataTables.min.js', array('jquery'), '1.10.19', true ); wp_enqueue_script( 'jquery-fixedcolumns', YITH_WOOCOMPARE_ASSETS_URL . '/js/FixedColumns.min.js', array('jquery', 'jquery-fixedheadertable'), '3.2.6', true ); $widths = array(); foreach( $products as $product ) $widths[] = '{ "sWidth": "205px", resizeable:true }'; $table_text = get_option( 'yith_woocompare_table_text', esc_html__( 'Compare products', 'archub' ) ); do_action ( 'wpml_register_single_string', 'Plugins', 'plugin_yit_compare_table_text', $table_text ); $localized_table_text = apply_filters ( 'wpml_translate_single_string', $table_text, 'Plugins', 'plugin_yit_compare_table_text' ); ?><!DOCTYPE html> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width" /> <link rel="profile" href="http://gmpg.org/xfn/11" /> <?php wp_head() ?> <?php do_action( 'yith_woocompare_popup_head' ) ?> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800" /> <link rel="stylesheet" href="<?php echo YITH_WOOCOMPARE_URL ?>assets/css/colorbox.css"/> <link rel="stylesheet" href="<?php echo YITH_WOOCOMPARE_URL ?>assets/css/jquery.dataTables.css"/> <link rel="stylesheet" href="<?php echo esc_url( $this->stylesheet_url() ) ?>" type="text/css" /> <link rel="stylesheet" href="<?php echo get_template_directory_uri( ) . '/assets/css/liquid-yith-compare.min.css' ?>" type="text/css" /> <style type="text/css"> body.loading { background: url("<?php echo YITH_WOOCOMPARE_URL ?>assets/images/colorbox/loading.gif") no-repeat scroll center center transparent; } </style> </head> <?php global $product; ?> <body <?php body_class('woocommerce') ?>> <h1> <?php echo apply_filters ( 'wpml_translate_single_string', $table_text, 'Plugins', 'plugin_yit_compare_table_text' ); ?> <?php if ( ! $is_iframe ) : ?><a class="close" href="#"><?php esc_html_e( 'Close window [X]', 'archub' ) ?></a><?php endif; ?> </h1> <div id="yith-woocompare" class="woocommerce"> <?php do_action( 'yith_woocompare_before_main_table' ); ?> <table class="compare-list" <?php if ( empty( $products ) ) echo ' style="width:100%"' ?>> <thead> <tr> <th> </th> <?php foreach( $products as $product_id => $product ) : ?> <td></td> <?php endforeach; ?> </tr> </thead> <tfoot> <tr> <th> </th> <?php foreach( $products as $product_id => $product ) : ?> <td></td> <?php endforeach; ?> </tr> </tfoot> <tbody> <?php if ( empty( $products ) ) : ?> <tr class="no-products"> <td><?php esc_html_e( 'No products added in the compare table.', 'archub' ) ?></td> </tr> <?php else : ?> <tr class="remove"> <th> </th> <?php $index = 0; foreach( $products as $product_id => $product ) : $product_class = 'product_' . $product_id ?> <td class="<?php echo sanitize_html_class( $product_class ); ?>"> <a href="<?php echo add_query_arg( 'redirect', 'view', $this->remove_product_url( $product_id ) ) ?>" data-product_id="<?php echo esc_attr( $product_id ); ?>"><?php esc_html_e( 'Remove', 'archub' ) ?> <span class="remove">x</span></a> </td> <?php ++$index; endforeach; ?> </tr> <?php foreach ( $fields as $field => $name ) : ?> <tr class="<?php echo sanitize_html_class( $field ) ?>"> <th> <?php if ( $field != 'image' ) echo wp_kses_post( $name ); ?> </th> <?php $index = 0; foreach( $products as $product_id => $product ) : $product_class = 'product_' . $product_id; ?> <td class="<?php echo sanitize_html_class( $product_class ); ?>"><?php switch( $field ) { case 'image': echo '<div class="image-wrap">' . $product->get_image( 'yith-woocompare-image' ) . '</div>'; break; case 'add-to-cart': woocommerce_template_loop_add_to_cart(); break; default: echo empty( $product->fields[$field] ) ? ' ' : $product->fields[$field]; break; } ?> </td> <?php ++$index; endforeach; ?> </tr> <?php endforeach; ?> <?php if ( $repeat_price == 'yes' && isset( $fields['price'] ) ) : ?> <tr class="price repeated"> <th><?php echo wp_kses_post( $fields['price'] ) ?></th> <?php $index = 0; foreach( $products as $product_id => $product ) : $product_class = 'product_' . $product_id ?> <td class="<?php echo sanitize_html_class( $product_class ); ?>"><?php echo wp_kses_post( $product->fields['price'] ) ?></td> <?php ++$index; endforeach; ?> </tr> <?php endif; ?> <?php if ( $repeat_add_to_cart == 'yes' && isset( $fields['add-to-cart'] ) ) : ?> <tr class="add-to-cart repeated"> <th><?php echo wp_kses_post( $fields['add-to-cart'] ); ?></th> <?php $index = 0; foreach( $products as $product_id => $product ) : $product_class = 'product_' . $product_id ?> <td class="<?php echo sanitize_html_class( $product_class ); ?>"> <?php woocommerce_template_loop_add_to_cart(); ?> </td> <?php ++$index; endforeach; ?> </tr> <?php endif; ?> <?php endif; ?> </tbody> </table> <?php do_action( 'yith_woocompare_after_main_table' ); ?> </div> <?php if( wp_script_is( 'responsive-theme', 'enqueued' ) ) wp_dequeue_script( 'responsive-theme' ) ?><?php if( wp_script_is( 'responsive-theme', 'enqueued' ) ) wp_dequeue_script( 'responsive-theme' ) ?> <?php print_footer_scripts(); ?> <script type="text/javascript"> jQuery(document).ready(function($){ $('a').attr('target', '_parent'); var oTable; $('body').on( 'yith_woocompare_render_table', function(){ var t = $('table.compare-list'); if( typeof $.fn.DataTable != 'undefined' && typeof $.fn.imagesLoaded != 'undefined' && $(window).width() > 767 ) { t.imagesLoaded( function(){ oTable = t.DataTable( { 'info': false, 'scrollX': true, 'scrollCollapse': true, 'paging': false, 'ordering': false, 'searching': false, 'autoWidth': false, 'destroy': true, 'fixedColumns': true }); }); } }).trigger('yith_woocompare_render_table'); // add to cart var redirect_to_cart = false, body = $('body'); // close colorbox if redirect to cart is active after add to cart body.on( 'adding_to_cart', function ( $thisbutton, data ) { if( wc_add_to_cart_params.cart_redirect_after_add == 'yes' ) { wc_add_to_cart_params.cart_redirect_after_add = 'no'; redirect_to_cart = true; } }); body.on('wc_cart_button_updated', function( ev, button ){ $('a.added_to_cart').attr('target', '_parent'); }); // remove add to cart button after added body.on('added_to_cart', function( ev, fragments, cart_hash, button ){ $('a').attr('target', '_parent'); if( redirect_to_cart == true ) { // redirect parent.window.location = wc_add_to_cart_params.cart_url; return; } // Replace fragments if ( fragments ) { $.each(fragments, function(key, value) { $(key, window.parent.document).replaceWith(value); }); } }); // close window $(document).on( 'click', 'a.close', function(e){ e.preventDefault(); window.close(); }); $(window).on( 'resize yith_woocompare_product_removed', function(){ $('body').trigger('yith_woocompare_render_table'); }); }); </script> </body> </html>