Hi,
I would like to use only the ajax preview in my portfolio, not having the project name in the ajax preview to link to the portfolios own page. I found a easy solution by changing the “Link portfolio item to external URL” to “#”. But even if that works, I would look better to remove the link completely (so that the visitor don’t think the link should point somewhere) to plain simple text.
Regards,
Tomas
Hey,
You can add this on your custom.css or Quick CSS
.grid-entry .grid-entry-title a {
pointer-events: none;
}
Remove browser cache the reload the page.
Regards,
Ismael
Hi,
I added it to quick CSS and removed my cache, but the links are still there.
http://agwp.agarkitekter.se/projekt/
Username: test
Password: test
Regards,
Tomas
You can try this:
.portfolio-preview-title a {
pointer-events: none;
}
Ismael gave this to me.
That worked, thanks!
Too bad IE don’t support pointer-events though. Going in editing the ajax code maybe too complicated (?), so I guess this will do.