smoo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding Media Files to my blogYou need to change permissions on your /wp-content/ folder;
Using ftp, locate that folder, right click it and choose ‘properties’.
It will probably be set to 755 already, but you need to change it to 777.
This allows wordpress to add new files to it.Forum: Fixing WordPress
In reply to: how to show post titles, not months, using wp_get_archivesThank you for your time, I will give it a go.
Forum: Fixing WordPress
In reply to: how to show post titles, not months, using wp_get_archivesHi again,
and yes;
I just added wp_ to the beginning of what I already have, so it looks like this:
<?php wp_get_archives('postbypost','10','custom','<li>','</li>'); ?>
And the result looks like this:
News & What’s On
* May 2009
* April 2009Archives
* May 2009
* April 2009-where ‘News & What’s On’ used to list the latest ten post titles..
Thanks so much for trying to help!
Forum: Fixing WordPress
In reply to: how to show post titles, not months, using wp_get_archivesAwww.. Thanks WordPress :o)
However I *am* using postbypost..
This is the code I’m using (in a site I made last year):
<ul> <?php get_archives('postbypost','10','custom','<li>','</li>'); ?> </ul>
Which returns a list of the latest 10 post titles.
But adding a wp_ to the beginning of ‘get_archives’ in this line returns exactly the same thing as
<?php wp_get_archives('type=monthly'); ?>
(which is what I have underneath the first code in my sidebar).
The result is 2 lists of monthly archives, and no titles..
Am I just using it wrong?
Thanks again for any help..Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Output “Show as slideshow” tag at bottom of widgetI have looked extensively at the source code, and despite being a competent html-er who can hack simple php code, this is somewhat daunting.
However, it must be possible..
If anyone could at least point me in the right direction I would be very grateful!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Output “Show as slideshow” tag at bottom of widgetI too would like to move this link to below the thumbnails, -is this possible?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] thumbnails appear on left of enlarged photo@charliechalk:
I downloaded the previous version of the plugin from here:
https://www.ads-software.com/extend/plugins/nextgen-gallery/download/(BTW, you aren’t a certain CharlieChalk who I met at Burning Man a couple of years ago are you? Also a fabulous Flickr contributor?!)
Forum: Plugins
In reply to: Needed: Plugin for static text on index pageYou will need to edit index.php in your chosen theme folder;
You’re using a theme called ‘simplish, so you’ll find it in
/wp-content/themes/simplish/index.phpLook for the line that says:
‘<?php if (have_posts()) : ?>’and add your custom html before it.
You apparently have some google ads there too, not sure how they are inserted, but just above the line above should appear after the ads and before the blog content.Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] thumbnails appear on left of enlarged photoI have deleted the whole plugin and installed an earlier version, which seems to have done the trick.
Can’t believe I’m the only one who doesn’t want those thumbnails there tho..
Ho hum.Forum: Plugins
In reply to: Nextgen Imagebrowser simple editHi leighring,
did you have any luck editing this?
I would like to put the next/previous buttons above the image, rather than below (and also change the text to ‘of’ if possible!) but can’t find where to do it..
-smooForum: Plugins
In reply to: [Plugin: NextGEN Gallery] thumbnails appear on left of enlarged photoOk, apparently I am referring to ‘thickbox’,
is there a way to style this so that the thumbnails don’t appear on the left of the image you’ve clicked on?Forum: Fixing WordPress
In reply to: how to highlight current post?Hi bacollier,
and no.. I didn’t ever find a solution.
I imagine something could be done with the source code that says:
“if this url is the same as the current page url,
then
apply x class to the anchor tag”but I’m not savvy enough to hack the php.
I guess it would also interfere with future wordpress updates if you did, so probably not a good idea unless you know what you’re doing..How hard can it be tho?!
-smooForum: Plugins
In reply to: Pages & Subpages – Please helpThank you Kalessin!
I’ve been trying for 2 days to find out how to make this work like this.
I am now a very happy bunny!Forum: Fixing WordPress
In reply to: how to highlight current post?Thank you for replying.
However, I only need to highlight the current post, like current_page_item does for wp pages.
Is there any other way of identifying the current post?
-samForum: Themes and Templates
In reply to: Listing sibling pages when blog is a sub pageGottit, sorry.
<?php wp_list_pages(‘child_of=n’); ?>
Brilliant.