Hallo…
wäre es möglich, ein neues Fenster zu öffnen bei einem Portfolio Eintrag (Custom Link)
Danke für das Feedback.
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function custom_link_structure($link_markup){
$link_markup[0] .= "target='_blank'";
return $link_markup;
}
add_filter('avf_portfolio_custom_image_container', 'custom_link_structure', 10, 1);
Cheers!
Josue