Support Forums - Classified Ads Script Osclass
Osclass theme support => Veronika Osclass Responsive Theme => Topic started by: Engr Ogba Victor on March 24, 2018, 09:58:35 AM
-
Hello. I need to edit the flash message after user registration. Since the email goes to spam box, I'll need to let's users know that if they don't find it in mail box, they should check spam box.
If you have a suggestion for reason my mails end up in spam and how to resolve it. Please let me know
Thanks
-
Best way is to update text in flash message via translation file.
-
Best way is to update text in flash message via translation file.
Which file do I need to edit please. Can you come a little below to my understanding. Thanks
-
Best way is to update text in flash message via translation file.
public_html/oc-includes/osclass/controller
In the above folder, I found register.php has it
if($success==1) {
osc_add_flash_ok_message( _m('The user has been created. An activation email has been sent'));
$this->redirectTo(osc_base_url());
} else if($success==2) {
osc_add_flash_ok_message( _m('Your account has been created successfully'));
Params::setParam('action', 'login_post');
Params::setParam('email', Params::getParam('s_email'));
Params::setParam('password', Params::getParam('s_password', false, false));
require_once(osc_lib_path() . 'osclass/controller/login.php');
$do = new CWebLogin();
$do->doModel();
} else {
osc_add_flash_error_message($success);
$this->redirectTo(osc_register_account_url());
}
-
Use Poedit to edit flash messages. flash messages file is core.po
-
Use Poedit to edit flash messages. flash messages file is core.po
Bro but after I edited the file above i solved it. If you think I'm wrong please tell me exactly how. I know powedit but i dont know how to use it