ifelse
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How much MB is WordPress on the server?Minimal. Less than 2mb
Forum: Fixing WordPress
In reply to: WordPress Microsoft Access Hack?americasroof, why don’t you export the excel file as csv and import that (via PHPMyAdmin or such like)?
Forum: Fixing WordPress
In reply to: WordPress Microsoft Access Hack?Word of warning Vido: Access is an extremely poor choice for running any sort of concurrent access system i.e. a web page where you will have more than one reader at any given time.
Because of the atrocious way it handles locks and concurrency, you are likely to see abysmal performance. Access is not very scaleable. It’s fine for a few users but it quickly bottlenecks which is why nobody builds online systems based on Access.
Forum: Your WordPress
In reply to: Another day, another redesignActually, it’s a straightforward chronological listing of posts. The only reason that one post shows up is because I’ve excluded all the legacy posts:-)
Forum: Plugins
In reply to: multiple authors on a single post?You can use the custom fields to store ‘secondary authors’ and then pick those up.
Forum: Your WordPress
In reply to: Another day, another redesignWheres all the stuff ? 🙂
This design is probably the polar opposite to if..else log’s design… Nice and simple. Strange considering if..else was supposed to be the simple one:)Forum: Everything else WordPress
In reply to: WordPress London MeetupIt all sounds good to me!
Forum: Fixing WordPress
In reply to: Archive Month Not Showing In SidebarIf he wraps it in a is_archive() conditional, it should display only on an archive page (i.e. only the month and year or category name) without the blog title.
i.e.
if (is_archive()) { ?>
You are currently browsing the weblog archives
for <?php wp_title(''); ?>.Forum: Fixing WordPress
In reply to: Archive Month Not Showing In Sidebar“?”
Sounds a bit weird but as he’s looking for
You are currently browsing the weblog archives for <?php the_time('F, Y'); ?>., wp_title should suffice.From Codex:
# Page title always includes the blog name.
# If viewing a post, it includes the title of the post.
# If viewing an archive page, it includes the year and month for the archive.
# If viewing a category, it includes the category name.Forum: Fixing WordPress
In reply to: Archive Month Not Showing In SidebarWhat you’re probably looking for is wp_title.
Forum: Fixing WordPress
In reply to: Patch – Where in code?– means remove that line.
+ means add that lineForum: Fixing WordPress
In reply to: WP Publishing posts 4 timesThings happen for a reason. If it wasn’t doing so before, try and identify what has changed since and run through them one by one.
Forum: Fixing WordPress
In reply to: Page Slug for link instead of IDDo it like this:
?pagename=aboutHowever, permalinks are a far better solution all round.Forum: Your WordPress
In reply to: does it work in 800×600?Small suggestion: The colour that you’ve chosen for links is extremely difficult to read due to the lack of contrast between it and the background.
I can understand that you want to make it fit in thematically but may I suggest that you choose a more readable colour? For example, a bold orange would fit nicely in line with your colour scheme…
Forum: Themes and Templates
In reply to: Do You Have a Unique Loop – Share!How about this thread on multiple loops?