Sepette Sil Butonu Ekleme

HattaB

OpenCart-TR
Katılım
12 Nis 2010
Mesajlar
6
Tepkime puanı
0
Puanları
0
dfsdfac.jpg


Arkadaşlar Resilmde de gördüğünüz gibi Sil kutucuğunu seçmeden silinmiyor. yani güncelle buttonu ekledim tamamen silmek için ne yapabiliriz ?


DEMO
 

mirac

OpenCart-TR
Katılım
7 Şub 2010
Mesajlar
1,383
Tepkime puanı
0
Puanları
36
Yaş
42
Konum
Beykoz____
Web sitesi
www.notebook-cantasi.com
[KOD] Sepeti boşalt düğmesi ekleme..

Adet seçeneğini değil ama Sepeti komple boşaltmak için işe yarayabilir belki..:)

catalog/view/theme/Kullandığınız tema/template/module/cart.tpl aç..

Bul..
Kod:
<div style="text-align: right;"><?php echo $text_subtotal; ?>&nbsp;<?php echo $subtotal; ?></div>

Altına ekle..
Kod:
<a onclick="clearCart();" class="button"><span><?php echo $this->language->get('text_clear'); ?></span></a>

Bul.. (<?php } ?> bu kodu en sona gidecek..)
Kod:
});     
//--></script>

Altına ekle..
Kod:
    <script type="text/javascript"><!--
    function clearCart() {
        $.ajax({
            type: 'post',
            url: 'index.php?route=module/cart/clear',
            dataType: 'html',
            data: '&clearcart=true',
            success: function (html) {
                $('#module_cart .middle').html(html);
            },
        });           
    }
    //--></script>


catalog/controller/module/cart.php aç..

Bul..
Kod:
    $output .= '<div style="text-align: right;">' . $this->language->get('text_subtotal') . '&nbsp;' .  $this->currency->format($this->cart->getTotal()) . '</div>';

Altına ekle..
Kod:
    $output .= '<a onclick="clearCart();" class="button"><span>' . $this->language->get('text_clear') . '</span></a>';

Bul..
Kod:
}
?>

Üstüne ekle..
Kod:
        public function clear() {
            $this->language->load('module/cart');
           
            if ($this->request->server['REQUEST_METHOD'] == 'POST') {
                if (isset($this->request->post['clearcart'])) {
                    $this->cart->clear();
                   
                    $output = '<div style="text-align: center;">' . $this->language->get('text_empty')  . '</div>';
           
                    $this->response->setOutput($output, $this->config->get('config_compression'));
                }
            }
        }

catalog/language/turkish/module/cart.php aç..

Bul..
Kod:
$_['text_empty']    = '0 ürün var.';

Altına ekle..
Kod:
$_['text_clear']    = 'Sepeti Boşalt';

1.4.7 de denenmiştir sorunsuz çalışmaktadır..
 

burak_57

OpenCart-TR
Katılım
9 May 2010
Mesajlar
5
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Teşekkürler Sorunsuz çalışıyor.
 

castblade

OpenCart-TR
Katılım
17 Nis 2010
Mesajlar
1
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

catalog/controller/checkout/cart.php aşağıdaki kodu bulun

bul
$this->data['button_update'] = $this->language->get('button_update');

değiştir
$this->data['button_update'] = $this->language->get('button_delete');

alışveriş sepetinde güncelle yerine sil seçeneğini ekler...
 

@RTHuR

OpenCart-TR
Katılım
22 Nis 2010
Mesajlar
48
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

bu olay hakikaten güzel ama resimdeki gibi sil 1 adet yanında sil yerine altta buton oluyor birde centigi isaretlemesende bümeye bassanda siliyor yukarudaki rsimdeki gibi sil olamazmı

ben resimdekini yapma ile urasırken sunu da farkettim son ürünlerden sepete ekle dedikten sonra sepeti bosalt diyorumya bosaltınca sepetin içidolu gözüküyor anasayfa dönüp tekrara sepetime bakınca bos gözüküyor peki bunu normalde sepeti bosalt butonu olmadıgı zaman kaldır centigini secip güncelle basınca direk siliyor sepeti bosaltıyor o sekil yapamazmıyız

Sitede kimse yokmu
 

@RTHuR

OpenCart-TR
Katılım
22 Nis 2010
Mesajlar
48
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Ya arkadaşar bu resimdeki olayı yapamadım bilen biri yokmudur domo siteye mesaj attım ama geri cevap gelmedi zati sitede calısmıyor ne yapabiliriz.
 

ntura

OpenCart-TR
Katılım
23 May 2010
Mesajlar
15
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

mirac dediğini yaptım ama bazen boşaltıyo bazen boşaltmıyo bazen hiç bişey oomuyo bazen olluyo mozillada olurken ie de olmuyo (ie de hiç olmadı)
yedekleri geri yükledim baştan yaptım olmuyo hep aynı

sorun nedir acaba

cart.tpl
Kod:
  <div id="module_cart" class="box">
  <div class="top"><img src="catalog/view/theme/default/image/basket.png" alt="" /><?php echo $heading_title; ?></div>
  <div class="middle">
    <?php if ($products) { ?>
    <table cellpadding="2" cellspacing="0" style="width: 100%;">
      <?php foreach ($products as $product) { ?>
      <tr>
        <td valign="top" align="right" width="1"><?php echo $product['quantity']; ?>&nbsp;x&nbsp;</td>
        <td align="left" valign="top"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a>
          <div>
            <?php foreach ($product['option'] as $option) { ?>
            - <small style="color: #999;"><?php echo $option['name']; ?> <?php echo $option['value']; ?></small><br />
            <?php } ?>
          </div></td>
      </tr>
      <?php } ?>
    </table>
    <br />
    <div style="text-align: right;"><?php echo $text_subtotal; ?>&nbsp;<?php echo $subtotal; ?></div>
<a onclick="clearCart();" class="button"><span><?php echo $this->language->get('text_clear'); ?></span></a>
	<div style="text-align: center; margin-top: 10px;"><a href="<?php echo $cart; ?>" class="button" style="text-decoration: none;"><span><?php echo $text_cart; ?></span></a></div>
    <?php } else { ?>
    <div style="text-align: center;"><?php echo $text_empty; ?></div>
    <?php } ?>
  </div>
  <div class="bottom">&nbsp;</div>
</div>
<?php if ($ajax) { ?>
<script type="text/javascript"><!--
$(document).ready(function () {
	$('#add_to_cart').replaceWith('<a onclick="" id="add_to_cart" class="button">' + $('#add_to_cart').html() + '</a>');

	$('#add_to_cart').click(function () {
var submitted = $("#product").serialize();
$.ajax({
type: 'post',
url: 'index.php?route=module/cart/callback',
dataType: 'html',
data: submitted,
success: function (html) {
				$('#module_cart .middle').html(html);
			},
			complete: function () {
				var image = $('#image').offset();
				var cart  = $('#module_cart').offset();

				$('#image').before('<img src="' + $('#image').attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');

				params = {
					top : cart.top + 'px',
					left : cart.left + 'px',
					opacity : 0.0,
					width : $('#module_cart').width(),
					heigth : $('#module_cart').height()
				};

				$('#temp').animate(params, 'slow', false, function () {
					$('#temp').remove();
				});
			}
		});
	});
});
//--></script>
<script type="text/javascript"><!--
    function clearCart() {
        $.ajax({
            type: 'post',
            url: 'index.php?route=module/cart/clear',
            dataType: 'html',
            data: '&clearcart=true',
            success: function (html) {
                $('#module_cart .middle').html(html);
            },
        });           
    }
    //--></script>
<?php } ?>
conroller modul cart.php
Kod:
<?php
class ControllerModuleCart extends Controller {
	protected function index() {
		$this->language->load('common/header');
		$this->language->load('module/cart');

		$this->load->model('tool/seo_url');

    	$this->data['heading_title'] = $this->language->get('heading_title');

		$this->data['text_subtotal'] = $this->language->get('text_subtotal');
    	$this->data['text_cart'] = $this->language->get('text_cart');
    	$this->data['cart'] = (HTTP_SERVER . 'index.php?route=checkout/cart');
		$this->data['text_empty'] = $this->language->get('text_empty');

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

    	foreach ($this->cart->getProducts() as $result) {
        	$option_data = array();

        	foreach ($result['option'] as $option) {
          		$option_data[] = array(
            		'name'  => $option['name'],
            		'value' => $option['value']
          		);
        	}

      		$this->data['products'][] = array(
        		'name'     => $result['name'],
				'option'   => $option_data,
        		'quantity' => $result['quantity'],
				'stock'    => $result['stock'],
				'price'    => $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax'))),
				'href'     => $this->model_tool_seo_url->rewrite((HTTP_SERVER . 'index.php?route=product/product&product_id=' . $result['product_id'])),
      		);
    	}

    	$this->data['subtotal'] = $this->currency->format($this->cart->getTotal());

		$this->data['ajax'] = $this->config->get('cart_ajax');

		$this->id = 'cart';

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

		$this->render();
	}

	public function callback() {
		$this->language->load('common/header');
		$this->language->load('module/cart');

		$this->load->model('tool/seo_url');

    	$text_cart = $this->language->get('text_cart');
    	$cart = (HTTP_SERVER . 'index.php?route=checkout/cart');

		if ($this->request->server['REQUEST_METHOD'] == 'POST') {
			if (isset($this->request->post['option'])) {
				$option = $this->request->post['option'];
			} else {
				$option = array();
			}

      		$this->cart->add($this->request->post['product_id'], $this->request->post['quantity'], $option);

			unset($this->session->data['shipping_methods']);
			unset($this->session->data['shipping_method']);
			unset($this->session->data['payment_methods']);
			unset($this->session->data['payment_method']);
		}

		$output = '<table cellpadding="2" cellspacing="0" style="width: 100%;">';

    	foreach ($this->cart->getProducts() as $product) {
      		$output .= '<tr>';
        	$output .= '<td width="1" valign="top" align="right">' . $product['quantity'] . '&nbsp;x&nbsp;</td>';
        	$output .= '<td align="left" valign="top"><a href="' . $this->model_tool_seo_url->rewrite((HTTP_SERVER . 'index.php?route=product/product&product_id=' . $product['product_id'])) . '">' . $product['name'] . '</a>';
          	$output .= '<div>';

			foreach ($product['option'] as $option) {
            	$output .= ' - <small style="color: #999;">' . $option['name'] . ' ' . $option['value'] . '</small><br />';
            }

			$output .= '</div></td>';
			$output .= '</tr>';
      	}

		$output .= '</table>';
    	$output .= '<br />';
    	$output .= '<div style="text-align: right;">' . $this->language->get('text_subtotal') . '&nbsp;' .  $this->currency->format($this->cart->getTotal()) . '</div>';
$output .= '<a onclick="clearCart();" class="button"><span>' . $this->language->get('text_clear') . '</span></a>';
    	$output .= '<div style="text-align: center; margin-top: 10px;"><a href="' . $cart . '" class="button" style="text-decoration: none;"><span>' . $text_cart . '</span></a></div>';

		$this->response->setOutput($output, $this->config->get('config_compression'));
	}


public function clear() {
            $this->language->load('module/cart');
           
            if ($this->request->server['REQUEST_METHOD'] == 'POST') {
                if (isset($this->request->post['clearcart'])) {
                    $this->cart->clear();
                   
                    $output = '<div style="text-align: center;">' . $this->language->get('text_empty')  . '</div>';
           
                    $this->response->setOutput($output, $this->config->get('config_compression'));
                }
            }
        }
}
?>

turkish
Kod:
<?php
/* OpenCart 1.4.7 Turkish Ceviren eka7a - http://www.opencart-tr.com */

// Heading
$_['heading_title'] = 'Alışveriş Sepeti';

// Text 
$_['text_subtotal'] = 'Ara Toplam:';
$_['text_empty']    = '0 ürün var.';
$_['text_clear']    = 'Sepeti Boşalt';
?>
 

dedemir85

OpenCart-TR
Katılım
7 Haz 2010
Mesajlar
9
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

aynı sorun bendede var

!!!yardım!!!
 

mirac

OpenCart-TR
Katılım
7 Şub 2010
Mesajlar
1,383
Tepkime puanı
0
Puanları
36
Yaş
42
Konum
Beykoz____
Web sitesi
www.notebook-cantasi.com
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Gerekli hatanın çözümünü bulamadım.. Sisteminizi 1.4.8 e güncelleyiniz.. Bu modul standart olarak eklendi..
 

archil

OpenCart-TR
Katılım
11 Şub 2010
Mesajlar
59
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

tr dil dosyasının içindeki cart.php dosyasını atınca site açılmıyor orjinalini atıyorum yine açılmıyor silince açılıyor
 

mirac

OpenCart-TR
Katılım
7 Şub 2010
Mesajlar
1,383
Tepkime puanı
0
Puanları
36
Yaş
42
Konum
Beykoz____
Web sitesi
www.notebook-cantasi.com
RE: [KOD] Sepeti boşalt düğmesi ekleme..

\catalog\controller\module\cart.php Aç..

Bul..
Kod:
		$this->data['text_empty'] = $this->language->get('text_empty');


Altına ekle..
Kod:
    	 $this->data['text_remove'] = $this->language->get('text_remove');
		$this->data['text_confirm'] = $this->language->get('text_confirm');
		$this->data['text_view'] = $this->language->get('text_view');
		$this->data['text_checkout'] = $this->language->get('text_checkout');


Bul..
Kod:
	public function callback() {
		$this->language->load('module/cart');

		$this->load->model('tool/seo_url');
		
		if ($this->request->server['REQUEST_METHOD'] == 'POST') {
			if (isset($this->request->post['option'])) {
				$option = $this->request->post['option'];
			} else {
				$option = array();	
			}
			
      		$this->cart->add($this->request->post['product_id'], $this->request->post['quantity'], $option);
			
			unset($this->session->data['shipping_methods']);
			unset($this->session->data['shipping_method']);
			unset($this->session->data['payment_methods']);
			unset($this->session->data['payment_method']);			
		}


Değiştir..
Kod:
	public function callback() {
		$this->language->load('module/cart');

		$this->load->model('tool/seo_url');
		
		unset($this->session->data['shipping_methods']);
		unset($this->session->data['shipping_method']);
		unset($this->session->data['payment_methods']);
		unset($this->session->data['payment_method']);	
		
		if ($this->request->server['REQUEST_METHOD'] == 'POST') {
			
			if (isset($this->request->post['remove'])) {
	    		$result = explode('_', $this->request->post['remove']);
          		$this->cart->remove(trim($result[1]));
      		} else {
				if (isset($this->request->post['option'])) {
					$option = $this->request->post['option'];
				} else {
					$option = array();	
				}
				
      			$this->cart->add($this->request->post['product_id'], $this->request->post['quantity'], $option);
			}
		}


Bul..
Kod:
    	foreach ($this->cart->getProducts() as $product) {
      		$output .= '<tr>';
        	$output .= '<td width="1" valign="top" align="right">' . $product['quantity'] . '&nbsp;x&nbsp;</td>';
        	$output .= '<td align="left" valign="top"><a href="' . $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/product&product_id=' . $product['product_id']) . '">' . $product['name'] . '</a>';
          	$output .= '<div>';


Değiştir..
Kod:
    		foreach ($this->cart->getProducts() as $product) {
      			$output .= '<tr>';
        		$output .= '<td width="1" valign="top" align="left"><span class="cart_remove" id="remove_ ' . $product['key'] . '" />&nbsp;</span></td><td width="1" valign="top" align="right">' . $product['quantity'] . '&nbsp;x&nbsp;</td>';
        		$output .= '<td align="left" valign="top"><a href="' . $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/product&product_id=' . $product['product_id']) . '">' . $product['name'] . '</a>';
          		$output .= '<div>';



\catalog\view\theme\Kullandığınız Tema\stylesheet\stylesheet.css Aç..

En alta ekle..
Kod:
.cart_remove {
	margin-top: 3px;
	background: url('../image/list_remove_btn.gif') no-repeat left center transparent;
	padding-right:10px;
	cursor:pointer;
}
.cart_remove_loading {
	margin-top: 3px;
	background: url('../image/ajax_load.gif') no-repeat transparent;
	padding-right:10px;
}




\catalog\view\theme\Kullandığınız Tema\template\module\cart.tpl Aç..

Bul..
Kod:
<td valign="top" align="right" width="1"><?php echo $product['quantity']; ?>&nbsp;x&nbsp;</td>


Değiştir..
Kod:
        <td align="left" valign="top" width="1"><span class="cart_remove" id="remove_<?php echo $product['key']; ?>">&nbsp;</span><td valign="top" align="right" width="1"><?php echo $product['quantity']; ?>&nbsp;x&nbsp;</td>


Bul..
Kod:
<div class="bottom">&nbsp;</div>
</div>
<?php if ($ajax) { ?>
<script type="text/javascript"><!--
$(document).ready(function () {
	$('#add_to_cart').replaceWith('<a onclick="" id="add_to_cart" class="button">' + $('#add_to_cart').html() + '</a>');

	$('#add_to_cart').click(function () {
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart/callback',
			dataType: 'html',
			data: $('#product :input'),
			success: function (html) {
				$('#module_cart .middle').html(html);
			},	
			complete: function () {
				var image = $('#image').offset();
				var cart  = $('#module_cart').offset();
	
				$('#image').before('<img src="' + $('#image').attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');
	
				params = {
					top : cart.top + 'px',
					left : cart.left + 'px',
					opacity : 0.0,
					width : $('#module_cart').width(),  
					heigth : $('#module_cart').height()
				};		
	
				$('#temp').animate(params, 'slow', false, function () {
					$('#temp').remove();
				});		
			}			
		});			
	});			
});
//--></script>
<?php } ?>


Değiştir..
Kod:
<div class="bottom">&nbsp;</div>
</div>
<?php if ($ajax) { ?>
<script type="text/javascript" src="catalog/view/javascript/jquery/ajax_add.js"></script>
<?php } ?>

<script type="text/javascript"><!--

function getUrlParam(name) {
  var name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp(regexS);
  var results = regex.exec(window.location.href);
  if (results == null)
    return "";
  else
    return results[1];
}

$(document).ready(function () {
	$('.cart_remove').live('click', function () {
		if (!confirm('<?php echo $text_confirm; ?>')) {
			return false;
		}
		$(this).removeClass('cart_remove').addClass('cart_remove_loading');
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart/callback',
			dataType: 'html',
			data: 'remove=' + this.id,
			success: function (html) {
				$('#module_cart .middle').html(html);
				if (getUrlParam('route').indexOf('checkout') != -1) {
					window.location.reload();
				}
			}
		});
	});
});
//--></script>


\catalog\language\turkish\module\cart.php Aç..

Bul..
Kod:
$_['text_empty']    = '0 ürün var.';

Altına ekle..
Kod:
$_['text_confirm']  = 'Onaylıyor Musunuz?';


Modul olarak kurmak isteyenler bu dosyayı indirip anadizine atsın..

Kodları manuel eklemek isteyenler bu dosyayı anadizine atsınlar..


148 deki sepetten silme kodları düzenlenmiştir.. 1.4.4 ve 1.4.8 sürümünlerinde test edilmiştir..
 

Ekli dosyalar

  • catalog.zip
    22.5 KB · Görüntüleme: 75
  • Ekli dosya.zip
    15.8 KB · Görüntüleme: 36

öz_ak

OpenCart-TR
Katılım
21 Ocak 2010
Mesajlar
210
Tepkime puanı
0
Puanları
0
Yaş
44
Web sitesi
www.bitkiselsağlık.com
RE: [KOD] Sepeti boşalt düğmesi ekleme..

bu modüle 0 ürün var yerine bi resim eklesek nasıl olur ve nasıl olur :)
 

admin

Administrator
Yönetici
Katılım
13 Ağu 2009
Mesajlar
3,200
Tepkime puanı
1
Puanları
38
Yaş
38
Konum
Bursa
Web sitesi
www.opencart-tr.com
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Dil dosyasına 0 ürün var yerine <img src="resim adresi" alt="" /> yazarsan yazı yerine resim çıkar.
 

öz_ak

OpenCart-TR
Katılım
21 Ocak 2010
Mesajlar
210
Tepkime puanı
0
Puanları
0
Yaş
44
Web sitesi
www.bitkiselsağlık.com
RE: [KOD] Sepeti boşalt düğmesi ekleme..

kardeşim mükemmelsin sağolasın hemen denicem

on numara oldu sağolasın kardeşim
 

wiwaxia

OpenCart-TR
Katılım
20 Haz 2010
Mesajlar
13
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

mirac bu son vermiş olduğun modül ile gelişmiş sepet modülünü birlikte kullanamayız değil mi?

Yada bu son vermiş olduğun modüle ek olarak Sepetime git vb. buton ekleyebilir miyiz?
 

mirac

OpenCart-TR
Katılım
7 Şub 2010
Mesajlar
1,383
Tepkime puanı
0
Puanları
36
Yaş
42
Konum
Beykoz____
Web sitesi
www.notebook-cantasi.com
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Gelişmiş sepet modulu nedir ki anlamadım..

Sepetim ve kasaya git butonları için alttaki işlemi yapman lazım.. Java sistemi değiştiği için sayfa yenilenmeden çıkmıyor butonlar ama iş görür gibi..


\catalog\view\theme\Kullandığın tema\template\module\cart.tpl Aç..

Bul..
Kod:
    <div style="text-align: right;"><?php echo $text_subtotal; ?>&nbsp;<?php echo $subtotal; ?></div>

Altına Ekle..
Kod:
		<div style="text-align:center;clear:both;"><a href="index.php?route=checkout/cart">Sepetim</a> | <a href="index.php?route=checkout/shipping">Kasaya Git</a></div>
 

wiwaxia

OpenCart-TR
Katılım
20 Haz 2010
Mesajlar
13
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Bahsettiğim modül bu : http://forum.opencart-tr.com/thread-895.html

Gelişmiş Alışveriş Sepeti Modülü...

Gerçi bu modülde enteresan 3 den fazla(yada daha fazla) ürün ekleyince sepetine sayfayı kitliyor.(Yada ben bu modülün üzerine sepeti boşalt butonu ekleyince o tür sorun yaşadım.)
 

wiwaxia

OpenCart-TR
Katılım
20 Haz 2010
Mesajlar
13
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

Verdiğin dosyanın haricinde birde .css yi editlemek gerekiyor sanırım.Yoksa butonlar şu şekilde çıkıyor.

text_view
text_checkout
 

@RTHuR

OpenCart-TR
Katılım
22 Nis 2010
Mesajlar
48
Tepkime puanı
0
Puanları
0
RE: [KOD] Sepeti boşalt düğmesi ekleme..

bende sepeti bosat buyonu buton olarak cıkıyor hemde calısmıyor hemde ingilizce yazıyor halbuki 1 sayfadaki resim x olarak carpı koymuslar ve tıklandı an sayfa degişmeden dönen yuvarlak ile siliyor cok hos bence ama ben beceremedim bunun hazır yapılmıs kodu yokmudur rica edebilirmiyim varsa

http://img375.imageshack.us/img375/7886/sepeteekle.jpg
 
Üst