Bensventures
Forum Replies Created
-
The way the thumbnails are displayed is really down to your css so everything is possible really.
But the plugin does not include any stylesheet for you so you’ll have to do it manually.
Generally a simple
li.picture-item {float:left;}should do.Have a look in the comments on this page: http://www.ai-development.com/wordpress-plugins/simple-flickr-photostream-widget
There are a few ideas on how to display thumbnails in rows of two for example.
Forum: Fixing WordPress
In reply to: Remove parts of Quick EditI am not very found of editing core files… There is another way to get rid of the Quick edit link even if not 100% safe.
You can write a small javascript that will hide the link. Something like:
jQuery('a.editinline').remove();This way no one will be able to click on the link. Of course clever users can still get it to show up…maybe.
Forum: Fixing WordPress
In reply to: read more link not working on default pagesWas searching for the same exact problem and suddenly it popped up in my mind while reading your post.
On custom template pages using query_post to customise the query you have to reset the $more variable before the loop.
It should looks like this:
global $more; $more = 0; while ( have_posts() ) : the_post() ?> .... endwhile;Hope this will help.