• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Thank you page after signing up

Started by ronyhage,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ronyhageTopic starter

Hi, there is no indication of a thank you or that you are signed up now after putting all the info in sign up page and clicking next. if a person does not know the site, they might get confused if the signing up worked or not.

So just a suggestion for your next theme, you can add a page thanking the user for signing up.

unless you can tell me how to do it now if its possible and easy.
  •  

PHPVibe A.

Hi! In com/com_register.php

you can add your message, or redirect after:

$id = user::AddUser($keys_values);
        user::LoginUser($id);


You can also do this

redirect(site_url().'dashboard/');

ronyhageTopic starter

sorry for asking, but since im no coder do you mind tell me how to add "Thank you for being part of this community" in the code you gave me:

$id = user::AddUser($keys_values);
        user::LoginUser($id);

thanks again.
  •  

PHPVibe A.

Just drop this under it.
echo '<div class="msg-info">Thank you for being part of this community</div>';


or better yet

echo '<div class="msg-info">'._lang("Thank you for being part of this community").'</div>';

Similar topics (7)