By default, the registration step is processed on homepage, right?
But I'd like to display "register" link on top menu bar and display register page by clicking the link.
Any suggestion is welcome for this.
Thanks,
Apple-vCTO
Well, how to customize the registration form fields?
I just want to use Email, Username, Password for the registration.
Best,
Apple-vCTO
Hi Arsalan, thanks for your correct answer.
I've implemented custom register page, but using custom theme, not using component.
The way to implement was same as using component.
Actually, it was to
1. write ossn_register_page('register', 'custom_register_page');
in ossn_com.php
of custom theme
and specifying the custom register page file in ossn_register_page(
) function.
ossn_register_page('register', 'custom_register_page');
function custom_register_page() {
$title = 'Register Page';
$content = ossn_set_page_layout('contents', array(
'content' => ossn_view('themes/goapple/plugins/default/pages/contents/user/register'),
));
echo ossn_view_page($title, $content);
}
You can create a custom page
You need to create a component that
ossn_com.php
add a ossn_register_page('signup', 'handler_for_singup');
(Simply see hello world component for checking how to create own page)Due to the many requests in the past for additonal features and components we have decided to develope a premium version. Features like Hashtags, Videos, Polls, Events, Stories, Link Preview, etc included in it.
$199 (Life Time)