@MB Themes
You can find it in backoffice_manager / file republish.php starting from line 115 there is:
//Send user to homepage or payment page with flash message
if($pay_per_post == 1 && $item_id <> '') {
osc_add_flash_ok_message( __('There is fee for republishing listing. After payment is successful, your listing will be activated. Please continue to payment process.', 'backoffice_manager'));
header('Location: ' . osc_route_url('payment-publish', array('itemId' => $item_id)));
} else {
if($redirect == '') {
if(osc_is_web_user_logged_in()) {
header('Location: ' . osc_user_dashboard_url(osc_logged_user_id()));
} else {
header('Location: ' . osc_base_url());
}
}
}