yasonsekiz
OpenCart-TR
- Katılım
- 5 Mar 2012
- Mesajlar
- 12
- Tepkime puanı
- 0
- Puanları
- 0
ürünleri sadece üyeler görebilsin nasıl yapabılırım
<?php
if(!$logged){
if( $_SERVER['REQUEST_URI'] <> "/index.php?route=account/login" ) {
header('Location: index.php?route=account/login');
}
}
?>
if(!$logged){
if( $_SERVER['REQUEST_URI'] <> "/index.php?route=account/login" && $_SERVER['REQUEST_URI'] <> "/index.php?route=account/register") {
header('Location: index.php?route=account/login');
}
}
?>
<?php
if(!$logged){
if(
$_SERVER['REQUEST_URI'] <> "/index.php?route=account/login" &&
$_SERVER['REQUEST_URI'] <> "/index.php?route=account/register" &&
$_SERVER['REQUEST_URI'] <> "/index.php?route=common/home"
)
{
header('Location: index.php?route=account/login');
}
}
?>
yasonsekiz' Alıntı:fofotara
çok teşekkur ederim üstad sen bu işi çok iyi biliyorsun
benim bir sorunum daha var yardımın dokunursa sevinirim
yonetim panelinden fiyatı gösterme yapınca ana sayfada üye girirşi yapmadan fiyat görünmüyor
aynı mantığı sepete ekle bolumundede uygulamak istiyorum bir çözümü varmıdır.?
bu ana kadar yardımlarından dolayı ayrıca teşekkur ederim.
borma' Alıntı:Merhabalar
/catalog/view/theme/kenditemam/template/common/headet.tpl dosyasına
body tag altına
<?php
if(!$logged){
if(
$_SERVER['REQUEST_URI'] <> "/index.php?route=account/login" &&
$_SERVER['REQUEST_URI'] <> "/index.php?route=account/register" &&
$_SERVER['REQUEST_URI'] <> "/index.php?route=common/home"
)
{
header('Location: index.php?route=account/login');
}
}
?>
bu kodu ekliyorum fakat site hiç açılmıyor
Benm istediğim siteye girildiğinde vitrindeki ürünler görünsün fakat ürün resmine tıklayınca kayıt kısmına atsın.
arkadaşlarında belirttiği gibi bu iki linkteki gibi olmasını istiyorum
benim sayfam http://www.xloo.com.tr
örnek sayfa http://paradisoshop.com
düzenlemek istediğim site www.10fashion.cn.com/women
$this->data['button_cart'] = $this->language->get('button_cart');
$this->data['logged'] = $this->customer->isLogged();
<div class="box">
<div class="box-heading"><?php echo $heading_title; ?></div>
<div class="box-content">
<div class="box-product">
<?php foreach ($products as $product) { ?>
<div>
<?php if ($product['thumb']) { ?>
<div class="image"><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" /></a></div>
<?php } ?>
<div class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a></div>
<?php if ($product['price']) { ?>
<div class="price">
<?php if($logged){ ?>
<?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 } ?>
<?php } ?>
</div>
<?php } ?>
<?php if ($product['rating']) { ?>
<div class="rating"><img src="catalog/view/theme/default/image/stars-<?php echo $product['rating']; ?>.png" alt="<?php echo $product['reviews']; ?>" /></div>
<?php } ?>
<div class="cart">
<?php if($logged){ ?>
<input type="button" value="<?php echo $button_cart; ?>" onclick="addToCart('<?php echo $product['product_id']; ?>');" class="button" />
<?php }else{ ?>
<p>asasa</p>
<?php } ?>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
/catalog/view/theme/kenditemam/template/common/headet.tpl dosyasına
body tag altına
<?php
if(!$logged){
if(
$_SERVER['REQUEST_URI'] <> "/index.php?route=account/login" &&
$_SERVER['REQUEST_URI'] <> "/index.php?route=account/register" &&
$_SERVER['REQUEST_URI'] <> "/index.php?route=common/home"
)
{
header('Location: index.php?route=account/login');
}
}
?>