Skip to content

Instantly share code, notes, and snippets.

@imran-khan1
Last active September 6, 2019 06:34
Show Gist options
  • Save imran-khan1/90eb2888604311da8f1fc80925be3904 to your computer and use it in GitHub Desktop.
Save imran-khan1/90eb2888604311da8f1fc80925be3904 to your computer and use it in GitHub Desktop.
<?php
//flatsome on_sale product custom text
function display_text_product_box_after() {
global $product;
if ( $product->is_on_sale() )
{
echo '<b style="color:red">Limited time offer</b>';
}
}
add_action('flatsome_product_box_after', 'display_text_product_box_after');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment