I have a small problem with the checkout_confirmation page. I am not sure if this issue is related to FEC or not.
The Payment Method is "blank" if the customer selects paypal (If the customer selects a credit card as payment, the CC information shows up just fine). I tried uninstalling express paypal and reinstalling but no luck. I have attached the code from the tpl_checkout_confirmation file.
Thx Sweet
<h3 id="checkoutConfirmDefaultPayment"><?php echo HEADING_PAYMENT_METHOD; ?></h3>
<?php
if (is_array($payment_modules->modules)) {
if ($confirmation = $payment_modules->confirmation()) {
?>
<div class="important"><?php echo $confirmation['title']; ?></div>
<?php
}
?>
<div class="important">
<?php
for ($i=0, $n=sizeof($confirmation['fields']); $i<$n; $i++) {
?>
<div class="back"><?php echo $confirmation['fields'][$i]['title']; ?><?php echo $confirmation['fields'][$i]['field']; ?></div>
<?php
}
?>
</div>
<?php
}
?>
</div>
Bookmarks