Details
This magento extension add time duration do product added to shopping cart. This means that, according to stock, the product is holded for x minutes for each customer. With this module, you cannot have more prodcut than you have in stock quantity.
The module works this way:
- customer adds product to shopping cart
- a countdown is instanciated for the product
- unless the customer buy or change de quantity of the product in shopping cart, the product is automaticcaly removed from the shopping cart while countdown reaches 00:00 minutes
You may also be interested in the following product(s)
J2T Category Schedule
€35.99
|
- v. 1.0.5: fixing config.xml file (remove commented out rewrite)
- v. 1.0.4: fixing configuration issue
- v. 1.0.3: implementing new feature - it's now possible to process configurable product
- v. 1.0.2: fixing bug under magento 1.5.x
- v. 1.0.1: new feature introduced. Now you can decide to remove the product or not from shopping cart.
- v. 1.0.0: introducing the extension
INSTALLATION GUIDE
Uncompress module to your magento root directoryCopy all module template files (xml layout file + template folder) from the module to your custom template directoryFlush your magento cacheLog out and log back to admin
The template files to be copied are :
- frontend/default/default/layout/j2tproducthold.xml
- frontend/default/default/template/j2tproducthold
Our templates are based on base template. If you are using deeply different custom template, please remove j2tproducthold.xml layout file and in your template files, everytime you want to add countdown entries, please add the following lines:
<?php if(Mage::getConfig()->getModuleConfig('J2t_Producthold')->is('active', 'true')) :?>
<?php echo $this->__('On hold for %s minutes',Mage::helper('j2tproducthold')->getHoldTimeQuoteItem($_item));?>
<?php endif;?>
Note that you can only use this feature on shopping cart listing pages.
This module is overriding checkout cart controller. If you have other module doing this, please modify the other module extends entry for class.To check this, go in app/code/community & app/code/local and type the following command under linux: grep -R " Mage_Checkout_CartController"If you find another module modifying the controller, please contact us.

