fergbrain
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Countdown Timer] Remove the word “in”currently it’s hard coded in, so no. unless you feel comfortable modifying php.
Note: I am on vacation until August.
Forum: Plugins
In reply to: [Plugin: Countdown Timer] Remove Time Since (ago) from single date function1) no
2) not currently…although this seems to be a popular request, so i may add it in a future version.
Note: I am on vacation until August.
Forum: Plugins
In reply to: [Plugin: Countdown Timer] Size: template problem?You should be able to fix the issue by tweaking the CSS of the theme. Additionally, the next version of Countdown will provide better hooks for applying CSS styles.
Note: I am on vacation until August.
Forum: Fixing WordPress
In reply to: [Plugin: Countdown Timer] Time displays, but doesn’t countdownisisjade,
Do you have “Enable JavaScript countdown” set to “Yes”?
Forum: Plugins
In reply to: [Plugin: Countdown Timer] Countdown since errorYou are correct that this is, unfortuneatly, a limitation of the timestamp method that PHP uses:
“Note: The valid range of a timestamp is typically from Fri, 13 Dec 1901 20:45:54 UTC to Tue, 19 Jan 2038 03:14:07 UTC.” Source: http://us.php.net/manual/en/function.strtotime.php
This is a limitation of using a 32-bit signed integer as the timestamp. In time, PHP will eventually move to 64-bit timestamps, which will allow you to express literally just about any date you want.
Unfortuneatly, there’s really nothing I can do.
no problem. can you mark the issues as “resolved” when you get a chance?
Under “Display Format Options” modify the “Display Style” parameter. You’ll probably want to add something along the lines “color: white;”
Forum: Fixing WordPress
In reply to: [Plugin: Countdown Timer] Recurring Events?In a previous release, there was a “Recurring Events” option. However, I couldn’t get it to work the way I wanted to, so I removed it from the code. It’s possible that I may add the functionality back in the future, however I’m not currently planning on it.
Forum: Fixing WordPress
In reply to: [Plugin: Countdown Timer] Another Wring Time IssueI believe this behavior is correct.
Forum: Fixing WordPress
In reply to: [Plugin: Countdown Timer] Time displays, but doesn’t countdownYour theme probably does not call wp_head and/or wp_footer, which is needed in order to properly hook into WordPress. This is an issue with your theme. However, it’s generally pretty easy to add the necessary code to your theme files.
The reason that the countdown works in the admin page is that different hooks are used (which are specific to the admin pages).
You can learn more about the hooks at:
http://codex.wordpress.org/Theme_Development#Plugin_API_HooksForum: Plugins
In reply to: [Plugin: Countdown Timer] Counts wrong?This is a different bug and will be fixed in upcoming release (which should tomorrow (Monday), if I get my act together). You can also download the developer version in the meantime if you don’t want to wait.
Forum: Requests and Feedback
In reply to: [Plugin: Countdown Timer] No problemsThanks!
andybala:
The quickest way to fix the issue is to add the appropriate calls to wp_head() and wp_footer().
Alternatively, you can also make php calls to fergcorp_countdownTimer_LoadUserScripts() in the header and afdn_countdownTimer_js() in footer.
Forum: Fixing WordPress
In reply to: [Plugin: Countdown Timer] Isn’t counting time down rightI’ve confirmed there is indeed a bug:
http://plugins.trac.wordpress.org/ticket/932Forum: Plugins
In reply to: [Plugin: Countdown Timer] Remove break and word “in” from display?Hmm…what’s the url of your site?