Coundown on product page

Nick84

Member
@ferreira2u can you please tell me how to get timer like this, i have installed as you told. bt how to get like this one. Please help.
countdown-jpg.228
I am interested as well...
 
At last, successfully found the solution and update the wow counter.
I think many people is waiting long time for someone to provide the solution. I had tested out as per attached.

just check the file wp-content ->themes ->" your themes" ->tpl->product
Find the file name : single.php

Search for "Add to Cart" and after add to cart line you can see
<?php endif; ?> as per jubran mention above.
Add the php code
<hr/>
<b style="text-align:center;">Price increases in:</b>
<span style="color:red; size:14px; font-weight:bold;"><?php echo do_shortcode('[Wow-Countdowns id=1]');?></span>
<hr/>
and boom!!! your timer is up!!!!!
Remember to backup your file before you make any changes.
Happy trying...!!

Note* i had change my button from ADD TO CART to BUY NOW as well:)
 

Attachments

  • timer.JPG
    timer.JPG
    33 KB · Views: 70

neeraj89

Active Member
At last, successfully found the solution and update the wow counter.
I think many people is waiting long time for someone to provide the solution. I had tested out as per attached.

just check the file wp-content ->themes ->" your themes" ->tpl->product
Find the file name : single.php

Search for "Add to Cart" and after add to cart line you can see
<?php endif; ?> as per jubran mention above.
Add the php code
<hr/>
<b style="text-align:center;">Price increases in:</b>
<span style="color:red; size:14px; font-weight:bold;"><?php echo do_shortcode('[Wow-Countdowns id=1]');?></span>
<hr/>
and boom!!! your timer is up!!!!!
Remember to backup your file before you make any changes.
Happy trying...!!

Note* i had change my button from ADD TO CART to BUY NOW as well:)
Bro change you cart button to orange. It matters.
 

Nick84

Member
At last, successfully found the solution and update the wow counter.
I think many people is waiting long time for someone to provide the solution. I had tested out as per attached.

just check the file wp-content ->themes ->" your themes" ->tpl->product
Find the file name : single.php

Search for "Add to Cart" and after add to cart line you can see
<?php endif; ?> as per jubran mention above.
Add the php code
<hr/>
<b style="text-align:center;">Price increases in:</b>
<span style="color:red; size:14px; font-weight:bold;"><?php echo do_shortcode('[Wow-Countdowns id=1]');?></span>
<hr/>
and boom!!! your timer is up!!!!!
Remember to backup your file before you make any changes.
Happy trying...!!

Note* i had change my button from ADD TO CART to BUY NOW as well:)
Thanks, I managed to do it as per your guidelines and it works! One thing I noticed is that every time you renter the product page (say in half a min or 1 min) the countdown timer just restarts again which makes it look very weird (even fake). Have you found a way to go around this?
 

kingpin

Well-Known Member
Hi.
This is how I do it
These kind of landing pages are so good for conversions.

Demo screenshot
IUzBxIN.png
 

artmelkon

Member
if any one wants to print countdown on the specific single page you can use the following code and it will work, but before you do it you should understand php a little bit.
1. you need to get your page id and create countdown and name it with page ID and the code will print according to that page id.
<?php echo do_shortcode('[waiting name="'.get_the_ID().'"]'); ?>
hope this will help.
 
Top