netwirejohn Posted December 14, 2009 Share Posted December 14, 2009 Is there a way to accept 1 particular form of payment on a particular package(s)? I noticed when I have BluePay and Paypal enabled both come up as options for payment, but on certain packages I would only like to use bluepay. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted December 14, 2009 WHMCS Support Manager Share Posted December 14, 2009 You could probably do something like: {if $product.productinfo.name eq "Package 1"} <input type="radio" name="paymentmethod" value="bluepay" id="pgbtn0"{if $selectedgateway eq "bluepay"} checked{/if} /> <label for="pgbtn0">BluePay</label> {else} <input type="radio" name="paymentmethod" value="paypal" id="pgbtn0"{if $selectedgateway eq "paypal"} checked{/if} /> <label for="pgbtn0">PayPal</label> {/if} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.