invisiblepilot
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Shadowbox JS] change output of shdowbo.js on pages (footeryou’re awesome – thanks ??
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] No related postsI’m having the same problem – WP 2.8.2 and have tried both YARPP 3.0.8 and 3.0.8b2..
Everything seems to be in good order, but the result is always the “No Related Post” (or, “No related photos” when the photo template is selected) displayed on the post page.
I have tried :
– rebuilding the cache (several times)
– dropping the match threshold to 1 and then .05
– selecting “do not consider” for all except “consider: category”
[note: the ideal setting for this photo portfolio blog would be “require at least one category in common” and nothing else, where the common category is the photo category]The text “No Related Photos” DOES appear at the end of each post – but there are at least 9 other posts/photos in each category, so those related posts should be displayed.
Any suggestions?
Thank you!Forum: Everything else WordPress
In reply to: HTTP.php line error message with RSS feed (sidebar widget)Figured it out.
Forum: Fixing WordPress
In reply to: Previous/Next Post in Category?Ditto that – I came here looking for a solution to this same problem.. but the more i think about it, the more i think it’s not possible.
how is the single post page to know where you came from? think of it like this – if someone posted a link to a single post – when someone else clicked that link, where would “next post” navigate to..? (and, having not come from either your home page OR a specific category – the new user will generally expect next/previous to go by post date, so if it does not, you’re seriously messing with usability issues)..
next i thought a solution may be to offer two next/previous links on any given single post – next/previous (by post date) AND next/previous by category – HOWEVER – that doesn’t work if you filed the post under more than one category (which all of mine are)..
so no – i don’t think it’s possible to do EXACTLY what you want to do – however i will be happy if someone smarter than me can prove me wrong ??
Forum: Fixing WordPress
In reply to: How do I remove the rss icon from a feed in the sidebar?.rsswidget img{
display:none;
}That will actually still leave you with a 14px X14px orange square where the icon used to be ..
the best answer (to COMPLETELY REMOVE the RSS icon) is this:
Open wp-includes/widgets.php, find the following line and remove the BOLD text:
$title = "<strong><a class='rsswidget' href='$url' title='" . attribute_escape(__('Syndicate this content')) ."'><img style='background:orange;color:white;border:none;' width='14' height='14' src='$icon' alt='RSS' /></a></strong> <a class='rsswidget' href='$link' title='$desc'>$title</a>";
which will leave this:
$title = "<a class='rsswidget' href='$link' title='$desc'>$title</a>";
Save & upload.