iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: GetWeather Plugin – Please Help!Shame you can’t get the png’s to show. At least some weather data is showing now though.
Forum: Fixing WordPress
In reply to: GetWeather Plugin – Please Help!Odd. It doesn’t seem to be permissions are I can view the png’s in the folder. All I can suggest is you check the paths to the images and cache folders are correct, or using the gif’s for now. It is probably worth dropping a note to the author too. I’m running out of ideas.
Forum: Fixing WordPress
In reply to: GetWeather Plugin – Please Help!thats done. So the metar.txt is in the cache folder (and has some content)?
As for the png’s not working, im not sure, as I use the gif’s. The pngs work on my local install though.Forum: Fixing WordPress
In reply to: GetWeather Plugin – Please Help!Under current weather, I can see
St. John's, NL
Weather data not available
Which is what I get when the cache file is empty/ not writing. Check the cache folder inside weathericon is chmoded to 777.Forum: Plugins
In reply to: Change Permalink seperator character?Something like this? http://www.bloggingpro.com/archives/2005/04/07/wordpress-plugin-underscore/ I haven’t used it but it seems to fit the requirements.
Forum: Fixing WordPress
In reply to: GetWeather Plugin – Please Help!Sometimes the weather data (i presume the server) goes down, normally it is ok though. As for the icons, I would check that you have it set to show icons, that path is correct and that the permissions are ok too.
Forum: Fixing WordPress
In reply to: GetWeather Plugin – Please Help!Not exactly a solution, but you could consider a different plugin – weathericon: http://www.sonicpling.net/archives/2005/03/12/weathericon-20/ uses metar data from your nearest airport (St Johns is CYYT) which should solve your problem. You can see what it can do on my blog.
and welcome to wp too 🙂Forum: Fixing WordPress
In reply to: Default Gravatar QuestionFrom Gravatars ‘ implementation’ page:
If you want to use your own "Heat Vision and Jack" image as a default graphic (shows up when either no gravatar exists for a given user, or the given user's gravatar exceeds the specified rating), you'd do this:
<?php gravatar("R", 40, "http://www.somewhere.com/heatvision.jpg"); ?>More here:
http://www.gravatar.com/implement.php#section_2_2Forum: Plugins
In reply to: Plugin questionsFor breadcrumbs, I use the plugin from here:
http://jp.jixor.com/archives/bread-crumb-trail/
For the list style, you might find something useful here:
http://www.alistapart.com/articles/taminglists/Forum: Plugins
In reply to: Plugin questionsYeah, you have to spec all the parameters up the the one you want to change, an I think that means all of them for the offset function 🙂
As for 2, the only ones I can think of are the breadcrumbs ones, but they only show where you are, not where youv’e been.Forum: Plugins
In reply to: Plugin questionsNot sure I am understanding correctly. For CPL the the offset is described as
$offset : The number of posts to skip; default is 0So (as I have used it), If there are 5 posts: 1 (newest), 2, 3, 4 and 5 (oldest), using an offset of one, CPL will display posts 2, 3, 4 and 5.Forum: Plugins
In reply to: Plugin questions1) Customisable post listings has an offest function – check the authors’ site for which parameter it is.
Forum: Fixing WordPress
In reply to: Permalinks and TrackbacksBy defualt, the number of trackbacks is included with the comment count. So when you see Comments (1) it might be one trackback/pingback or one comment. Several guides have been done to separate the comment and trackback count, so if you want to do that I suggest searching here, the codex and google too.
Forum: Plugins
In reply to: home.php, index.php and paginationResolved (I think), changed
if ($ctr == "0") {
to
if (($ctr == "0") && ($paged == "1")) {
I’ve been hacking at this for the last week and then solve it within 45 minutes of asking for help. Oh well 🙂Forum: Plugins
In reply to: an overview of all plugins?See also:
http://codex.wordpress.org/Plugins
Searching google with wordpress+plugin yeilds a good number too.