Cs-cart - How to seperate functionaly From add to cart bundle into Add to cart , Wishlist and Notification - smarty

I am a new to cs-cart. Not familiar with it . I need to separate wishlist, add to cart and notification functionality. When I use default cs cart add to cart bundle then comming three Add to cart , Wishlist and Notification buttion But I need to only one.
<div class="bk-product-list__control">
{assign var="add_to_cart" value="add_to_cart_`$obj_id`"}
{$smarty.capture.$add_to_cart nofilter}
</div>
This code showing three button add to cart , wishlist and Notification
I want to seperate

Related

How to add option in Shopping cart

enter image description here
I need to add option for all product and I want to display in shopping cart
how do i do that
Thank You

Magento : change price in cart on the fly

We have 2 observers to change product price in the cart : checkout_cart_product_add_after to change price the first time the product is added to cart, and checkout_cart_update_items_after to change price for each item in the cart (when user click the "Modify cart" button on cart page). Both are running OK.
My question : On the cart page, when user clicks the link "Edit" to edit the product in product page (so he can change quantity, ...) and clicks the "Update cart" button, this update button does not read any observer to refresh price. Only the quantity is refreshed.
How to force this "Update cart" (on product page) action to process the code in observer? Is there another observer for this? The code in checkout_cart_product_add_after is executed just the first time the product is added to the cart?
Thanks.
Copy this file:
app\code\core\Mage\Checkout\controllers\CartController.php
To:
app\code\local\Mage\Checkout\controllers\CartController.php
Go to:
public function updateItemOptionsAction()
{
Add your custom logic or fire off a custom event you can listen to and run the same logic on.
Don't forget to flush ;)

How do I implement a Shopping Cart with Empty, Update Quantity, and Submit buttons?

I have a page that displays the contents of a shopping cart in a table. The Quantity field is an editable text box, allowing the user to update its value. I need three buttons - one for Empty cart, one for Update cart, and one for Submit cart.
My ShoppingCartController has these methods:
postCartItem($id)
putUpdateCart()
deleteCartItem($id)
deleteCart
The submit button takes it to the store method of the OrderController resource controller
I'm going out of my mind how to do this RESTfully.
Any tips/best practices would really be appreciated.

magento : How to add custom form in cart page?

I want to add gift message option at cart page. and I want to pass on filled text.
want this detail in control panel.

magento how to add Recurring Profile and simple product to cart

first i have to add simple product to cart but its doesn’t go to shopping cart page . it should be redirect to a category page . then in the category page i have to add a recurring profile to cart .
i didn’t know how to redirect to category page and i cant add this two products(recurring profile and simple product) to cart.
i cant add more than one product in cart .
any one having solution for this . . .
please help me
i am a new one to magento
pls replay me as soon as possible with correct solution
Recurring products are "nominal items" in Magento which have several restrictions and qualities. One of the main restrictions is the inability to add more than one item to your cart. From the official Magento site:
Currently no more than one nominal item can be added to the shopping cart at a time. A nominal item and a regular item cannot be added to the shopping cart simultaneously. This happens because of the current order submission rules – while an order in Magento is submitted only once and regular items must be submitted as an order, each recurring profile must be submitted separately.
Source: http://www.magentocommerce.com/knowledge-base/entry/working-with-recurring-profiles
I have tried before to scope out how to add more than one recurring profile to your cart, or add it with other items and believe me - it's really not worth the hassle.

Resources