In oc-content/themes/your_bender_theme/functions.php find around line 341
if( !function_exists('get_user_menu') ) {
function get_user_menu() {
$options = array();
$options[] = array(
'name' => __('Dashboard', 'bender'),
'url' => osc_user_dashboard_url(),
'class' => 'opt_dashboard'
);
Right after the above code add the following:
$options[] = array(
'name' => __('Manage your listings', 'bender'),
'url' => osc_user_list_items_url(),
'class' => 'opt_items'
);
In the above code where you see 'bender' you will want to put your theme. Example: 'bender_black' ...etc.
In oc-content/themes/your_bender_theme/user-dashboard.php find around line 78
<div class="paginate" >
<?php echo osc_search_pagination(); ?>
</div>
Change to:
<div class="paginate" >
<?php for($i = 0; $i < osc_list_total_pages(); $i++) {
if($i == osc_list_page()) {
printf('<a class="searchPaginationSelected" href="%s">%d</a>', osc_user_list_items_url($i), ($i + 1));
} else {
printf('<a class="searchPaginationNonSelected" href="%s">%d</a>', osc_user_list_items_url($i), ($i + 1));
}
} ?>
</div>
Now you will have a new menu item "Manage your listings" when selected will give you pagination.