Has anyone done this before? This service basically signs you up to the pro service to accept credits card however gives you the ability to have it all hosted on PayPal - much how website paymens standard works.

This is what my preference is, and I wish to implement. Reading the documentation, the simple HTML integration of this is via form POST, again I believe the same as website payments standard.

So my question is, if I sign up to the service, will it be a simple case leaving the standard module in place and changing the form action url to be as per what they show in their example?

====
Below is an example of a simple Hosted Solution integration:
1.Sample Hosted Solution Form POST:
HTML Code:
<form action="https://securepayments.paypal.com/webapps/HostedSoleSolutionApp/webflow/sparta/hostedSoleSolutionProcess"
method="post">
<input type="hidden" name="cmd" value="_hosted-payment">
<input type="hidden" name="subtotal" value="50">
<input type="hidden" name="business" value="HNZ3QZMCPBAAA">
<input type="hidden" name="paymentaction" value="sale">
<input type="hidden" name="return"
value="https://yourwebsite.com/receipt_page.html">
<input type="submit" name="METHOD" value="Pay">
</form>
The bold text is the value for the corresponding variable. It is recommended that you enclose the values in quotes. For detailed information on these values, refer to Table 2.1, “HTML Variables for Settings of Payment Page” on page 19.
2.Output the HTML text into your website at the point where buyers will proceed with their checkout.
3.Open your checkout page and test the button to ensure that it opens the PayPal payment page
===

I assume if I changed to the Pro module this will put the card payment on my website pages which is what I dont want.

Look forward to any advice/prior experiences with this.

Cheers

Phil