Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #335523

    Hallo…

    wäre es möglich, ein neues Fenster zu öffnen bei einem Portfolio Eintrag (Custom Link)
    Danke für das Feedback.

    • This topic was modified 10 years, 2 months ago by welti.
    #337223

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.