Hi,
Is there any way to disable link handing in the Portfolio Grid? I’m looking for a static grid where I just display images from a category. I tried using the gallery but it can’t show a static title underneath the image and I didn’t want the caption displayed like it does.
Thanks.
Marshall
Hi Marshall,
Can you post the link to your gallery please?
Regards,
Josue
Just a demo … http://adventurer.webhost4life.com/ef2/sales/
It will be 2 columns wide. Basically, I want a dynamically generated gallery that has the image and the title underneath. This data originally comes from a portfolio item (new listing) and when’s it sold, I change the featured image and change the category. This populates the recent sales page but I don’t want it to display any additional information (no link). Worst comes to worst, I can create a static table but I’d like to simplify it.
Thanks.
Marshall
Hey!
The URL you provided is not working.
Best regards,
Josue
It is now!
Hey!
Try adding this code to the Quick CSS:
.grid-image.avia-hover-fx {
pointer-events: none;
}
Cheers!
Josue
Perfect, thanks!
You are welcome, glad we could help :)
Regards,
Josue
Oooh, one problem. I want no link on the Past Sales page, but I want link on the New Listings page.
Hi!
You can use the page id css selector. This code
.page-id-36 .isotope-item a {
pointer-events: none;
}
will disable the click event here: http://adventurer.webhost4life.com/ef2/sales/
If you want to disable the links for another portfolio page make a copy of the css selector and replace 36 with the page id of the portfolio page where you want to disable the links.
Cheers!
Peter