• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Login or register before submit form

Login or register before submit form 11 years 2 months ago #26713

Hi

im newbie in rsformpro

its posiible the show form in frontend and submit data only if user is logged (must login or register)

regards
Last Edit: 11 years 2 months ago by jarecki74. Reason: a
The administrator has disabled public write access.

Login or register before submit form 10 years 11 months ago #27671

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
You can try using the simple method below


Insert the following script, in the "Script called on form process"
$user = JFactory::getUser();
 
if ($user->get('id') == 0) {
      $formLayout = '<p>Sorry, you must be registered.</p>';
	 }
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!