debreli
OpenCart-TR
catalog/view/theme/default/stylesheet/stylesheet.css aç .dosyanın sonuna
ekle
Kod:
.welcome {
clear: both;
margin: 3px 0px 3px 0px;
text-align: center;font-size: 11px;
border: 1px solid #e8e8e8;
background: #f5f9fc;
padding: 1px;padding-left: 5px;
}
catalog/controller/module/cart.php aç
bul
Kod:
$this->id = 'cart';
üstüne ekle
Kod:
if (!$this->customer->isLogged()) {
$this->data['text_greeting'] = $this->language->get('text_greeting');
} else {
$this->load->model('account/customer');
$customer_info = $this->model_account_customer->getCustomer($this->customer->getId());
$this->data['text_greeting'] = sprintf($this->language->get('text_logged'), $customer_info['firstname'] . "\n" . $customer_info['lastname']);
}
catalog/view/theme/default/templete/module/cart.tpl
bul
Kod:
<div class="middle">
sonrasına ekle
Kod:
<div class="welcome">
<?php echo $text_greeting; ?>
</div>
bul
Kod:
?>
üstüne ekle
Kod:
$_['text_greeting'] = 'Sayın <strong>Misafir</strong> Sepetinizde';
$_['text_logged'] = 'Sayın <strong>%s</strong> Sepetinizde';
tex yazılarını "<strong>%s</strong>" bu kod hariç kendinize göre değiştirebilirsiniz...