Title: linking thumbnails to permalink
Last modified: August 21, 2016

---

# linking thumbnails to permalink

 *  Resolved [alexisfrsh](https://wordpress.org/support/users/alexisfrsh/)
 * (@alexisfrsh)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/linking-thumbnails-to-permalink/)
 * I’ve removed the “view project” and “read more” links in favor of having the 
   thumbnail link directly to the permalink page. Problem is, I’m not sure how to
   make that last step.
 * I have tried replacing:
 *     ```
       <div class="nimble-portfolio-item" style="background: url('<?php echo $src[0]; ?>') center center !important;">
                                       <a href="<?php the_permalink(); ?>" rel="lightbox[nimble_portfolio_gal]" >
                                           <div class="nimble-portfolio-rollerbg"></div>
                                       </a>
                                   </div>
       ```
   
 * with
 *     ```
       <div class="nimble-portfolio-item" style="background: url('<?php echo $src[0]; ?>') center center !important;">
                                       <a href="<?php the_permalink(); ?>" class="button-fixed">
                                   </div>
       ```
   
 * ..to no avail. How can I make this work?
 * [http://wordpress.org/extend/plugins/nimble-portfolio/](http://wordpress.org/extend/plugins/nimble-portfolio/)

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

 *  Plugin Author [Nimble3](https://wordpress.org/support/users/nimble3/)
 * (@nimble3)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/linking-thumbnails-to-permalink/#post-3846214)
 * Just remove the `rel` attribute from `<a>` tag
 * Replace
 *     ```
       <a href="<?php the_permalink(); ?>" rel="lightbox[nimble_portfolio_gal]" >
            <div class="nimble-portfolio-rollerbg"></div>
       </a>
       ```
   
 * With
 *     ```
       <a href="<?php the_permalink(); ?>">
            <div class="nimble-portfolio-rollerbg"></div>
       </a>
       ```
   
 *  [jhawkinssbcos](https://wordpress.org/support/users/jhawkinssbcos/)
 * (@jhawkinssbcos)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/linking-thumbnails-to-permalink/#post-3846240)
 * This does not work, FYI, and eliminates all the portfolio items.
 *  Plugin Author [Nimble3](https://wordpress.org/support/users/nimble3/)
 * (@nimble3)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/linking-thumbnails-to-permalink/#post-3846241)
 * [@jhawkinssbcos](https://wordpress.org/support/users/jhawkinssbcos/) , would 
   you please share live URL to your page.
 * I am curious why the things are not working for you when its working for others.

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

The topic ‘linking thumbnails to permalink’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/nimble-portfolio_e1ebf4.svg)
 * [Wordpress Picture / Portfolio / Media Gallery](https://wordpress.org/plugins/nimble-portfolio/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/nimble-portfolio/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/nimble-portfolio/)
 * [Active Topics](https://wordpress.org/support/plugin/nimble-portfolio/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/nimble-portfolio/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/nimble-portfolio/reviews/)

## Tags

 * [permalink](https://wordpress.org/support/topic-tag/permalink/)
 * [thumbnail](https://wordpress.org/support/topic-tag/thumbnail/)

 * 3 replies
 * 3 participants
 * Last reply from: [Nimble3](https://wordpress.org/support/users/nimble3/)
 * Last activity: [12 years, 9 months ago](https://wordpress.org/support/topic/linking-thumbnails-to-permalink/#post-3846241)
 * Status: resolved