3eregular price

Solutions on MaxInterview for 3eregular price by the best coders in the world

showing results for - " 3eregular price"
Mika
01 Sep 2019
1/**
2 * Returns product price based on sales.
3 * 
4 * @return string
5 */
6function the_dramatist_price_show() {
7    global $product;
8    if( $product->is_on_sale() ) {
9        return $product->get_sale_price();
10    }
11    return $product->get_regular_price();
12}
13