Jump to content

plus button not works in product list


Recommended Posts

hi everyone,

 

i ve follow this topic https://www.prestashop.com/forums/topic/332513-solvedhow-to-add-quantity-in-product-list-16/?p=1823659

to add quantity field in product list

 

i use prestashop 1.6 and default theme

 

everything gone fine exept for plus button doesn't works (minus button works fine)

<p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) || !$product->available_for_order || $PS_CATALOG_MODE} style="display: true;"{/if}>
   <label>{l s='Quantity:'}</label>
      <input type="text" name="qty_{$product.id_product|intval}" id="quantity_to_cart_{$product.id_product|intval}" 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_{$product.id_product|intval}" class="btn btn-default button-minus product_quantity_down" style="clear:none; padding:5px;">
           <i class="icon-minus"></i></a>
                                
         <a href="#" data-field-qty="qty_{$product.id_product|intval}" class="btn btn-default button-plus product_quantity_up " style="clear:none; padding:5px;">
           <i class="icon-plus"></i></a>
                                
              <span class="clearfix"></span>
</p>
Edited by gantz37 (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...