Can I remove the word "in" so that only the countdown timer is displayed? (instead of, "in xx days xx hours xx minutes xx seconds")
Can I remove the word "in" so that only the countdown timer is displayed? (instead of, "in xx days xx hours xx minutes xx seconds")
currently it's hard coded in, so no. unless you feel comfortable modifying php.
Note: I am on vacation until August.
Thanks for the reply. I'll make a backup and see if I can edit the PHP file without screwing it up.
Find this line in the language variable section:
echo "fergcorp_countdownTimer_js_language['in'] = '".addslashes(__('in %s', 'afdn_countdownTimer'))."';\n";
And replace it with:
echo "fergcorp_countdownTimer_js_language['in'] = '".addslashes(__('%s', 'afdn_countdownTimer'))."';\n";
The only change is going from 'in %s' to '%s'
That successfully removed the word in from the output of the timer.
You must log in to post.