Jump to content

Замена кнопки "В корзину"


Lemuba
 Share

Go to solution Solved by Blast,

Recommended Posts

Всем привет! Появилась необходимость сделать следующее:

Например как на Озоне, добавил товар в корзину, а при повторном нажатии на кнопку "В корзину" был бы переход в саму корзину а не добавление товара в корзину. Может кто знает как это сделать? Или модуль может какой то есть?

 

Заранее всем спасибо!

Link to comment
Share on other sites

  • Solution
$(document).on('click', '[onclick^="cart.add"]', function(){
  $(this).attr('onclick', 'window.location="/index.php?route=checkout/cart"');
})

для каталога/категорий/модулей

 

$('#button-cart').on('click', function(){
  $(this).off().on('click', function(){window.location="/index.php?route=checkout/cart"});
});

для карточки товара

 

скрипты можно вставить в catalog/view/javascript/common.js или в подобный js файл шаблона

Link to comment
Share on other sites

В 31.07.2024 в 15:50, Blast сказал:
$(document).on('click', '[onclick^="cart.add"]', function(){
  $(this).attr('onclick', 'window.location="/index.php?route=checkout/cart"');
})

для каталога/категорий/модулей

 

$('#button-cart').on('click', function(){
  $(this).off().on('click', function(){window.location="/index.php?route=checkout/cart"});
});

для карточки товара

 

скрипты можно вставить в catalog/view/javascript/common.js или в подобный js файл шаблона

Круто! Спасибо большое! Теперь при повторном нажатии переходит в корзину!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...