Tuesday 18 July 2006 10:41:55 am
any ideas on this? Actually i have a shop - checkout - before trigger and a paypal worklow with "all options enabled" what i get when i going to checkout i get a form like this
<form method="post" action="site/shop/checkout">
<input type="radio" name="SelectedGateway" value="ezpaypal" checked="checked"/>Paypal
<div class="buttonblock">
<input class="defaultbutton" type="submit" name="SelectButton" value="Seleccionar" />
<input class="button" type="submit" name="CancelButton" value="Cancelar" />
</div>
</form>
But now i want to add a second input in order to admit cash on delivery. i have tried to override my template and add this to the form
<input type="radio" name="SelectedGateway" value="cash" />Cash
What do i have to do to admit cash on delivery? Maybe i have to create a copy of ezpaypal as a new extension?. Thank you.
|