Hello, I would like to know if it is possible to have a countdown until 3:30 pm everyday. I want to let know the customers that they have until 3:30 pm to get next day delivery. For example, at 2:00 pm, it will show : only 1:30 hours left
]]>Hi.
Recently, the result in GTMetrix has deteriorated.
The plugs have been the same for a year.
]]>I am working in WordPress using the Classic Editor. I updated the plugin and can now no longer adjust the size of the time clock. It is huge and I cannot see a way to edit it. Can you please help?
]]>hello, i have many users on my wordpress so i want to create a specific timer for each user different from others. so each user has it’s own timer and only seen by himself.
also is there any method to change time by javascript? so each time he press a button let’s say, the time will change
]]>Hello, congratulations on the product, I like it.
I’m still testing, but I have some doubts.
I want to add some products to the file, I already have other own brands created. In one I can add an image I want to each product and in the other I can add custom text to each product.
The problem arises when I want to add the Countdown Timer Ultimate shortcode, since it is not displayed, the generated shortcode code itself is displayed: [wpcdt-countdown id=”6369″] , instead of showing me the numbers.
I have also tried to do it with another of your options:
this doesn’t work for me either.
Can you help me to insert the shortcode in my file?
What am I doing wrong ?
* Registramos el Metabox
============================================================================= */
function biogredos_custom_product_metabox(){
// Memberships Metabox
add_meta_box(
'product-custom-settings',
__( 'Producto', 'textdomain' ),
'custom_product_callback',
'product'
);
}
add_action( 'add_meta_boxes', 'biogredos_custom_product_metabox' );
/* Agregamos los campos
============================================================================= */
function custom_product_callback(){
$screen = get_current_screen();
if ( $screen->action !== 'add' ) :
global $post;
$post_id = $post->ID;
$logo = get_post_meta( $post_id, 'ct_product_logo', true );
$texto = get_post_meta( $post_id, 'ct_product_title', true );
// Countdown Timer Ultimate shortcode
$descuento = get_post_meta( $post_id, 'ct_product_contando', true );
else :
$logo = '';
$texto = '';
$descuento = '';
endif;
// Logo
echo '<div class="trn-form-control">';
echo '<div class="trn-row">';
echo '<div class="trn-col-2"><label>Logo</label></div>';
echo '<div class="trn-col-10">';
echo '<input type="text" id="custom-product-logo" name="custom-product-logo" value="' . $logo . '">';
echo '</div>';
echo '</div>';
echo '</div>';
// Titulo
echo '<div class="trn-form-control">';
echo '<div class="trn-row">';
echo '<div class="trn-col-2"><label>Titulo</label></div>';
echo '<div class="trn-col-10">';
echo '<input type="text" id="custom-product-title" name="custom-product-title" value="' . $texto . '">';
echo '</div>';
echo '</div>';
echo '</div>';
// Descuento
// Countdown Timer Ultimate shortcode
echo '<div class="trn-form-control">';
echo '<div class="trn-row">';
echo '<div class="trn-col-2"><label>Shortcode</label></div>';
echo '<div class="trn-col-10">';
echo '<input type="text" id="custom-product-contando" name="custom-product-contando" value="' . $descuento . '">';
echo '</div>';
echo '</div>';
echo '</div>';
}
/* Guardamos los datos
============================================================================= */
function biogredos_product_save_custom( $post_id ) {
$post_type = get_post_type( $post_id );
if ( $post_type == 'product' ) :
$logo = sanitize_text_field( $_POST['custom-product-logo'] );
$titulo = sanitize_text_field( $_POST['custom-product-title'] );
// Countdown Timer Ultimate shortcode
$contando = sanitize_text_field( $_POST['custom-product-contando'] );
update_post_meta( $post_id, 'ct_product_logo', $logo );
update_post_meta( $post_id, 'ct_product_title', $titulo );
// Countdown Timer Ultimate shortcode
update_post_meta( $post_id, 'ct_product_contando', $contando );
endif;
}
add_action( 'save_post', 'biogredos_product_save_custom');
/* Mostramos los datos
============================================================================= */
function biogredos_show_custom_product_data(){
global $product;
$post_id = $product->get_id();
$logo = get_post_meta( $post_id, 'ct_product_logo', true );
$texto = get_post_meta( $post_id, 'ct_product_title', true );
// Countdown Timer Ultimate shortcode
$shortcode = get_post_meta( $post_id, 'ct_product_contando', true );
if ( $logo ) :
echo '<img class="degradableimage" src="' . $logo . '">';
endif;
if ( $texto ) :
echo '<p class="degradable">'. $texto . '</p>';
endif;
// Countdown Timer Ultimate shortcode
if ( $shortcode ) :
echo '<p class="descuento">'. $shortcode . '</p>';
endif;
}
add_action( 'woocommerce_after_shop_loop_item_title', 'biogredos_show_custom_product_data' );
]]>
Hello, I′d like to know if is possible to put 0 at the end of the countdwon, instead of hide the countdown.
Thank you.
]]>Hi,
We are interested in your timer and would love to upgrade to get the other design templates but we can’t get the text to center in the circles. Is this something we can fix before committing to buy the pro version?
Thank you!
]]>Hello
Saw the same problem appeared 3 years ago on the forum not getting answer so I try again. Actually when I place a counter in a page or post it works well but when on widgets blocs it create a huge blank space under the timer
Using a pretty simple code:
<div style=”text-align: center; font-size: large; color: orange;”><b>Actual bonus: Trappy tiger tease<br>ADDED FREE TO EVERY ORDERS</b></div>[ycd_countdown id=394]
How it looks with the timer
How it looks when remove the timer part
As you can see the blank part is clearly part of the timer addition
(also my website bing nsfw I unfortunately prefer not link it) ^^’
Thank you in advance (^o^)/
]]>Hey,
Can we have option to chagne counter formate ?
Like my current formate is 3 days: 1 hours : 00 mins : 00sec
I want 73 Hours : 00mins : 00sec
Is that possible ?
Thanks in advance.
]]>I didn’t find the price of the pro version on your site. What is the price of the plugin? I only see the plugin bundle everywhere. Can’t I buy only the plugin I needed? If I can then please mention the price of the plugins clearly.
]]>Hi, after the wordpress and theme update, the countdown isn’t displayed anymore on this page.
Could you please have a look at it for us?
Thank you in advance.
Regards,
Matt
Hi
I’ve created an overlay div and positioned the div absolutely over a hero section with css:
.overlay {
display:block;
position:absolute;
top:30%;
left:40%;
z-index:10;
}
This works fine in inspector until you resize the window and canvas redraws from <canvas width="750" height="200"></canvas>
to <canvas width="0" height="0"></canvas>
.
How can I prevent canvas from collapsing?
Thanks
]]>It seems that for some reason, when I add a the shortcode to a post, it also prints some random CSS above the timer itself.
The css seems is .wpcdt-timer-12913 .wpcdt-clock{max-width: 750px;} and it seems to appear only when I set Timer Width in Design Settings.
Thanks.
]]>I upgraded to the latest version of your plugin, and the timer now disappears upon completion rather than saying “0” days remaining. How can I change it back?
]]>I really like this plugin but I cannot get it work in a layerslider on homepage. I see that someone else was successful but there is no code shown. Please help.
]]>Hi,
I am able to active the plugin but when I try to click SKIP in the OPT-In box, I receive the following error.
The information you’re about to submit is not secure
Because this form is being submitted using a connection that’s not secure, your information will be visible to others.
My choice is to Send Anyway or Go Back.
This error does not occur on my local VM, only on my production site. I am unable to access the plugin settings.
WP V 4.9.15
Plugin V 1.3, happened on 1.4 as well
Thanks,
]]>Hello,
I am trying to create a custom page template that is going to show content only when the countdown expires. I tried to put the shortcode on a conditional (do_shortcode[”]) but since it only verifies if the shortcode exists is always true even if the countdown expired. I was hoping to do something like this:
if (countdown still running){show countdown}else{show custom code}
Please advise.
Thanks!
]]>Is it possible to start a timer only when the user reaches the section where the shortcode is?
]]>Hello! I recently had a Countdown Timer error prevent a page from publishing. It requited that I had to go into my site in Recovery mode into order to troubleshoot. According to the automated message that I got from WordPress, there was a failure to parse the time string.
“Error message: Uncaught Exception: DateTime::__construct(): Failed to parse time string (2021-02-019 09:02:05) at position 10 (9): Unexpected character in /srv/htdocs/wp-content/plugins/countdown-timer-ultimate/includes/shortcode/wpcdt-shortcode.php:34”
I ended up just removing the Countdown Timer block from the page because I really needed to publish it ASAP. Now I’m trying to get to the root of the problem. Has anyone else experienced this?
]]>I need to increase the diameter of the clock beyond the default pixel size.
Thankyou!
Hi guys
Some time in the recent past (month or two) our page with CTU on it broke. I installed CTU in August and it had been working fine. Unfortunately, I don’t know when it broke.
Am running Beaver Builder
Beaver Builder v2.4.1
Beaver Themer v1.3.2.3
Theme is Beaver Builder Theme v1.7.7 using a child theme of it with no customisations.
WordPress v5.5.2
Have tried latest version of CTU (i.e. 1.3) but still not working.
Have also tried with only CTU and the two BB plugins.
With just those three plugins, no errors are showing in the debug console.
Let me know if you need more info or screen shots
]]>I have a problem with Countdown Timer Ultimate pluging. When reload the web the timer gets back to the initial time it had when I enter the first time in the website. While I am navigating in the same page it works fine, but if I reloaded or go to another page and go back to timer, then again gets back min, hours, second it shows the first time.
How can I fix that?
Thanks
]]>your plugins is not compatible with fastest cache.
i tried excluding js but the clock is cached
I’m trying to change the font color to white for the Text, Days/Hours/Minutes/Seconds as well as the countdown numbers and I tried both the codes from these 2 support tickets >> https://www.ads-software.com/support/topic/different-color-font-for-different-countdown/ and https://www.ads-software.com/support/topic/text-color-57/
But, I can’t get everything inside the circles to be white. How can I achieve this?
]]>Hey!
Love the plug-in design, thanks! It’s perfect for what we need.
We’re having a problem when a page loads, the alignment of the circles is perfect but the text is waaaaaay off to the side. As soon as I change the magnification of the page it then works perfectly.
You can see a screenshot of the problem here:
https://www.dropbox.com/s/gz4pdutkgtyi6mo/Screenshot%202020-10-12%20at%2017.10.51.png?dl=0
It’s happening on Macs and PCs, on Chrome. I can’t replicate it on Safari or Firefox.
Any ideas how to fix it on Chrome?
Thanks!
]]>Possible to do this?
I don’t want to set a date, just have the counter start on page load with any option, let’s say 3 hours. Or does it always need a date selected?
Cheers!
Ryan
Hi there,
is it possible to select the single timer by using the title in shortcode instead of the id?
Thanks for your support
]]>Hello, I am using Layerslider on our home page and was wondering if I can add the timer to Layerslider? IF so, how can I do it? I tried to add the shortcode in a HTML and a type layer and nothing showed up. Thank you.
]]>I am trying to use the timer for creating a timed quiz. I want the timer to always start with 60 seconds and then expire. How do i achieve this?
]]>When the clock reaches 0 is there any way I can have the clock automatically reset to +1 week? Perhaps by an add-on?
]]>