How to open post in a new tab

Posted in: Newspaper
Post count: 33

Hello;
I wonder when we click on a blog ling how can we set the them to open the post in a new tab.
Thank you,
TDS

Post count: 35449

Hi,

Unfortunately our theme do not have a setting for this, this can be achieve using a custom javascript, but this will apply on all links
-> https://www.screencast.com/t/qgshsqOD16

window.onload = function(){
var anchors = document.getElementsByTagName('a');
for (var i=0; i<anchors.length; i++){
anchors[i].setAttribute('target', '_blank');
}
}

Or making changes in theme files.

Thank you for your understanding!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.