OK, not sure if I did this right or not but I removed this code
$output = "";
$url = avia_collect_shop_urls();
$output .= "<ul>";
if( is_user_logged_in() )
{
$output .= "<li class='account_overview_link'><a href='".$url['account_overview']."'>".__('My Account', 'avia_framework')."</a>";
$output .= "<ul>";
$output .= "<li class='account_change_pw_link'><a href='".$url['account_change_pw']."'>".__('Change Password', 'avia_framework')."</a></li>";
$output .= "<li class='account_edit_adress_link'><a href='".$url['account_edit_adress']."'>".__('Edit Adress', 'avia_framework')."</a></li>";
$output .= "<li class='account_view_order_link'><a href='".$url['account_view_order']."'>".__('View Order', 'avia_framework')."</a></li>";
$output .= "<li class='account_logout_link'><a href='".$url['logout']."'>".__('Log Out', 'avia_framework')."</a></li>";
$output .= "</ul>";
$output .= "</li>";
}
else
{
if(get_option('users_can_register'))
{
$output .= "<li class='register_link'><a href='".$url['register']."'>".__('Register', 'avia_framework')."</a></li>";
}
$output .= "<li class='login_link'><a href='".$url['account_overview']."'>".__('Log In', 'avia_framework')."</a></li>";
}
$output .= "<li class='shopping_cart_link'><a href='".$url['cart']."'>".__('Shopping Cart', 'avia_framework')."</a></li>";
$output .= "<li class='checkout_link'><a href='".$url['checkout']."'>".__('Checkout', 'avia_framework')."</a></li>";
$output .= "</ul>";
echo $output;
from this php file Flashlight: config.php (woocommerce-config/config.php) and it seems to have removed it which is good, I just don't know if that is right way to go about it and what it will affect site wide, seems to go to paypal fine so it looks good on my end.
You guys would know if removing that code will do more harm than good.
Did I do it right?
THanks!!
S