riptor7364
Total Posts: 9
Joined: 2010-10-31
im looking for way to flag a product with something like “reserve now for in-store pickup”, so its basically held for that person in the store for a determined period of time untill they pick it up. this may or may not require someone to put money down but i would assume an account would still need to be made and verified for this to go through.
also, is it possible to flag a product as available, but ONLY for in-store pickup, as in the product cannot be shipped.
does magento support features like this? if not, does anyone know of any extensions that do?
Posted: November 1 2010
| top
jerrykelleher
Total Posts: 2
Joined: 2010-07-23
I need this as well!!!!
Posted: November 1 2010
| top
| # 1
Leanne78
Total Posts: 6
Joined: 2009-11-30
High Wycombe, Bucks
I need this too. Has anybody found a solution for this?
Thanks.
Posted: April 4 2011
| top
| # 2
satish
Total Posts: 815
Joined: 2008-03-24
34,mantri Sadan,Shivaji Nagar,Nagpur,MS,India 4400
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
if ($request->getAllItems()) {
foreach ($request->getAllItems() as $item) {
if ($item->getProduct()->isVirtual() || $item->getParentItem()) {
continue;
}
if ($item->getHasChildren() && $item->isShipSeparately()) {
foreach ($item->getChildren() as $child) {
if ($child->getFreeShipping() && !$child->getProduct()->isVirtual()) {
$freeBoxes += $item->getQty() * $child->getQty();
}
Has some code.
If this is modified and here we check items for store pickup only and if found disable shipping.
Also we will have to apply same code or similar logic in all shipping modules activated.
Satish
Signature
Magento Certified developer : http://www.magentocommerce.com/certification/directory/dev/14790/
Customize Magento: http://www.oscprofessionals.com/oscommerce/magento-customization.html
Multistore Demo(website) : http://www.oscprofessionals.com/oscommerce/multistore-magento.html
Feel Free to contact Me for evaluating your Magento Site
Posted: September 12 2011
| top
| # 5
jamzim
Total Posts: 1
Joined: 2012-01-04
I also need this. If any one get me help then please…
Posted: January 5 2012
| top
| # 6
cindymefield
Total Posts: 10
Joined: 2012-01-18
I also need this. Can anybody help?
Posted: March 5 2012
| top
| # 8
jonaj
Total Posts: 8
Joined: 2012-09-29
Can i get mopre details ?Not so clear ....
Posted: September 30 2012
| top
| # 14