I am looking for a tutorial/documentation on the Redirect Plugin.
I have a member registration form that has name, address, email,
skills available, other inputs and membership options.
There are 3 membership options in a drop-down menu.
How do I redirect the data from the form and the selected membership
type to paypal and have the user redirected back to my site when finished?
I'm new to web development and this is for a non-profit. Any help
would be greatly appreciated.
Thank you!
B
I have a member registration form that has name, address, email,
skills available, other inputs and membership options.
There are 3 membership options in a drop-down menu.
How do I redirect the data from the form and the selected membership
type to paypal and have the user redirected back to my site when finished?
I'm new to web development and this is for a non-profit. Any help
would be greatly appreciated.
Thank you!
B
Hi beginner,
If your version of the plugin has a help tab that tells you pretty much all you need to know. There are several other examples in the forums here. And the tutorials tab has a long tutorial on the PayPal API plug-in. This is more complex that ReDirect but uses the same basic field structure.
Bob
If your version of the plugin has a help tab that tells you pretty much all you need to know. There are several other examples in the forums here. And the tutorials tab has a long tutorial on the PayPal API plug-in. This is more complex that ReDirect but uses the same basic field structure.
Bob
Bob,
Thanks for your reply. I found the following thread similar to my situation:
http://www.chronoengine.com/forums/index.php?option=com_chronoforums&cont=posts&f=5&t=16031
I have done everything as stated in this thread, but I kept the dropdown menu.
When I test, I am getting an error:
1. Password required
but I do not have a password field on my form?
Thanks,
B
Thanks for your reply. I found the following thread similar to my situation:
http://www.chronoengine.com/forums/index.php?option=com_chronoforums&cont=posts&f=5&t=16031
I have done everything as stated in this thread, but I kept the dropdown menu.
When I test, I am getting an error:
1. Password required
but I do not have a password field on my form?
Thanks,
B
Hi Beginner,
You need to set a password for the new user one way or another.
The latest version of the Joomla Registration plugin has a checkbox that you can set to get the plugin to do this for you. If you don't have this version then you can set the value in the Code before box using code like this
Bob
You need to set a password for the new user one way or another.
The latest version of the Joomla Registration plugin has a checkbox that you can set to get the plugin to do this for you. If you don't have this version then you can set the value in the Code before box using code like this
<?php
jimport('joomla.user.helper');
$password = JRequest::getString('password', JUserHelper::genRandomPassword(), 'post');
JRequest::setVar('password', $password;
Then use password in the two password boxes in the plugin.Bob
Looking foward for your return Bob!
Hello guys!
My question is simple: I don't want any Password field, I want to offer a simple form:
NAME
EMAIL
BUTTON
But when I make test, even without any password field, I get the message "Password is required".
I disable already Anti-Spam, Validations, everything I could think about...
Is there a way?
Thank you in advance for your time!
Hello guys!
My question is simple: I don't want any Password field, I want to offer a simple form:
NAME
BUTTON
But when I make test, even without any password field, I get the message "Password is required".
I disable already Anti-Spam, Validations, everything I could think about...
Is there a way?
Thank you in advance for your time!
Hi rmsu,
Are you using the Joomla! Registration Plug-in? I think that one version has a bug in the auto-create password code.
Bob
Are you using the Joomla! Registration Plug-in? I think that one version has a bug in the auto-create password code.
Bob
Hi MSU - did that solve your problem. I have similar issues too. thanks Emma
This topic is locked and no more replies can be posted.