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

Title: Edit registration flash message
Post 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
Title: Re: Edit registration flash message
Post by: MB Themes on March 24, 2018, 12:43:07 PM
Best way is to update text in flash message via translation file.
Title: Re: Edit registration flash message
Post by: Engr Ogba Victor on March 24, 2018, 08:32:49 PM
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
Title: Re: Edit registration flash message
Post by: Engr Ogba Victor on March 24, 2018, 09:36:20 PM
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
Code: [Select]
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());
                                        }
Title: Re: Edit registration flash message
Post by: Rikimaru Tenchu on March 25, 2018, 06:21:26 PM
Use Poedit to edit flash messages. flash messages file is core.po
Title: Re: Edit registration flash message
Post by: Engr Ogba Victor on March 25, 2018, 06:33:18 PM
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