I am trying to display a countdown timer using http://keith-wood.name/countdown.html on my product page to show the remaining time of the catalog rule that applies to that product
I have started with
$_product = $block->getProduct();
if($_product->getSpecialPrice()){
echo('<!-- special price -->');
echo $_product->getSpecialPrice();
// get special end date
echo $_product->getSpecialToDate();
}
But it returns nothing, I need the end date to set the timer.
Any tips would be helpful.