Jump to content

Question about setting quantities


mission

Recommended Posts

Hello everyone, I am new to using Prestashop and before I explore any further maybe someone here can help me out so I can make sure that this is the right application for me and my business.

 

I own a printing company and we produce customer stickers for our customers. We have set quantities for our products ie. 100, 250, 500, 1000, etc.

 

We also don't have an inventory since everything is custom made. Is there a way to set this up to work? Ideally I'd like a drop down menu to have the quantities in. The only thing that I have figured out is adding the quantity values in the combination section. This works however the page still wishes you type in a quantity. I do not want our customers to be able to type in a quantity. 

 

Is this possible with Prestashop? I hope someone can help me out!! Thank you for your time.

 

-Shawn

Link to comment
Share on other sites

Hello

 

Are you looking for something like this

 

http://adultskunk.co.uk/en/home/16-my-stickers.html#/stickers-100

 

Paul

Hi Paul, I actually was able to create this exactly, however, I want to get rid of the quantity text box. I feel it will confuse customers. I only want the drop down to be the quantity selector. Make sense? Thank you for your response!

Link to comment
Share on other sites

  • 1 month later...

Hi Paul, I actually was able to create this exactly, however, I want to get rid of the quantity text box. I feel it will confuse customers. I only want the drop down to be the quantity selector. Make sense? Thank you for your response!

Goto themes/your-theme/product.tpl and comment out the following code around line 316

{if !$PS_CATALOG_MODE}
						<p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}>
							<label>{l s='Quantity'}</label>
							<input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" />
							<a href="#" data-field-qty="qty" class="btn btn-default button-minus product_quantity_down">
								<span><i class="icon-minus"></i></span>
							</a>
							<a href="#" data-field-qty="qty" class="btn btn-default button-plus product_quantity_up">
								<span><i class="icon-plus"></i></span>
							</a>
							<span class="clearfix"></span>
						</p>
						{/if}
Link to comment
Share on other sites

×
×
  • Create New...