66 lines
2.4 KiB
PHP
66 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Single Product Sale Flash
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/sale-flash.php.
|
|
*
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
|
* (the theme developer) will need to copy the new files to your theme to
|
|
* maintain compatibility. We try to do this as little as possible, but it does
|
|
* happen. When this occurs the version of the template file will be bumped and
|
|
* the readme will list any important changes.
|
|
*
|
|
* @see https://docs.woocommerce.com/document/template-structure/
|
|
* @author WooThemes
|
|
* @package WooCommerce/Templates
|
|
* @version 1.6.4
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
global $post, $product;
|
|
$mfn_extra_label = get_post_meta($product->get_id(), 'mfn_product_labels', true);
|
|
|
|
// Consider adding wrapper div do labels
|
|
|
|
if ( $product->is_on_sale() ) :
|
|
|
|
//$salehtml = '<span class="onsale"><i class="icon-star"></i></span>';
|
|
$salehtml = '<span class="onsale onsale-label">'. ( !empty(mfn_opts_get('sale-badge-label')) ? mfn_opts_get('sale-badge-label') : __('On Sale', 'woocommerce') ) .'</span>';
|
|
|
|
if( mfn_opts_get( 'sale-badge-style' ) == 'percent' ){
|
|
$percent = Mfn_Builder_Woo_Helper::getDiscount($product);
|
|
|
|
$salehtml = '<span class="onsale onsale-label">';
|
|
|
|
$salehtml .= !empty( mfn_opts_get('sale-badge-before') ) ? mfn_opts_get('sale-badge-before') : '-';
|
|
$salehtml .= $percent;
|
|
$salehtml .= !empty( mfn_opts_get('sale-badge-after') ) ? mfn_opts_get('sale-badge-after') : '';
|
|
|
|
$salehtml .= '</span>';
|
|
}
|
|
|
|
echo apply_filters( 'woocommerce_sale_flash', $salehtml, $post, $product );
|
|
endif;
|
|
|
|
if(mfn_opts_get('product-badge-new') == 1){
|
|
$newness_days = mfn_opts_get('product-badge-new-days') ? mfn_opts_get('product-badge-new-days') : 14;
|
|
$created = strtotime( $product->get_date_created() );
|
|
|
|
$label = mfn_opts_get('product-badge-new-text', __( 'NEW', 'woocommerce' ));
|
|
if ( ( time() - ( 60 * 60 * 24 * $newness_days ) ) < $created ) {
|
|
echo '<span class="mfn-new-badge onsale-label onsale">' . esc_html( $label ) . '</span>';
|
|
}
|
|
}
|
|
|
|
|
|
if( !empty($mfn_extra_label) ){
|
|
echo apply_filters( 'woocommerce_sale_flash', '<span class="onsale onsale-extra-label">'.$mfn_extra_label.'</span>', $post, $product );
|
|
}
|
|
|
|
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */
|
|
|
|
?>
|