Hi guys,
where can I delete or disable the link on the post-title / entry-title?
Best regards,
Theo
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