OpenCart: v1.5.1
Install: Clean
Hi,
My client has a need to do two things which I see as being linked. First he sells items in his retail store that can not be sold online (chainsaw for example) however, he obviously needs these items to appear on the site, but the button needs to be removed thus preventing ordering.
He also wants to be able to take an order for the an item but force that item to be collect in store only.
Is this possible to achieve any of this from the admin settings or does it require a mod? If so Is there such a mod available?
I'm hoping you can help, please shout up any advice you may have - all help is appreciated.
Ian
Hi,
I really need some help with this one, would anyone want to quote for doing the mod?
Hopefully the offer of payment will spark someone to reply to this request.
Looking forward to your replies.
I really need some help with this one, would anyone want to quote for doing the mod?
Hopefully the offer of payment will spark someone to reply to this request.
Looking forward to your replies.
For items that cannot be sold online, you could set their stock to 0 and use a mod like this:
http://www.opencart.com/index.php?route ... on_id=2945
For forcing items to be collected in store, I would just create an option that says "Pickup Options" and have the only option be "Pickup in store". Then add a note saying such in the product description. As long as the customer knows, the admin can ship whatever he needs to when the order comes in.
http://www.opencart.com/index.php?route ... on_id=2945
For forcing items to be collected in store, I would just create an option that says "Pickup Options" and have the only option be "Pickup in store". Then add a note saying such in the product description. As long as the customer knows, the admin can ship whatever he needs to when the order comes in.
Hi, thanks for that.
I have come up with a slightly different idea. I have created a new stock status called 'Instore Item Only' and I have set my products to that status. Then on the product page I have added this bit of code:
<?php
if ( $stock == "Instore item only" ) {
echo "<h3>Sorry this item is restricted and can only be sold instore</h3><br />
<style type='text/css'>
<!--
.cart {
display:none;
}
-->
</style>";
}
?>
That will then hide all the contents of the 'cart' <div>. This works a treat, except on the search results page where the $stock variable isn't returned to the page.
Do you know how or where I can set the stock item variable so I can call it back on the search result page and also the product category list?
All help very much appreciated
Ian
I have come up with a slightly different idea. I have created a new stock status called 'Instore Item Only' and I have set my products to that status. Then on the product page I have added this bit of code:
<?php
if ( $stock == "Instore item only" ) {
echo "<h3>Sorry this item is restricted and can only be sold instore</h3><br />
<style type='text/css'>
<!--
.cart {
display:none;
}
-->
</style>";
}
?>
That will then hide all the contents of the 'cart' <div>. This works a treat, except on the search results page where the $stock variable isn't returned to the page.
Do you know how or where I can set the stock item variable so I can call it back on the search result page and also the product category list?
All help very much appreciated
Ian
Who is online
Users browsing this forum: No registered users and 94 guests