erkan_erkan581
OpenCart-TR
- Katılım
- 26 Ara 2012
- Mesajlar
- 4
- Tepkime puanı
- 0
- Puanları
- 0
İyi akşamlar herkese
Bir kod parçacığı hakkında problemim vardı.
Kod un tamamı aşağıdaki gibi. Resimdeki çizili if satırlarını ben yerleştirdim fakat değerlerle ilgili bir sıkıntı olduğu için opencart if leri değerlendirmiyo. Kodları her seferinde yazdırıyor.
Sistemde inceledim fakat payment metodları nasıl if e yerleştireceğim hakkında bir bilgiye ulaşamadım. Bu konuda yardımcı olursanız çok sevinirim.
Saygılarımla
Bir kod parçacığı hakkında problemim vardı.
Kod un tamamı aşağıdaki gibi. Resimdeki çizili if satırlarını ben yerleştirdim fakat değerlerle ilgili bir sıkıntı olduğu için opencart if leri değerlendirmiyo. Kodları her seferinde yazdırıyor.
Sistemde inceledim fakat payment metodları nasıl if e yerleştireceğim hakkında bir bilgiye ulaşamadım. Bu konuda yardımcı olursanız çok sevinirim.
Saygılarımla
Kod:
<!-- Quick Checkout quickcheckout/payment.tpl -->
<?php $config = $this->config->get('quickcheckout'); ?>
<div class="payment-step">
<div class="box box-border">
<div style="border-radius:0px;background:#f7f7f7;"class="box-heading ">
<table><tr>
<td style="width:250px"> <?php echo $text_checkout_payment_address;?></td>
<?php if($shipping_required){ ?>
<td style="width:250px"><?php echo $text_checkout_shipping_address;?></td>
<td style="width:250px"> <?php echo $text_checkout_shipping_method;?></td>
<?php if($_['text_title'] == 'Kapıda Ödeme') { ?>
<td style="width:250px"> <?php echo "Teyit Yapılacak"; ?></td> <!--düzenleme yapıldı-->
<?php }else{}} ?>
</tr></table>
</div>
<div class="content">
<table><tr>
<td style="width:250px">
<?php echo $addresses['payment_address']; ?>
</td>
<?php if($shipping_required){ ?>
<td style="width:250px">
<?php echo $addresses['shipping_address']; ?>
</td>
<td style="width:250px">
<?php echo $shipping_method; ?>
</td>
<?php if($_['text_title'] == 'Kapıda Ödeme' ) { ?>
<td style="width:250px"> <!--düzenleme yapılan yer-->
<img src="admin/view/image/teyit_balonu.png" alt="" width="150px">
</td>
<?php }else{}} ?>
</tr></table>
</div>
<div class="checkout-heading "><?php echo $text_checkout_payment_method . ': '. $text_title; ?></div>
<div id="payment_button"><?php if(isset($payment)){ echo $payment; }?></div>
</div>