• 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: How to limit to send one form per login user

How to limit to send one form per login user 1 year 9 months ago #42080

Hello

To complete the form you need to enter with username and password,

The option "Enable Confirmation By Email" is enabled in "Form Properties > Form Info" .

Is it possible to limit that the logged in user can only submit the form once time? And show a TEXT instead the form.

Regards
The administrator has disabled public write access.

How to limit to send one form per login user 1 year 9 months ago #42082

You can found something similar here

www.rsjoomla.com/forum/37-rsform-pro/299...erper-day.html#39171
Limit form submissions per user/per day

Change this line:
$db->setQuery("SELECT COUNT(`Username`) FROM `#__rsform_submissions` WHERE `Username`=".$db->q($user->username)." AND `FormId`='".(int) $formId."' AND `DateSubmitted` LIKE '".$currentDate." %'");
for this:
$db->setQuery("SELECT COUNT(`Username`) FROM `#_rsform_submissions` WHERE `Username`=".$db->q($user->username)." AND `FormId`='".(int) $formId."'");
Last Edit: 1 year 9 months ago by info59685.
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!