2011-12-11 14:40:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Single Product Sale Flash
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
2011-12-11 14:40:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
global $post, $product;
|
|
|
|
?>
|
|
|
|
<?php if ($product->is_on_sale()) : ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-01-05 11:31:22 +00:00
|
|
|
<?php echo apply_filters('woocommerce_sale_flash', '<span class="onsale">'.__('Sale!', 'woocommerce').'</span>', $post, $product); ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-12-11 14:40:25 +00:00
|
|
|
<?php endif; ?>
|