The Artificer theme from WooThemes by default adds a home icon to the main navigation menu. To remove the icon edit the file:
./includes/theme-functions.php
Find the new_nav_menu_items function and comment out the lines that add the home icon button as follows:
function new_nav_menu_items($items, $args) {
$homelink = '';
if( $args->theme_location == 'primary-menu' )
//$homelink = '<li><a href="' . home_url( '/' ) . '"><span>' . __('Home') . '</span></a></li>';
//$items = $homelink . $items;
return $items;
}
WooThemes Artificer Home Button
2 Responses to “WooThemes Artificer Home Button”
Leave a Reply
Thanks! I was looking all over for how to do this. I was finally able to get rid of it here: http://www.beautyunveiled.net
Thanks, that helped me too! Lot of stuff needed to be removed from this theme but was worth the effort.