1.4.9 versiyonlarında oldugu gibi sağ veya sol blokta gösterebilirsiniz.
1) catalog/view/theme/YOURTHEME/stylesheet/stylesheet.css
ALTTAKİ KODU Stylesheet DOSYASININ SONUNA EKLEYİN
-------------------
-------------------
2): catalog/view/theme/YOURTHEME/template/product/product.tpl
A) BUL:
-------------------
-------------------
A) ALTTAKİYLE DEĞİŞTİR:
-------------------
-------------------
3) catalog/view/javascript/common.js
B) İLKİNİ BUL:
-------------------
-------------------
B) ÖNCESİNE EKLE:
-------------------
-------------------
C) İLKİNİ BUL:
-------------------
-------------------
C) ALTTAKİYLE DEĞİŞTİR:
-------------------
-------------------
D) BUL:
-------------------
-------------------
D) ALTTAKİYLE DEĞİŞTİR:
-------------------
-------------------
3) admin bölümünden modülü kurun.eğer hata alırsanız sistem kullanıcı gruplarından izin verin.
1) catalog/view/theme/YOURTHEME/stylesheet/stylesheet.css
ALTTAKİ KODU Stylesheet DOSYASININ SONUNA EKLEYİN
-------------------
Kod:
/*
* Cart Module
*/
#module_cart .content {
background: none repeat scroll 0 0 #FFFFFF;
border-color: #EEEEEE;
border-radius: 0 7px 7px 7px;
border-style: solid;
border-width: 1px;
box-shadow: 0 2px 2px #DDDDDD;
clear: both;
display: none;
min-height: 150px;
padding: 8px;
position: relative;
top: -1px;
}
#module_cart.active .heading {
border-left: 1px solid #EEEEEE;
border-radius: 7px 7px 0 0;
border-right: 1px solid #EEEEEE;
border-top: 1px solid #EEEEEE;
margin-top: 5px;
padding-bottom: 6px;
padding-top: 10px;
}
#module_cart.active .content {
display: block;
}
#module_cart .cart {
border-collapse: collapse;
margin-bottom: 5px;
width: 100%;
}
#module_cart .cart td {
border-bottom: 1px solid #EEEEEE;
color: #000000;
padding: 2px 3px;
vertical-align: top;
}
#module_cart .cart .image {
display: none;
}
#module_cart .cart .image img {
border: 1px solid #EEEEEE;
text-align: left;
}
#module_cart .cart .name small {
color: #666666;
line-height: 14px;
}
#module_cart .cart td.total, #module_cart .cart td.quantity{
text-align: right;
vertical-align: middle;
}
#module_cart .cart .remove {
text-align: right;
padding: 0 2px;
vertical-align: middle;
}
#module_cart .cart .remove img {
cursor: pointer;
}
#module_cart table.total {
border-collapse: collapse;
clear: left;
float: right;
margin-bottom: 5px;
padding: 5px;
}
#module_cart table.total td {
color: #000000;
}
#module_cart .checkout {
clear: both;
text-align: right;
}
#module_cart .empty {
text-align: center;
}
2): catalog/view/theme/YOURTHEME/template/product/product.tpl
A) BUL:
-------------------
Kod:
$('#cart_total').html(json['total']);
var image = $('#image').offset();
var cart = $('#cart').offset();
A) ALTTAKİYLE DEĞİŞTİR:
-------------------
Kod:
var image = $('#image').offset();
if($(".cart-module").length > 0){
var cart = $('.cart-module');
$('.cart-module').html(json['output']);
var cart_offset = $('.cart-module').offset();
}else {
$('#cart_total').html(json['total']);
var cart = $('#cart');
var cart_offset = $('#cart').offset();
}
3) catalog/view/javascript/common.js
B) İLKİNİ BUL:
-------------------
Kod:
$('#cart_total').html(json['total']);
B) ÖNCESİNE EKLE:
-------------------
Kod:
$('#module_cart .content').html(json['output']);
C) İLKİNİ BUL:
-------------------
Kod:
$('#cart .content').html(json['output']);
C) ALTTAKİYLE DEĞİŞTİR:
-------------------
Kod:
$('#cart .content, #module_cart .content').html(json['output']);
D) BUL:
-------------------
Kod:
params = {
top : cart.top + 'px',
left : cart.left + 'px',
opacity : 0.0,
width : cart.width(),
height : cart.height()
};
D) ALTTAKİYLE DEĞİŞTİR:
-------------------
Kod:
params = {
top : cart_offset.top + 'px',
left : cart_offset.left + 'px',
opacity : 0.0,
width : cart.width(),
height : cart.height()
};
3) admin bölümünden modülü kurun.eğer hata alırsanız sistem kullanıcı gruplarından izin verin.