-
-
Save sonipb/5fb76d31068b76f0e4496dad57a693b4 to your computer and use it in GitHub Desktop.
Display Discount/Offer percentage in WooCommerce
This file contains 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 | |
/** | |
* Product loop sale flash | |
* | |
* @author Vivek R @ WPSTuffs.com | |
* @package WooCommerce/Templates | |
* @version 1.6.4 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly | |
global $post, $product; | |
?> | |
<?php if ($product->is_on_sale() && $product->product_type == 'variable') : ?> | |
<div class="bubble"> | |
<div class="inside"> | |
<div class="inside-text"> | |
<?php | |
$available_variations = $product->get_available_variations(); | |
$maximumper = 0; | |
for ($i = 0; $i < count($available_variations); ++$i) { | |
$variation_id=$available_variations[$i]['variation_id']; | |
$variable_product1= new WC_Product_Variation( $variation_id ); | |
$regular_price = $variable_product1 ->regular_price; | |
$sales_price = $variable_product1 ->sale_price; | |
$percentage= round((( ( $regular_price - $sales_price ) / $regular_price ) * 100),1) ; | |
if ($percentage > $maximumper) { | |
$maximumper = $percentage; | |
} | |
} | |
echo $price . sprintf( __('%s', 'woocommerce' ), $maximumper . '%' ); ?></div> | |
</div> | |
</div><!-- end callout --> | |
<?php elseif($product->is_on_sale() && $product->product_type == 'simple') : ?> | |
<div class="bubble"> | |
<div class="inside"> | |
<div class="inside-text"> | |
<?php | |
$percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 ); | |
echo $price . sprintf( __('%s', 'woocommerce' ), $percentage . '%' ); ?></div> | |
</div> | |
</div><!-- end bubble --> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment