Hi,
1. Please add target="_blank" for tag <a *** > for 2 files:
/wp-content/themes/theone/functions/pagebuilder/modules/portfolio.php
line 479 update as:
<a target="_blank" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="brick-link brick-link-gray <?php echo $enable_ajax; ?>">
line497 update as:
<a target="_blank" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="brick-link <?php echo $enable_ajax; ?>">
/wp-content/themes/theone/functions/pagebuilder/modules/team.php
line101
<a target="_blank" class="team-item-title" title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
2.
Find: /wp-content/themes/theone/js/custom.theme.js, line 685-690, update as
$('.moudle .iterlock-caption a, .moudle .tab-content a, .moudle .accordion-inner a, .moudle .blog-item a, .moudle .isotope a, .ux-btn, .moudle .post-carousel-item a, .moudle .caroufredsel_wrapper:not(.portfolio-caroufredsel) a').click(function(){
if($(this).is('.brick-link')||$(this).is('.team-item-title')||$(this).is('.lightbox')||$(this).is('.tw-style-a')||$(this).is('.lightbox-item')){}else if ( jQuery(this).attr('target') == '_blank') {}else if($(this).is('.liquid_list_image')){}else if($(this).is('.ajax-permalink')){}else if(/#/.test(this.href)){}else{
themeData.fnPageLoadingEvent($(this));
return false;
}
});