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

    Thanks for your quick response – great support!!!
    I thought I’d been really clever. Changed Dribbble Icon to an Ebay image.
    Works great except on hover the the title is still “Dribbble”.
    Can I remove the hover name altogether or where do I change the “Dribbble” to Ebay?

    Cheers
    Evan

    #395663

    Hey adlinedesign!

    Thank you for using Enfold.

    Try to add to the functions.php file:

    add_filter('avia_filter_social_icons', 'avia_social_icons_title');
    function avia_social_icons_title($icons) {
    	$i = 0;
    	foreach ($icons as $icon) {
    		if($icon['social_icon'] == 'dribble') {
    			$icons[$i] = array(
    			'social_icon' => 'eBay',
    			'social_icon_link' => $icon['social_icon_link']
    			); break;
    		} $i++;
    	}
    	
    	return $icons;
    }

    Regards,
    Ismael

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