Gallery custom link not opening in a new tab / window
Question:
How can make the custom links on the gallery thumbnails open in the same tab / window and not in a new one?
Original poster
Solution:
Hi,
You have to open the includes/portfolio/portfolio-setter.php file and modify line 98:
$openLink='<a href="'.$customlink.'" target="_blank">';
to be like this:
$openLink='<a href="'.$customlink.'" >';
Pexeto