Title: Bensventures's Replies | WordPress.org

---

# Bensventures

  [  ](https://wordpress.org/support/users/validben/)

 *   [Profile](https://wordpress.org/support/users/validben/)
 *   [Topics Started](https://wordpress.org/support/users/validben/topics/)
 *   [Replies Created](https://wordpress.org/support/users/validben/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/validben/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/validben/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/validben/engagements/)
 *   [Favorites](https://wordpress.org/support/users/validben/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Flickr Photostream] [Plugin: Simple Flickr Photostream] Horizontal display of thumbnails](https://wordpress.org/support/topic/plugin-simple-flickr-photostream-horizontal-display-of-thumbnails/)
 *  Plugin Author [Bensventures](https://wordpress.org/support/users/validben/)
 * (@validben)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-simple-flickr-photostream-horizontal-display-of-thumbnails/#post-1745930)
 * 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](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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove parts of Quick Edit](https://wordpress.org/support/topic/remove-parts-of-quick-edit/)
 *  [Bensventures](https://wordpress.org/support/users/validben/)
 * (@validben)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/remove-parts-of-quick-edit/#post-999364)
 * I 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [read more link not working on default pages](https://wordpress.org/support/topic/read-more-link-not-working-on-default-pages/)
 *  [Bensventures](https://wordpress.org/support/users/validben/)
 * (@validben)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/read-more-link-not-working-on-default-pages/#post-1118060)
 * Was 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.

Viewing 3 replies - 1 through 3 (of 3 total)