Hi,
I used this code suggested by you to make the feature box of X-Theme clickable. But, the link opens in the same window. I would like it to open in a new window or tab. How do I do that?
jQuery ( function( $ ) {
$('.x-feature-box-text a:last-child').each( function() {
$( this ).parent().parent().parent().find('.x-feature-box-graphic-inner i').wrap( '<a href="' + $( this ).attr('href') + '"></a>' );
$( this ).remove();
} );
} );
I used the function Open in a new window in the X’Theme, but it doesn´t work.
Thanks in advance,
José Luis