[WP] How to open full slide link in a new tab?
Click on "Edit Slide Markup" in the slider options. Find the part where the slider adds a full-slide link:
<a class="rsLink" href="{{link_url}}">{{title}}</a>
and add target="_blank"
attribute to it, e.g.:
<a class="rsLink" target="_blank" href="{{link_url}}">{{title}}</a>
Read more about a
tag - http://www.w3schools.com/tags/tag_a.asp