Feature Box Graphic

Hi I found how to add a link to a classic feature box. I’ve got that working now but now I’d like to have one of my feature boxes open to a new window. Here is my homepage:

The code I’ve put in the ‘Page JS’ for the photobooth feature box to make this link work looks like this:

jQuery(document).ready(function($) {
jQuery(".photobooth-service .x-feature-box-graphic").click(function() {
window.location = “https://thebigpicturephotobooth.com”;
});
});

How can I make that link open to a new tab/window?

Thanks!

I figured it out.

jQuery(document).ready(function($) {
jQuery(".photobooth-service .x-feature-box-graphic").click(function() {
window.open(“https://thebigpicturephotobooth.com”, “_blank”);
});
});

Hi @noahjkatz,

Thanks for reaching out and we’re glad that you already figure it out. If you have any other concerns regarding our theme features, feel free to reach us.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.