Do you mean after updating same profile?
$this->dao->select('s_identifier');
$this->dao->select();
I've found issue.In file:oc-content/plugins/business_profile/model/ModelBPR.phpFind: Code: [Select]$this->dao->select('s_identifier');Replace with: Code: [Select]$this->dao->select();This will be applied in new version as well.
how change this (companies) in url for other example (shop) or (tienda) http://prntscr.com/knhm69
osc_add_route('bpr-list', 'companies', 'companies', osc_plugin_folder(__FILE__).'form/home.php', false, 'bpr', 'home');
osc_add_route('bpr-list', 'shop', 'shop', osc_plugin_folder(__FILE__).'form/home.php', false, 'bpr', 'home');
osc_add_route('bpr-list', 'tienda', 'tienda', osc_plugin_folder(__FILE__).'form/home.php', false, 'bpr', 'home');
Quote from: asoto41 on August 27, 2018, 07:05:10 PMhow change this (companies) in url for other example (shop) or (tienda) http://prntscr.com/knhm69replace line 37 in /oc-content/plugins/business_profile/index.php Code: [Select]osc_add_route('bpr-list', 'companies', 'companies', osc_plugin_folder(__FILE__).'form/home.php', false, 'bpr', 'home');with this:Code: [Select]osc_add_route('bpr-list', 'shop', 'shop', osc_plugin_folder(__FILE__).'form/home.php', false, 'bpr', 'home');orCode: [Select]osc_add_route('bpr-list', 'tienda', 'tienda', osc_plugin_folder(__FILE__).'form/home.php', false, 'bpr', 'home');