NooTheme Premium WordPress Theme › Forums › JobMonster › Can you please help with the form shortcode
- This topic has 7 replies, 2 voices, and was last updated 1 year, 7 months ago by Jackie.
-
AuthorPosts
-
1 year, 8 months ago #1220099
I am trying to access the documentation to get the shotcodes on this page but the images are broken. Can you please help with the shortcodes list for the theme signin and register forms separately.
https://nootheme.com/documents/login-register-page/
Website url - https://acmresources.com.au/
Attachments:
You must be logged in to view attached files.1 year, 8 months ago #1220105Hi.
Thank you for contacting us.
We also have the offline document on the package. You can get the document at this link: https://www.dropbox.com/s/t60984q1t0xvqg1/Jobmonster-Documentation.zip?dl=0
This is the shortcode for the member page: https://prnt.sc/YzdHi84GEGp1
After creating a member page with that shortcode, please go to JobMonste/ Settings/ Member and assign the page to the config: https://prnt.sc/gfV9inZrL7OK
Please recheck it.
Thanks.
1 year, 7 months ago #1220135Hi.Can you help me place the member register for on a page separately. currently the forms appear in a popup if i click on login or register.I have to create a new page with only the register form''Thanks1 year, 7 months ago #1220148Hi.
For the register page, you can use this link:
https://wp.nootheme.com/jobmonster/member/?action=login&mode=register
add the "?action=login&mode=registe" parameter to your member link. That will help you open to register form.
Please recheck it.
Thanks.
1 year, 7 months ago #1220152HI,
Apologies for not being too clear, this link opens the register form in a register page but I have to place the form as part of a page with some content on the left and form on the right section of the page. Simply creating a new page with Elementor and right section of the page will display the form
Thanks
1 year, 7 months ago #1220153Hi.
Please add the custom source code below to the functions.php file to create a shortcode for the registration form:
add_shortcode( 'register_shortcode', 'register_shortcode' ); function register_shortcode() { return Noo_Member::ajax_register_form(__('Register','noo')); }
Then you can create the page and add the shortcode ['register_shortcode'].
Please recheck it.
Thanks.
1 year, 7 months ago #1220201Hi.Can you help me place the member Login for on a page separately. currently the forms appear in a popup if i click on login.sam as you did for register page'Thanks1 year, 7 months ago #1220202Hi.
For the login form shortcode, you can use the custom source code below to create a new shortcode for the login.
add_shortcode( 'login_shortcode', 'login_shortcode' ); function login_shortcode() { return Noo_Member::ajax_login_form(__('Login','noo')); }
Please recheck it.
Thanks.
-
AuthorPosts
You must be logged in and have valid license to reply to this topic.