Url in a new window

Posted in: Newspaper
Post count: 128

Hi,
How to set in for example block 10 open every url in a new window?

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!

Post count: 128

no, I just want one block, so how do you set it?

Post count: 35449

Hi,

If you want to do this only for one block, then you’ll need to make some changes in theme files to detect that block ( block 9) and open it in new a new windows!

Thank you for your understanding!

Post count: 128

1. Will they have the closest updates?

Post count: 35449

Hi,

Unfortunately I do not quite understand what you mean, if you are referring if this option will be implement in the theme in coming updates, then I do not think this is on the features list, but I can write it on the list.

Thank you!

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