Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The forum ‘Gmedia Gallery WordPress Plugin’ is closed to new topics and replies.
Forum closed. Use forum at Wordpress.org: Gmedia Support
Forum
Tagged: link url
Hello,
Does the ‘link url’ box in Photo Blog module allow for html?
I am trying to add code in the link that opens a new window for the visitor so they don’t leave my site altogether.
Thanks,
LP
No, only url.
You can edit ‘/wp-content/grand-media/module/photo-blog/init.php’ file on line 33:
replace
$item->title = '<a href="' . $item->link . '"><b>' . $item->title . '</b></a>';
to
$item->title = '<a target="_blank" href="' . $item->link . '"><b>' . $item->title . '</b></a>';
