View Single Post
  #13  
Old 07-12-2005, 09:52 AM
 
Ryano Ryano is offline
 

Senior Member
  
Join Date: Jun 2004
Posts: 192
 

Default

Anyone know how to get this to work for version 4.0.14? I noticed that they made a few changes in the checkout.tpl because of the addition to the new Paypal Payment gateway. Here is the coding for my checkout.tpl in v 4.0.14. Can someone edit this for me? Thanks!

Code:
{* $Id: checkout.tpl,v 1.44.2.14 2005/06/17 06:27:11 svowl Exp $ *} {if $payment_data.payment_method ne ""} <H5>{$lng.lbl_payment_method}: {$payment_data.payment_method}</H5> {capture name=dialog} <TABLE border="0" cellpadding="0" cellspacing="0" width="100%"> <FORM action="{$payment_data.payment_script_url}" method="post" name="checkout_form"> <INPUT type="hidden" name="paymentid" value="{$payment_data.paymentid}"> <INPUT type="hidden" name="action" value="place_order"> <TR><TD> <PRE> <FONT> {include file="customer/main/customer_details.tpl"} </FONT> </PRE> {if $paypal_express_active} {include file="payments/ps_paypal_pro_express_checkout.tpl" paypal_express_link="return"} {else} {include file="buttons/modify.tpl" href="register.php?mode=update&action=cart&paymentid=`$smarty.get.paymentid`"} {/if} {if $ignore_payment_method_selection eq ""} <DIV align="right"> {include file="buttons/button.tpl" button_title=$lng.lbl_change_payment_method href="cart.php?mode=checkout"} </DIV> {/if} <INPUT type="hidden" name="{$XCARTSESSNAME}" value="{$XCARTSESSID}"> <SCRIPT> requiredFields = new Array(); </SCRIPT> {include file="check_required_fields_js.tpl"} {if $payment_data.payment_template ne ""} {include file=$payment_data.payment_template} {/if} {if $payment_cc_data.cmpi eq 'Y' && $config.CMPI.cmpi_enabled eq 'Y'} {include file="main/cmpi.tpl"} {/if} {include file="customer/main/checkout_notes.tpl"} <INPUT type="hidden" name="payment_method" value="{$payment_data.payment_method}"> {$lng.txt_you_are_agree} "{$lng.lbl_terms_n_conditions}" {$lng.lbl_and} "{$lng.lbl_privacy_statement}". <P align="center"> {if $js_enabled} {assign var="button_href" value="javascript: "} {if $config.General.check_cc_number eq "Y" and ($payment_cc_data.type eq "C" || $payment_data.paymentid eq 1) and $payment_cc_data.disable_ccinfo ne "Y"} {assign var="button_href" value=$button_href|cat:"if(checkCCNumber(document.checkout_form.card_number,document.checkout_form.card_type) && checkExpirationDate(document.checkout_form.card_expire_Month,document.checkout_form.card_expire_Year)"} {if $payment_cc_data.disable_ccinfo ne "C"} {assign var="button_href" value=$button_href|cat:" && checkCVV2(document.checkout_form.card_cvv2,document.checkout_form.card_type)"} {/if} {assign var="button_href" value=$button_href|cat:")"} {/if} {assign var="button_href" value=$button_href|cat:" if(checkRequired()) document.checkout_form.submit()"} {include file="buttons/button.tpl" button_title=$lng.lbl_submit_order style="button" href=$button_href} {else} {include file="submit_wo_js.tpl" value=$lng.lbl_submit_order} {/if} </TD></TR> </FORM> </TABLE> {/capture} {include file="dialog.tpl" title=$lng.lbl_payment_details content=$smarty.capture.dialog extra="width=100%"} {elseif $payment_methods ne ""} {capture name=checkout_dialog} <FORM action="cart.php" method="POST" name="cartform"> <INPUT type="hidden" name="cart_operation" value="cart_operation"> {include file="customer/main/cart_contents.tpl"} <HR noshade size="1"> {include file="customer/main/cart_totals.tpl"} {if $js_enabled} {include file="buttons/update.tpl" href="javascript: document.cartform.submit()" js_to_href="Y"} {else} {include file="submit_wo_js.tpl" value=$lng.lbl_update}{/if} </FORM> {/capture} {include file="dialog.tpl" title=$lng.lbl_order_summary content=$smarty.capture.checkout_dialog extra="width=100%"} {capture name=dialog} <FORM method="get" action="cart.php" name="checkout_form"> {$lng.txt_payment_method}</p> <TABLE border="0" align="center" width="400"> {section name=payment loop=$payment_methods} <TR> <TD><INPUT type="radio" name="paymentid" value="{$payment_methods[payment].paymentid}"{if $payment_methods[payment].is_default eq "1"} checked{/if}></TD> {if $payment_methods[payment].processor eq "ps_paypal_pro.php"} <TD colspan="2"> <TABLE border="0" cellpadding="0" cellspacing="0"><TR> <TD>{include file="payments/ps_paypal_pro_express_checkout.tpl" paypal_express_link="logo"}</TD> <TD></TD> <TD>{include file="payments/ps_paypal_pro_express_checkout.tpl" paypal_express_link="text"}</TD> </TR></TABLE> </TD> {else} <TD nowrap>{$payment_methods[payment].payment_method}</TD> <TD>{$payment_methods[payment].payment_details|default:""}</TD> {/if} </TR> {/section} <INPUT type="hidden" name="mode" value="checkout"> </TABLE> <DIV align="center"> {if $js_enabled} {include file="buttons/continue.tpl" style="button" href="javascript: document.checkout_form.submit()"} {else} {include file="submit_wo_js.tpl" value=$lng.lbl_continue} {/if} </DIV> </FORM> {/capture} {include file="dialog.tpl" title=$lng.lbl_payment_method content=$smarty.capture.dialog extra="width=100%"} {/if}
__________________
xcart v3.5.8 (Unix)
and
xcart v4.0.13
Reply With Quote