ifelse
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP v1.5 Theme CompetitionThe theme switcher works outside of the WP admin dashboard. What this feature allows is for people to easily compare the various themes.
Forum: Themes and Templates
In reply to: WP v1.5 Theme CompetitionThe style switcher and theme switcher are two different products. The theme switcher allows the reader to switch the theme sets i.e. from kubrick to classic.
The easiest way to see the difference is to head on over to Alex’s blog. For example, compare my Gespaa theme with the classic theme.
Forum: Plugins
In reply to: theme-switcher.phpBTW, the kubrick and classic themes don’t have this by default so you’ll have to add them manually
You can also download them from Alex King’s WP theme contest. Whilst you’re there, why not download my Gespaa theme:-)
Forum: Plugins
In reply to: theme-switcher.phpThe theme is stored in a cookie. To reset the theme manually, delete the cookie for your site. The reason you can’t switch back is that all the themes need to have the call to the wp_theme_switcher() in their respective sidebars.
Forum: Themes and Templates
In reply to: Modified theme works in all browsers but Internet ExplorerTry changing your css as follows:
#sidebar
{
padding: 20px 0 0px 0;
/*margin-left: 650px;*/
position:absolute;
top: 150px;
right:20px;
width: 210px;
float:right;
}Forum: Fixing WordPress
In reply to: Unable to add custom field via FirefoxIn case anyone is affected by the same issue, I’ve posted a workaround.
Forum: Your WordPress
In reply to: Release of IfElse’s Gespaa themeThanks for the comments. I developed the theme with the intention of it being single column and hence no sidebar. I do understand, however, that many people would like to have the option of one. When I have a bit of time, I’ll release a version with that option.
>How would you go about adding an archives page to this theme?
Do you have an example of one? Or do you mean something like what I’ve done?Forum: Your WordPress
In reply to: Release of IfElse’s Gespaa themeThanks, much appreciated.
Forum: Plugins
In reply to: Dunstan’s time_of_day anyone?I’ve updated the code so that you pass in a date value rather than the post_id. This will mean that it should work for comments as well.
Note the usage method has changed to:
<?php time_of_day(abs(strtotime($post->post_date)));?>
To use it for comments, try the following:
<?php time_of_day(abs(strtotime($comment->comment_date)));?>
Note, I’ve disabled comments on my site, so comment usage is not as well tested. Give me a shout if it works/breaks.Forum: Plugins
In reply to: Dunstan’s time_of_day anyone?Thanks for that update. The date/time value allowed me to replicate the issue on my system.
I’ve uploaded a new version of the code at:
http://www.ifelse.co.uk/code/timeofday.php
Could you test if this solves your issue?Forum: Plugins
In reply to: Dunstan’s time_of_day anyone?@mufflonen/@wairoanz
I can’t seem to reproduce this 7-10 error. For example, I altered the timestamp in the following entry to 7:16 am but I get the correct entry of “early morning”.
http://www.ifelse.co.uk/archives/2004/07/26/discussion-board/
Can you tell me the time value that the plugin is failing on?Forum: Plugins
In reply to: Dunstan’s time_of_day anyone?I’ve edited the file at the download location so you should (hopefully) no longer get this issue.
Forum: Plugins
In reply to: Dunstan’s time_of_day anyone?Hi all,
This is my first plugin so if anyone has any suggestions, coding or otherwise, feel free to suggest them.
Anyways, Anonymous, can you check that the last line of the plugin file is ?> and that there are no trailing carriage returns or new lines.