Created
June 4, 2019 07:58
-
-
Save kreamweb/19c7e1a2f5d315e3652e78b275180242 to your computer and use it in GitHub Desktop.
Table that show buy x | Price | Discount
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
remove_filter( 'woocommerce_'.YITH_WC_Dynamic_Pricing_Frontend()->get_product_filter.'get_price', array( YITH_WC_Dynamic_Pricing_Frontend(), 'get_price' ) ); | |
remove_filter( 'woocommerce_' . YITH_WC_Dynamic_Pricing_Frontend()->get_product_filter . 'variation_get_price', array( YITH_WC_Dynamic_Pricing_Frontend(), 'get_price' ) ); | |
$tax_display_mode = get_option( 'woocommerce_tax_display_shop' ); | |
if ( $label_table != '' ): | |
?> | |
<p class="ywdpd-table-discounts-label"><strong><?php echo $label_table ?></strong> | |
<?php if ( $until != '' ) { | |
echo "<span>$until</span>"; | |
} ?> | |
</p> | |
<?php endif; ?> | |
<table id="ywdpd-table-discounts"> | |
<tr> | |
<th><?php echo $label_quantity ?></th> | |
<th><?php echo $label_price ?></th> | |
<th>Discount</th> | |
</tr> | |
<?php foreach ( $rules as $rule ): ?> | |
<tr> | |
<td data-qtymin="<?php echo esc_attr( $rule[ 'min_quantity' ] )?>" data-qtymax="<?php echo esc_attr( $rule[ 'max_quantity' ] )?>"> Buy <?php echo $rule[ 'min_quantity' ]; ?> | |
</td> | |
<td> | |
<?php | |
if ( $product->is_type('variable') ) { | |
$prices = apply_filters( 'ywdpd_get_variable_prices', $product->get_variation_prices(), $product ); | |
$prices = isset( $prices[ 'price' ] ) ? $prices[ 'price' ] : array (); | |
if ( $prices ) { | |
$min_price = current ( $prices ); | |
$min_key = array_search( $min_price, $prices ); | |
if( YITH_WC_Dynamic_Pricing_Helper()->valid_product_to_apply_bulk( $main_rule, wc_get_product( $min_key ) ) && ! empty( $min_price ) ){ | |
$discount_min_price = ywdpd_get_discounted_price_table ( $min_price, $rule ); | |
}else{ | |
$discount_min_price = $min_price; | |
} | |
$discount_min_price = apply_filters( 'yith_ywdpd_get_discount_price', $discount_min_price ); | |
$max_price = end( $prices ); | |
$max_key = array_search( $max_price, $prices ); | |
if( YITH_WC_Dynamic_Pricing_Helper()->valid_product_to_apply_bulk( $main_rule, wc_get_product( $max_key )) && ! empty( $max_price ) ){ | |
$discount_max_price = ywdpd_get_discounted_price_table ( $max_price, $rule ); | |
}else{ | |
$discount_max_price = $max_price; | |
} | |
$discount_max_price = apply_filters( 'yith_ywdpd_get_discount_price', $discount_max_price ); | |
//@since 1.1.0 | |
if( function_exists('wc_get_price_to_display')){ | |
//wc 2.7 | |
$price_1 = wc_price( wc_get_price_to_display( $product, array( 'price' =>$discount_min_price ) ) ); | |
if ( $discount_min_price !== $discount_max_price ) { | |
$price_2 = wc_price( wc_get_price_to_display( $product, array( 'price' => $discount_max_price ) ) ); | |
$html = $discount_min_price < $discount_max_price ? | |
sprintf( _x( '%1$s–%2$s', 'Price range: from-to', 'woocommerce' ), $price_1, $price_2) : | |
sprintf( _x( '%1$s–%2$s', 'Price range: from-to', 'woocommerce' ), $price_2, $price_1); | |
}else{ | |
$html = $price_1; | |
} | |
} else { | |
if ( $discount_min_price !== $discount_max_price ) { | |
$html = $discount_min_price < $discount_max_price ? sprintf( _x( '%1$s–%2$s', 'Price range: from-to', 'woocommerce' ), wc_price( $product->get_display_price( $discount_min_price ) ), wc_price( $product->get_display_price( $discount_max_price ) ) ) : sprintf( _x( '%1$s–%2$s', 'Price range: from-to', 'woocommerce' ), wc_price( $product->get_display_price( $discount_max_price ) ), wc_price( $product->get_display_price( $discount_min_price ) ) ); | |
} else { | |
$html = wc_price( $product->get_display_price( $discount_min_price ) ); | |
} | |
} | |
} | |
} else { | |
$price = $product->get_price(); | |
//check if the product or the variation has discount | |
if ( YITH_WC_Dynamic_Pricing_Helper()->valid_product_to_apply_bulk( $main_rule, $product, false ) && !empty( $price ) ) { | |
$discount_price = ywdpd_get_discounted_price_table( $price, $rule ); | |
} else { | |
$discount_price = $price; | |
} | |
$discount_price = apply_filters( 'yith_ywdpd_get_discount_price', $discount_price ); | |
$product_price_exc_tax = function_exists('wc_get_price_excluding_tax') ? wc_get_price_excluding_tax( $product, array('qty' => 1, 'price' => $discount_price ) ) : $product->get_price_excluding_tax( 1, $discount_price ); | |
$product_price_inc_tax = function_exists('wc_get_price_including_tax') ? wc_get_price_including_tax( $product, array('qty' => 1, 'price' => $discount_price ) ) : $product->get_price_including_tax( 1, $discount_price ); | |
$discount_price = ( $tax_display_mode == 'excl' ) ? $product_price_exc_tax : $product_price_inc_tax; | |
$html = wc_price( $discount_price ); | |
} | |
echo apply_filters ( 'ywdpd_show_price_on_table_pricing', $html, $rule, $product ); | |
?> | |
</td> | |
<td> | |
<?php echo $rule['discount_amount']*100 ?>% | |
</td> | |
</tr> | |
<?php endforeach; ?> | |
</table> | |
<?php if ( $note != '' ) { | |
echo "<p class=\"ywdpd-table-discounts-note\">{$note}</p>"; | |
} ?> | |
<?php | |
add_filter( 'woocommerce_'.YITH_WC_Dynamic_Pricing_Frontend()->get_product_filter.'get_price', array( YITH_WC_Dynamic_Pricing_Frontend(), 'get_price' ), 10, 2 ); | |
add_filter( 'woocommerce_' . YITH_WC_Dynamic_Pricing_Frontend()->get_product_filter . 'variation_get_price', array( YITH_WC_Dynamic_Pricing_Frontend(), 'get_price' ), 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment