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

    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.

    #760015

    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

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