Unfortunately, the username and password you have entered do not match!

Registration

Unfortunately, this username is already taken!

Unfortunately, this e-mail address is already used!

Please retype the verification code.

All fields are required

RSform! Pro PayPal Integration

Welcome, Guest
Username Password: Remember me

RSform! Pro PayPal Integration
(1 viewing) (1) Guest
  • Page:
  • 1

TOPIC: RSform! Pro PayPal Integration

RSform! Pro PayPal Integration 3 years, 4 months ago #4877

  • proexe
  • OFFLINE
  • Junior Boarder
  • Posts: 38
Hi, I have been reading some of the threads on the forum and quite a few people are looking for paypal intergration to there RS Form, Me myself am working on a project and require paypal intergration and was hoping for RS Forms to work in this way.

Is there any date for this intergration at all?

Many thanks<br><br>Post edited by: strafe, at: 2008/10/24 21:22
Last Edit: 2 years, 7 months ago by bogdan.

Re:Paypal Intergration 3 years, 4 months ago #4919

  • richiep
  • OFFLINE
  • Expert Boarder
  • Posts: 140
On that note, I'd like to be able to integrate with Google checkout and Authorize.net.

Does RS Form have a list of upcoming features?

Thanks
Richiep

Re:Paypal Intergration 3 years, 3 months ago #5117

Here's a small integration tutorial for the PayPal gateway. The only field that you need to setup in your form is a dropdown named "amount".

Script called on form process:
 
if (isset($_POST['form']['amount']))
{
$business = 'me@mybusiness.com';
$item_name = 'Team In Training';
$currency_code = 'USD';
$amount = $_POST['form']['amount'][0];
header('Location: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business='.$business.'&item_name='.$item_name.'&currency_code='.$currency_code.'&amount='.$amount);
exit();
}
 


Explanations:
- the $business variable should contain the receiver's (your) paypal email address
- the $item_name should contain the name of the item being purchased; don't use ampersands, only alphanumeric characters!
- the $currency_code variable should contain a paypal currency code, usually USD or EUR
- the $amount variable should contain the amount to be paid, formatted as XX.YY (eg. 99.00, 119.99); this can be received from a dropdown named "amount" using this block of code:
$amount = $_POST['form']['amount'][0];

or by manually writing the amount like this:
$amount = '119.99';

This is ok for one product with multiple prices, eg. a software with license pricing for 1,2 or 10 users, in which the customer will select the desired value from a dropdown.
If you want to use a hidden input field with a default value (containing the price), use this block of code:
$amount = $_POST['form']['amount'];


Later on I'll create a more advanced tutorial, that uses a dropdown to select products with different pricings, which is a bit tricky.

Post edited by: strafe, at: 2008/10/17 14:26<br><br>Post edited by: strafe, at: 2008/10/17 14:28
Attachments:
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
Last Edit: 2 years, 6 months ago by octavian.

Re:Paypal Intergration 3 years, 2 months ago #5722

  • WCS
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Straf,

I have been working with tech support, and they are having difficulties with the pay pal integration. As such I have been trying to implement the solution you posted by substituting my appropriate variables. However, the script doesn't seem to launch. Any chance you could take a look. I have emailed the button details to Alexandru Plapana TECH-4PMKM2F8PV and would be happy email them to you.

We have six different prices from a pull down.

Thanks WCS

Re:RSform! Pro PayPal Integration 3 years, 2 months ago #5750

  • dehuszar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
Am I the only one who thinks it a better idea to integrate with VirtueMart rather than trying to duplicate efforts?

Re:RSform! Pro PayPal Integration 3 years, 2 months ago #5771

  • dehuszar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
What's funny is that now that my client's needs have changed, I would prefer a direct solution... That'll teach me to be so quick to assume.

Re:RSform! Pro PayPal Integration 3 years ago #6314

  • gkillerx
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Is there also a option to use with IDEAL??

Re:RSform! Pro PayPal Integration 2 years, 8 months ago #7527

  • toby2
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
I followed the directions and getting this message when redirected to PayPal:

We cannot process this transaction because there is a problem with the PayPal email address supplied by the seller. Please contact the seller to resolve the problem. If this payment is for an eBay listing, you can contact the seller via the "Ask Seller a Question" link on the listing page. When you have the correct email address, payment can be made at www.paypal.com.

My Paypal email is correct: $business = 'my@email.org';

Re:Paypal Intergration 2 years, 8 months ago #7549

Where is this code located? What File? Has this been updated to be better integrated with RSFormPro?

Re:RSform! Pro PayPal Integration 2 years, 8 months ago #7553

  • alexp
  • OFFLINE
  • Moderator
  • Posts: 1047
@scott.tuchman,

You can place the above script in the Script called after form process.

Please note that we also release a new rather basic paypal plugin:

www.rsjoomla.com/joomla-plugins/rsform-pro.html
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team

Re:Paypal Intergration 2 years, 4 months ago #8571

octavian wrote:
Here's a small integration tutorial for the PayPal gateway. The only field that you need to setup in your form is a dropdown named "amount".

Script called on form process:
 
if (isset($_POST['form']['amount']))
{
$business = 'me@mybusiness.com';
$item_name = 'Team In Training';
$currency_code = 'USD';
$amount = $_POST['form']['amount'][0];
header('Location: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business='.$business.'&item_name='.$item_name.'&currency_code='.$currency_code.'&amount='.$amount);
exit();
}
 


Explanations:
- the $business variable should contain the receiver's (your) paypal email address
- the $item_name should contain the name of the item being purchased; don't use ampersands, only alphanumeric characters!
- the $currency_code variable should contain a paypal currency code, usually USD or EUR
- the $amount variable should contain the amount to be paid, formatted as XX.YY (eg. 99.00, 119.99); this can be received from a dropdown named "amount" using this block of code:
$amount = $_POST['form']['amount'][0];

or by manually writing the amount like this:
$amount = '119.99';

This is ok for one product with multiple prices, eg. a software with license pricing for 1,2 or 10 users, in which the customer will select the desired value from a dropdown.
If you want to use a hidden input field with a default value (containing the price), use this block of code:
$amount = $_POST['form']['amount'];


Later on I'll create a more advanced tutorial, that uses a dropdown to select products with different pricings, which is a bit tricky.

Post edited by: strafe, at: 2008/10/17 14:26<br><br>Post edited by: strafe, at: 2008/10/17 14:28


---------------------------------------------

Any update on the drop down?

Re:Paypal Intergration 2 years, 4 months ago #8620

  • calamus
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
hi,
I have my form with 3 different price.
The PayPal integration works fine but I neet to activate an alternative payment method.

I add a radio button called "pay_radio":
1|bank tranfer
2|PayPal

I try differnt solution but the if function dsen't work.

I think it is simple but...

I the fuction is this I can pay only with the PAYPAL

if (isset($_POST['form']['pay_radio']))
{

In thi case nothing works

if (isset($_POST['form']['pay_radio' == '2']))
{

Where is the mistake?

kind regards
Piero

Re:Paypal Intergration 2 years, 1 month ago #9393

  • Boomer
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
octavian wrote:
Here's a small integration tutorial for the PayPal gateway. The only field that you need to setup in your form is a dropdown named "amount".

Script called on form process:
 
if (isset($_POST['form']['amount']))
{
$business = 'me@mybusiness.com';
$item_name = 'Team In Training';
$currency_code = 'USD';
$amount = $_POST['form']['amount'][0];
header('Location: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business='.$business.'&item_name='.$item_name.'&currency_code='.$currency_code.'&amount='.$amount);
exit();
}
 


Explanations:
- the $business variable should contain the receiver's (your) paypal email address
- the $item_name should contain the name of the item being purchased; don't use ampersands, only alphanumeric characters!
- the $currency_code variable should contain a paypal currency code, usually USD or EUR
- the $amount variable should contain the amount to be paid, formatted as XX.YY (eg. 99.00, 119.99); this can be received from a dropdown named "amount" using this block of code:
$amount = $_POST['form']['amount'][0];

or by manually writing the amount like this:
$amount = '119.99';

This is ok for one product with multiple prices, eg. a software with license pricing for 1,2 or 10 users, in which the customer will select the desired value from a dropdown.
If you want to use a hidden input field with a default value (containing the price), use this block of code:
$amount = $_POST['form']['amount'];


Later on I'll create a more advanced tutorial, that uses a dropdown to select products with different pricings, which is a bit tricky.

Post edited by: strafe, at: 2008/10/17 14:26<br><br>Post edited by: strafe, at: 2008/10/17 14:28

Hello,

I've done evrything correctly now as describe here : www.rsjoomla.com/images/stories/user-gui...enshots/rsform04.jpg

I try to use the simple the paypal simple product.

caption : amount

show in front end? : yes

Price : 100

and the script (in the form scrip's tab) found in the forum :
 
if (isset($_POST['myform']['amount']))
{
$business = 'myemail@email.com';
$item_name = 'Team In Training';
$currency_code = 'USD';
$amount = 100.00;
header('Location: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=';.$business.'&item_name='.$item_name.'&currency_code='.$currency_code.'&amount='.$amount);
exit();
}


In front end, the character '100' is not displaid, just the caption name.
Last Edit: 2 years, 1 month ago by Boomer.

Re:RSform! Pro PayPal Integration 2 years ago #9528

just wondering if anyone has had any luck with tis script, it is loading in the browser but no action?

Re:Paypal Intergration 1 year, 12 months ago #9784

  • tharrson
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
I see a number of people have this problem, but I don't see a solution yet.
Surely somebody must have a simple script to bypass the Paypal module if a radio button is checked. I see a script for conditionally hiding a field in the docs, but nothing for skipping the Paypal plugin.
Perhaps one of the RS people could provide some help?

Thanks,
Ted

Re:Paypal Intergration 1 year, 11 months ago #9873

  • komita
  • OFFLINE
  • Senior Boarder
  • Posts: 41
This is what worked for us:

put this in the scripts called after form has been processed section. it would go to your webpage that you designate instead of www.yourlink.com. the 'howtopay' was the name of the field and we had a radio button with 'by check' or 'by credit card'. the 'by credit card' went to paypal after submit button hit.

if($_POST['form']['howtopay']=="By Check")
{
header("Location: www.yourlink.com/";);
die();
}

Re:Paypal Intergration 1 year, 10 months ago #10133

I tried this code, but it's not working for me. I'm still taken to paypal. Any suggestions or solutions?

Thanks,
Linda

Re:RSform! Pro PayPal Integration 1 year, 9 months ago #10384

  • plunk
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi gkillerx,

Did you ever get an answer to your question!?

Additional info:
Ideal, www.ideal.nl/, is the most used bank paying system in the Netherlands. I think people who are not from the netherlands, often don't know about it.

I know there is module that connects virtuemart to ideal-payment: www.joomlavirtuemartideal.nl/easy-ideal-...omponent-module.html

But is it also possible to connect RS-Membership to ideal???

Thanks

gkillerx wrote:
Is there also a option to use with IDEAL??
Last Edit: 1 year, 9 months ago by plunk.

Re:RSform! Pro PayPal Integration 1 year, 9 months ago #10471

Just following up on this thread as I ended up submitting a support ticket to RSJoomla for some help with this. I needed to use a custom amount (text field) in order to let my clients pay their invoices via PayPal. Here is a link to my write-up:

www.covingtoncreations.com/blog/how-to-c...tom-amount-field.php



Here is the script which is called on form process:

if (isset($_POST['form']['Amount']))
{
$business = ' your@emailhere.com This e-mail address is being protected from spambots. You need JavaScript enabled to view it ';
$item_name = 'Payment on Invoice Number'.$_POST['form']['InvoiceNumber'];
$currency_code = 'USD';
$amount = $_POST['form']['Amount'];
header('Location: www.paypal.com/cgi-bin/webscr?cmd=_xclick&business='.$business.'&item_name='.$item_name.'&currency_code='.$currency_code.'&amount='.$amount);
exit();
}


Hope that helps!!

Re:RSform! Pro PayPal Integration 1 year, 8 months ago #10638

  • mihaela
  • OFFLINE
  • Moderator
  • Posts: 18
We have added a new Custom PayPal form example on the www.joomla-form.com website.
www.joomla-form.com/form-examples/form-s...stom-paypal-example.

If you are interested in this example you can download it simply by clicking "Get this form", restore it in your Joomla! administrative panel(Components -> RSForm!Pro ->Backup/Restore) and edit it according to your needs.
Please note that you will need RSForm!Pro rev 28 or more in order for the example to work correctly.

We have modified the custom script given as an example by @octavian so users can select products with different prices and quantities from a drop-down box.

You can find more in depth explanations and screenshots in the blog article
"3 ways to create a small Joomla! shopping cart with RSForm!Pro and PayPal - Part 3"
www.rsjoomla.com/blog/3-ways-to-create-a...d-paypal-part-3.html
Last Edit: 1 year, 7 months ago by andreic.

Re:RSform! Pro PayPal Integration 1 year, 7 months ago #10799

But this sample does not work correctly. It is for multiple products, yet the script does not provide functionality for it. It just offers dummy "Product" instead. It is not appropriate when you provide invoice for multiple items marked just "Product".

Another issue. After installation I was not ever able to get to PayPal page for making payment. After pressing "Submit" It sends me to PayPal but it shows and error message on the page. I have updated e-mails in all fields, still the same problem.

Please advice what is the possible solution with this example. Da, I need drop down list in order to chose quantity for a single product.

Re:RSform! Pro PayPal Integration 1 year, 7 months ago #10802

  • andreic
  • OFFLINE
  • Moderator
  • Posts: 494
Hello,

Please note that you can edit the labels of the products that are listed in the dropdowns from Components > RSForm!Pro > Manage forms > select your form > Components. You just need to edit the checkbox group and change the items.

Regarding the error that was displayed when redirecting to PayPal, this was caused by an error in the script that redirects to PayPal. We have corrected this issue, please download the example again from our site.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team

Re:RSform! Pro PayPal Integration 1 year, 7 months ago #10810

Right,

Here is the scrip:

if($_POST['form']['Total'] != '0')
{
$business = 'immigration@reality-maker.com';
$item_name = 'Products';
$currency_code = 'AUD';
$amount = $_POST['form']['Total'];
$return = 'google.com';
header('Location: www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business='.$business.'&amp;item_name='.$item_name.'&amp;currency_code='.$currency_code.'&amp;amount='.$amount.'&amp;return='.$return); exit();
}


Here is the url line created from execution of the script: www.paypal.com/cgi-bin/webscr?cmd=_xclic...rn=http://google.com

It is diplayed in url address of a PayPal, while PayPal web page displays the following error message:
"Sorry — your last action could not be completed

If you were making a purchase or sending money, we recommend that you check both your PayPal account and your email for a transaction confirmation after 30 minutes.

If you came to this page from another website, please return to that site (don't use your browser's Back button) and restart your activity.

If you came from PayPal's website, click the PayPal logo in the upper-left corner to return to our home page and restart your activity. You might have to log in again."

Please advice what should be corrected.

Re:RSform! Pro PayPal Integration 1 year, 7 months ago #10811

  • andreic
  • OFFLINE
  • Moderator
  • Posts: 494
Hello,

Please download the example again and restore it in your Joomla! installation. We have corrected the script error that was causing this issue.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team

Re:RSform! Pro PayPal Integration 1 year, 6 months ago #11001

This PayPal sample still does not work. It works online in the sample page, but it does not work when you download the sample. I still get the Sorry — your last action could not be completed error.

I downloaded the file today.
I uploaded the file.
I did not make any changes.
I got the error.

I tried your version online.
I did not get the error.

What is causing the error?
What should we look for to correct in the code?

Re:RSform! Pro PayPal Integration 1 year, 5 months ago #11228

I am also having the same error and I just uploaded the example file and tried to use it. Any answers?? I am totally confused about what to do and I really need this functionality.

Re:RSform! Pro PayPal Integration 1 year, 2 months ago #12153

Hi all,

After tinkering with the RS Forms PayPal plugin I realised it won't do what I want. That is to allow purchasers to use PayPal's Buy Now option without the need to have a PayPal account.

With some simple scripting I have managed to get this working without the need for a plugin.

The basic principals are:

• Add some PHP to capture the form variables you will need to create the PayPal buy now form. This includes things like amount and a unique ID etc. This script is added to the “Script called on form process” entry field located under Scripts tab.

• In the “Script called after form has been processed” entry field use the $thankYouMessage string to output the form.

• Use the document.yourform.submit() Javascript function to submit your form to PayPal.

• When the RS From is submitted and validated the script automatically takes you to PayPal

This is very simple but works a treat for simple buy now type transactions where you need to capture some information before hand. If you would like the full details let me know and I will post up the code etc.

Cheers,

Kym
Last Edit: 1 year, 1 month ago by alexp.

Re:RSform! Pro PayPal Integration 1 year ago #12455

I would be very interested in having that code, please can you post it or send to
paul@strangefuit.im

I will also ask you a question if I may. I have a form where I am using the Paypal plugin,
but I would like it to send an email to admin on submit it a checked box is not checked, rather
than attempt to process via Paypal? The is only one checkbox which is to select buy tickets or not.

Re:RSform! Pro PayPal Integration 1 year ago #12492

Hi All:

Just a quick question about setting PayPal Sandbox versus PayPal live.

Am I correct in saying that the "sandbox" versus "live" configuration setting applies to all forms? For example, when I set the configuration to "sandbox," all forms will direct to the PayPal sandbox (even ones that are "live").

If this is so, is there any way that I can set "sandbox" versus "live" at a by-form level? The reason I ask is that we have one registration form in production that allows our members to book and pay a deposit for a conference. However, the powers that be also want us to set up a donations form. I would like to keep the registration form in production while developing the donation form in the sandbox.

Thanks. Any suggestions would be helpful.

Re:RSform! Pro PayPal Integration 1 year ago #12516

Hi Kym,

I am interested in your work and I would appreciate it if you could send me the code. I am trying to use RSFormPro with credit cards - not PayPal accounts, so I would like to be able to get to the payment page without having to login to PayPal

Thanks in advance,
Mark

Re:RSform! Pro PayPal Integration 1 year ago #12521

I too what like to get RSFormPro to work with credit cards, not paypal accounts. Could you please send me your script as well?
Thanks
Mark
mark.herro@alumni.stanford.org

Re:RSform! Pro PayPal Integration 1 year ago #12540

Hi All:

Never mind this post. After a night's sleep, I realized the answer to my own question.
Last Edit: 1 year ago by Cymdeithas Madog. Reason: Realized the answer to the question

Re:RSform! Pro PayPal Integration 1 year ago #12684

  • mail307
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
Hi Kym,

I am interested in what you have done. I would like to ask if you could send me the code. (mail@michael-zotter.ch) I would like to use use RSFormPro with credit cards.

Thank You!
Michael.

Re:RSform! Pro PayPal Integration 10 months, 1 week ago #13251

  • nik.m
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
I have read this topic and tried to use the scripts suggested.

What I am trying to do is allow a user to enter an amount they wish to donate and pay it via paypal on clicking send.

On trying your first script it all worked fine except the amount transferred to PayPal was always £1 regardless of what was entered. I tried the other scripts you suggested which didn't even connect to PayPal.

I would love your help on this.

Crispin

Re:RSform! Pro PayPal Integration 10 months, 1 week ago #13252

  • nik.m
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
I seem to have resolved it though I'm not sure why it worked

using your script

if (isset($_POST['form']['amount']))
{
$business = 'me@mybusiness.com';
$item_name = 'Team In Training';
$currency_code = 'USD';
$amount = $_POST['form']['amount'][0];
header('Location: www.paypal.com/cgi-bin/webscr?cmd=_xclick&business='.$business.'&item_name='.$item_name.'&currency_code='.$currency_code.'&amount='.$amount);
exit();
}

I removed the [0] from $amount = $_POST['form']['amount'][0]; and it all worked as I wanted, perfect.

Thanks

Crispin
Last Edit: 10 months, 1 week ago by nik.m.

Re:RSform! Pro PayPal Integration 10 months, 1 week ago #13275

  • nik.m
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
Having got the script working perfectly is there any way I can implement PayPal IPN so that we can thank the payee and keep a record of the payment?

Re:RSform! Pro PayPal Integration 9 months, 2 weeks ago #13467

  • sraimund
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi Kym,
I would be very interested in having that code, please send to
sraimund@gmail.com

Thanks
Best Regards,
sraimund

Re:RSform! Pro PayPal Integration 9 months, 2 weeks ago #13471

Hi Kym

Like many others I'm also interested in what you have written here. Can you send me a copy of your script please ?

Please send to jamespaxman70@gmail.com

Or can you post it on this thread ?

Thanks

James

Re:RSform! Pro PayPal Integration 9 months, 2 weeks ago #13480

  • Factrue
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
dehuszar wrote:
Am I the only one who thinks it a better idea to integrate with VirtueMart rather than trying to duplicate efforts?


Yes you are the only one here who denied, paypal is a significant way to integrate, but authorize . net is another way but not reliable yet as it is not using frquently now days but we hope in future to be used

Re:RSform! Pro PayPal Integration 9 months ago #13594

Sorry all...I forgot all about this thread and that I would post my code for a simple PayPal buy now transaction...

So here goes...


In the field “Script called on form process” capture all of the form fields you will need to create your Buy Now button. This script executes when the form’s submit button is pressed but before the form is processed.
E.g.
$_SESSION[’variable_01’] = $_POST['form'][’variable_02’] = $_POST['form'][' variable_03'] = $_POST['form']['’variable_03’];
And so on until you have all the values that you require.

In the field “Script called after form has been processed” were going to create the Pay Pal form required to submit the details to Pay Pal.
E.g
//FORM VARIABLES
$variable01 = $_SESSION['$variable01'];
$variable02 = $_SESSION['$variable02'];
$variable03 = $_SESSION['$variable03'];

//PAYPAL SETTINGS
$actionURL = "www.paypal.com/cgi-bin/webscr";
$cmdType = "_xclick";
$emailAddress = "your_pay_pal_email@test.com";
$itemName = "Your Item Name";
$returnURL = "www.test.org";
$cancelReturnURL = "www.test.org/cancel";

//CREATE PAYPAL FORM
$paypalForm = "<form name='paypal' action='" . $actionURL . "' method='post'>\n";
$paypalForm .= "<input type='hidden' name='pay_pal_parameter' value='" . $variable01 . "'>\n";
$paypalForm .= "<input type='hidden' name=' pay_pal_parameter ' value='" . $variable02 . "'>\n";
$paypalForm .= "<input type='hidden' name=' pay_pal_parameter ' value='" . $variable03 . "'>\n";
$paypalForm .= "<input type='hidden' name='return' value='" . $returnURL . "'>\n";
$paypalForm .= "<input type='hidden' name='cancel_return' value='" . $cancelReturnURL . "'>\n";
$paypalForm .= "</form>\n";

//SCRIPT TO AUTOMATICALLY SUBMIT FORM
$formSubmitScript = "";
$formSubmitScript = "<script>\n";
$formSubmitScript .= "document.paypal.submit()\n";
$formSubmitScript .= "</script>\n";
$messageText = "<h1>Please wait while we redirect you to PayPal to purchase your ticket(s).</h1>\n";

//CONCATENATE & OUTPUT TO BROWSER
$thankYouMessage = $messageText . $paypalForm . $formSubmitScript;

Easy as that....cheers, Kym.
Last Edit: 9 months ago by kym.oberauer.

Re:RSform! Pro PayPal Integration 8 months ago #13920

  • nik.m
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
I would like to use the PayPal component so as to benefit from the PayPal IPN.

The shopping cart script works very well but does not utilise the IPN.

Is it possible to add a quantity field to either the single product or multiple products?

Crispin

Re:RSform! Pro PayPal Integration 7 months, 3 weeks ago #13945

  • iAnna4
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi everyone,

I would like to use a form with PayPal integration for my shop and have been reading different posts, tutorials etc.
Once setting up my own form it wil not calculate the cents of my product prices ex. 4,20x3=12 and not 12,60
Any ideas? What have I missed?

Is it possible to make a multiple page form with calculation?
I.e. the first page personal details and invoice address, second page with delivery address and on the last a list of items for sale?

Thanks for any tips and/or ideas.

Have a great Sunday,

Re:RSform! Pro PayPal Integration 6 hours, 1 minute ago #0

Hello,
This is an automatically generated message.
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 wish to receive our 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: http://www.rsjoomla.com/support-policy.html.

Thank You!
PLEASE NOTE: This topic is NOT locked and you can add replies to it. Other users are free to reply as well. This message has been generated by a bot and has no effect on the topic whatsoever.
  • Page:
  • 1
Moderators: alex, alexp, octavian, bogdanc, andreic
Time to create page: 3.97 seconds
Feedback