Fiyat ve para birimi boyutlandırma...

cosanon

OpenCart-TR
Katılım
4 May 2010
Mesajlar
19
Tepkime puanı
0
Puanları
0
Merhabalar,

1.5.1 sistemi kullanmaktayım. featured.tpl üzerinde ürün fiyatını 16px olarak boyutlandırıp. Para birimini de 10px olarak boyutlandırmak istiyorum.

featured.tpl değiştirmem gereken kod aşağıdadır.

PHP:
<?php if ($product['price']) { ?>
        <div class="price">
          <?php if (!$product['special']) { ?>
          <?php echo $product['price']; ?>
          <?php } else { ?>
          <span class="price-old"><?php echo $product['price']; ?></span> <span class="price-new"><?php echo $product['special']; ?></span>
          <?php } ?>
        </div>
        <?php } ?>

<?php echo $product['price']; ?> bu kısımda fiyat ve para biriminin 2 sini bir olarak temada entegrasyon yapılmı. Bu yüzden 2 farklı boyutlandırma yapamıyorum. Bunu nasıl çözebiliriz.

Şimdiden teşekkür eder.

İyi çalışmalar dilerim.
 

eren.erduran

OpenCart-TR
Katılım
11 Ağu 2011
Mesajlar
169
Tepkime puanı
0
Puanları
0
Yaş
29
Konum
Tiran
Web sitesi
erenerduran.com
bunu controller dosyasından düzenlemeniz gerek. orada $price'yi nasıl gönderiyorsa sizde orada bi kod kullanabilirsiniz
 

cosanon

OpenCart-TR
Katılım
4 May 2010
Mesajlar
19
Tepkime puanı
0
Puanları
0
Aşağıdaki kodları da inceledim ama nasıl bir komut yazmalıyım ki :)) php içine style, class veya id nasıl gömecem ki :)

PHP:
<?php
class ControllerModuleFeatured extends Controller {
	protected function index($setting) {
		$this->language->load('module/featured'); 

      	$this->data['heading_title'] = $this->language->get('heading_title');
		
		$this->data['button_cart'] = $this->language->get('button_cart');
		
		$this->load->model('catalog/product'); 
		
		$this->load->model('tool/image');

		$this->data['products'] = array();

		$products = explode(',', $this->config->get('featured_product'));		

		foreach ($products as $product_id) {
			$product_info = $this->model_catalog_product->getProduct($product_id);
			
			if ($product_info) {
				if ($product_info['image']) {
					$image = $this->model_tool_image->resize($product_info['image'], $setting['image_width'], $setting['image_height']);
				} else {
					$image = false;
				}

				if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
					$price = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')));
				} else {
					$price = false;
				}
						
				if ((float)$product_info['special']) {
					$special = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')));
				} else {
					$special = false;
				}
				
				if ($this->config->get('config_review_status')) {
					$rating = $product_info['rating'];
				} else {
					$rating = false;
				}
					
				$this->data['products'][] = array(
					'product_id' => $product_info['product_id'],
					'thumb'   	 => $image,
					'name'    	 => $product_info['name'],
					'price'   	 => $price,
					'special' 	 => $special,
					'rating'     => $rating,
					
					'reviews'    => sprintf($this->language->get('text_reviews'), (int)$product_info['reviews']),
					'href'    	 => $this->url->link('product/product', 'product_id=' . $product_info['product_id']),
				);
			}
		}

		if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/featured.tpl')) {
			$this->template = $this->config->get('config_template') . '/template/module/featured.tpl';
		} else {
			$this->template = 'default/template/module/featured.tpl';
		}

		$this->render();
	}
}
?>
 

eren.erduran

OpenCart-TR
Katılım
11 Ağu 2011
Mesajlar
169
Tepkime puanı
0
Puanları
0
Yaş
29
Konum
Tiran
Web sitesi
erenerduran.com
bunu yapmak biraz güç ister açıkçası. çünkü orada
PHP:
$price = $this->currency->format($th....

böyle bir şey var. bunu kaldırıp tek başına kullanırsanız fazladan bir sıfır atıyor. ve bu sıfırla beraber TL veya $ geliyor bunu ikisinden sadece bir modül için değilde tüm site için ayırabilirsiniz yoksa tek bir modül için tüm siteninki değişmek zorunda kalır.
 

cosanon

OpenCart-TR
Katılım
4 May 2010
Mesajlar
19
Tepkime puanı
0
Puanları
0
sadece modul olarak değil tüm sitede bu şekilde olmasını istiyorum. Bir module üzerinden örnek verdim sadece. Bu konu hakkında ufak bilgi paylaşırsanız. sevinirim. İyi günler dilerim.
 
Üst