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

    Hi guys,

    where can I delete or disable the link on the post-title / entry-title?

    Best regards,

    Theo

    #381145

    Hey pixup!

    Add this to the bottom of your functions.php file.

    add_filter( 'avf_title_args', 'enfold_customization_title_link' );
    function enfold_customization_title_link( $settings ) {
    	$settings['link'] = null;
    	return $settings;
    }

    Regards,
    Elliott

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