where would I find this sidebar menu?
may be added via hooks.
I guess my vision must be very poor, but I still cannot find where the actual user-menu is located, but I did discover a work around:
In 'oc_includes/osclass/helpers/hUtils.php' ... around line 188, where it says:
function osc_private_user_menu($options = null)
{
if($options
== null) {
Change to:
if($options
!= null) {
Then, I was able to change or update the lines below, to better suit my needs:
$options = array();
$options[] = array('name' => __('Public Profile'), 'url' => osc_user_public_profile_url(osc_logged_user_id()), 'class' => 'opt_publicprofile');
$options[] = array('name' => __('Dashboard'), 'url' => osc_user_dashboard_url(), 'class' => 'opt_dashboard');
$options[] = array('name' => __('Manage your listings'), 'url' => osc_user_list_items_url(), 'class' => 'opt_items');
$options[] = array('name' => __('Manage your alerts'), 'url' => osc_user_alerts_url(), 'class' => 'opt_alerts');
$options[] = array('name' => __('My profile'), 'url' => osc_user_profile_url(), 'class' => 'opt_account');
$options[] = array('name' => __('Logout'), 'url' => osc_user_logout_url(), 'class' => 'opt_logout');
Problem solved!
Thanks