Jump to content

(Solucionado) - Problema con cantidad


Recommended Posts

Hola soy nueva en esto y me surgen varios problemas. A ver si alguien me puede ayudar con este.

Tengo la version 1.5.6 y el tema freedesing.

 

Mi producto se vende en cantidades 200, 300, 500...

Yo he creado un atributo que es cantidad y todo va bien, pero el problema es que tengo que eliminar la casilla cantidad que viene por defecto.

Os dejo una imagen.

 

Gracias.

post-765685-0-86400700-1395079925_thumb.png

Edited by manuelajulia (see edit history)
Link to comment
Share on other sites

Para todos los productos.

 

Pues, en ese caso, fichero:

/themes/plantilla/product.tpl

Busca esto:

	<!-- quantity wanted -->
			<p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) OR $virtual OR !$product->available_for_order OR $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}" size="2" maxlength="3" {if $product->minimal_quantity > 1}onkeyup="checkMinimalQuantity({$product->minimal_quantity});"{/if} />
			</p>

y dejalo por ejemplo asi:

{* 

	<!-- quantity wanted -->
			<p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) OR $virtual OR !$product->available_for_order OR $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}" size="2" maxlength="3" {if $product->minimal_quantity > 1}onkeyup="checkMinimalQuantity({$product->minimal_quantity});"{/if} />
			</p> *}

o añade por ejemplo, en el fichero:

/themes/plantilla/css/global.css

Esto:

#product #quantity_wanted_p {
display: none !important;
}
Link to comment
Share on other sites

Muchisimas gracias, ya lo he solucionado. Menudo descanso

Un placer ayudarte y servirte !

 

PD: Como he visto que has añadido la palabra "Solucionado" al titulo del tema, procedo a cerrar el tema.

 

Saludos !

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...