MrM
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: $10 for Live Search and Live ArchivesI know a few people have LiveSearch and LiveArchives working together but I’m sure there is some sort of conflict between them, something to do with LiveSearch changing bodyload instructions.
Following Michael’s instructions I managed to get LiveArchives installed and working. But after trying to follow Fernando’s instructions for LiveSearch neither ended up working. I had to remove LiveSearch, empty cache and rebuild the LiveArchives cache to get LiveArchives working again.
I should point out that people have followed Fernando’s instructions and got LiveSearch working (just not me, even on a default Kubrick). Failing somebody here doing it for you, I think your best bet might be to wait for the soon to be released K2 and disect that, as LiveSearch is to be included.
Forum: Plugins
In reply to: New AJAX based search boxLooks good, hopefully it’ll be easier than LiveSearch to install. Would be even better if you could make it into a plugin though!
Forum: Plugins
In reply to: Looking for Category pluginThanks for the link.
Forum: Fixing WordPress
In reply to: Get Categories with commas, not as a listCheck the following link out:
https://txfx.net/2004/07/22/wordpress-conversational-categories/
Should do what you want and it’s pretty easy to install as well.
Forum: Fixing WordPress
In reply to: Headers for posts?AAahhh, it was” $date=get_the_time(“D”);” like Kafka said, not “$date=the_time(“D”);” like the PHP noob MrM said!
Edit: beat to it! Thank you for your help.
Forum: Fixing WordPress
In reply to: Headers for posts?Hmmm, doesn’t seem to want to work for me. I’m just getting parse errors.
Whilst playing around I seem to have come slightly closer. I tried the following:
<?php
$date=the_time(“D”);
if ($date==”Mon”)
echo'<img src=”/images/mon.gif” />’;
(repeat for the rest of the week)
?> (I will use your recommendation about shortening the code Kafka, thank you)I’m now getting the day the post was created being outputted but not the corresponding image file. So I’m just ‘Mon’ in the header instead of mon.gif…anybody know why?