• Resolved alexisfrsh

    (@alexisfrsh)


    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/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Nimble3

    (@nimble3)

    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>

    This does not work, FYI, and eliminates all the portfolio items.

    Plugin Author Nimble3

    (@nimble3)

    @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.