How would I go about change the music note icon to a different icon for audio posts in the gallery as they are not music they are podcasts of interviews so would like to use the podcast icon. Please see link below.
Hey sensiblekaren,
You can add this on the child theme’s functions.php and specify the icon code you need (or even another icon font):
add_filter('avf_default_icons', 'avf_change_default_icons', 10, 2);
function avf_change_default_icons($icons) {
$icons['audio'] = array( 'font' =>'entypo-fontello', 'icon' => '{YOUR ICON CODE}');
return $icons;
}
Let me know if this was helpful.
Best regards,
Victoria