Code: Select all
$price = $product->hype_price();
Code: Select all
$price = $product->get('is_special')
? sprintf(MODULE_CONTENT_PI_PRICE_DISPLAY_SPECIAL,
$product->format(),
$product->format('price'))
: sprintf(MODULE_CONTENT_PI_PRICE_DISPLAY,
$product->format());
Code: Select all
const MODULE_CONTENT_PI_PRICE_DISPLAY_SPECIAL = '<del>%2$s</del> <span class="productPrice text-danger productSpecialPrice">%1$s</span>';
const MODULE_CONTENT_PI_PRICE_DISPLAY = '<span class="productPrice">%s</span>';