function your_custom_menu_item ( $items, $args ) {
if (is_page_template('your-template.php') && $item->title == "Home") {
$items .= '<a href="# "> </a>';
}
return $items;
}
add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );