Hi @apisystems Doesn’t look like your site is working at the moment. I’m going to close this issue, but will re-open if you lLet me know if you require any help.
thank you for your reply
sorry I disable the plugin by mistake, now I just activate it
Is this a woocommerce product?
If so, you could get the price using the following in your Ajax Load More Repeater Template.
<?php
global $post;
$product = wc_get_product( $post->ID );
//$product->get_regular_price();
//$product->get_sale_price();
echo $product->get_price();
?>
Thanks , but price on sale is not displayed!!
You never said sale price
Use this for sale price.
echo $product->get_price();
last thing I miss:
the currency is not displayed
You will have to add that to the template.
echo '$'. $product->get_sale_price();