Mistcpanda Posted April 7, 2012 Share Posted April 7, 2012 Salve, vorrei visualizzare l'effettiva quantità del prodotto disponibile in magazzino nella relativa scheda del prodotto invece di scrivere semplicemente un testo (es. disponibile). Allego immagine della scheda che sto parlando Cercando nella rete ho solo trovato l'esatto opposto ovvero come disattivare questo tipo di visualizzazione ma a me mi permette di scrivere un testo e non mi visualizza un effettivo numero. Link to comment Share on other sites More sharing options...
Mistcpanda Posted April 8, 2012 Author Share Posted April 8, 2012 Ho trovato queste diferenze come mai? Link to comment Share on other sites More sharing options...
majezzi Posted April 10, 2012 Share Posted April 10, 2012 Ciao prova cosi': nel product.css del tuo tema,... cerca: /* pQuantityAvailable */ #pQuantityAvailable {display:none !important;} e cambialo cosi: /* pQuantityAvailable */ #pQuantityAvailable {} poi sempre con il css puoi personalizzare caratteri e colori. vai di presta Link to comment Share on other sites More sharing options...
Mistcpanda Posted April 10, 2012 Author Share Posted April 10, 2012 Ti ringrazio tantissimo, ma la voce che tu mi segnali non è presente nel mio product.css ne in quello base di prestashop, ti copio il mio codice: /* product.tpl */ #primary_block #pb-right-column { width: 310px; float: left } #primary_block #image-block { border: #d0d1d5 solid 1px; height: 300px; width: 300px } #primary_block #image-block img#bigpic { cursor: pointer; height: 300px; width: 300px } #primary_block ul#usefull_link_block { list-style-type: none; margin-top: 1em } #primary_block ul#usefull_link_block li { margin: 0.5em 1em 0.5em 0; display: block } #primary_block ul#usefull_link_block li a, #primary_block ul#usefull_link_block span.span_link, #primary_block ul#usefull_link_block span.span_link:hover { text-decoration: none; color: #76839b; font-size: 0.9em; background: white url('../img/bullet_alt.jpg') no-repeat top left; padding-left: 15px; height: 15px } #primary_block #pb-left-column { float: left; margin-left: 1.1em; width: 233px } #primary_block #short_description_block { background: #e5e6e7 url('../img/product-short-desc-bg.gif') repeat-x top left; border: 1px #d0d3d8 solid; padding: 0.7em; margin-bottom: 1.5em } #primary_block #color_picker p { margin-bottom: 0.4em; padding: 0 } #primary_block #color_picker { padding: 0.6em 0.7em 0.4em 0.7em; background: #e5e6e7 url('../img/product-short-desc-bg.gif') repeat-x top left; border: 1px #d0d3d8 solid; margin-bottom: 1.5em } #primary_block #color_to_pick_list li { display: inline; float: left; margin: 0 0.4em 0.4em 0 } #primary_block a.color_pick { display: block; width: 20px; height: 20px; border: 1px solid #666; cursor: pointer } #primary_block a.color_pick:hover { border: 1px solid #000 } #primary_block a#color_all { cursor: pointer } #primary_block #image-block img#bigpic.jqzoom { cursor: crosshair; position: relative } #primary_block p.buttons_bottom_block { margin: 0 } #primary_block p.buttons_bottom_block a, #primary_block p.buttons_bottom_block input { margin: 0.9em auto 0 auto } #primary_block #short_description_content { margin-bottom: 0.5em } #primary_block #buy_block { background: #f1f2f4 url('../img/product-buy-bg.gif') repeat-x top left; font-size: 1.1em; padding: 0.7em; color: #374853; border: 1px #d0d3d8 solid; margin-bottom: 1.5em } #primary_block #buy_block p { padding: 0; margin-top: 0; clear: both } #primary_block #buy_block img.on_sale_img { float: left } #primary_block #buy_block span.on_sale { color: #da0f00; text-transform: uppercase; font-weight: bold; float: right } #primary_block #buy_block span.discount { color: #da0f00; text-transform: uppercase; font-weight: bold; float: right } #primary_block #buy_block span.our_price_display { float: right } #primary_block #buy_block span#availability_label { float: left; margin-right: 1em } #primary_block #buy_block label { text-align: right } #primary_block #buy_block label,#primary_block #buy_block select { display: block; width: 50%; float: left; padding-top: 5px; } #primary_block div#attributes p, #quantity_wanted_p { clear: left; height: 2em } #primary_block div#attributes p, #minimal_quantity_wanted_p { clear: left; text-align: center } /* prices */ #primary_block #buy_block p.price { font-size: 1.05em; text-align: right } #primary_block #buy_block span#pretaxe_price { font-size: 0.75em; text-align: right } #primary_block #buy_block p#old_price { font-size: 0.8em; text-align: right; text-decoration: line-through } #primary_block #buy_block p#reduction_percent { color: #da0f00; font-size: 0.75em; text-align: right } #primary_block #buy_block p.price-ecotax { font-size: 0.75em; text-align: right } #admin-action { color: #374853; background-color: #DFFAD3; margin-bottom:10px; padding: 4px; border: 1px solid #72CB67 } #admin-action input.exclusive { float: right } .product_accessories_price { margin-top: 5px } Devo aggiungerlo, se si dove? Link to comment Share on other sites More sharing options...
majezzi Posted April 11, 2012 Share Posted April 11, 2012 apporc.... io sto' lavorando sulla 1.5.. guardando una vecchia installazione pero',...sul product.tpl ho questa stringa.... <!-- number of item in stock --> {if ($display_qties == 1 && !$PS_CATALOG_MODE && $product->available_for_order)} <p id="pQuantityAvailable"{if $product->quantity <= 0} style="display: none;"{/if}> <span id="quantityAvailable">{$product->quantity|intval}</span> <span {if $product->quantity > 1} style="display: none;"{/if} id="quantityAvailableTxt">{l s='item in stock'}</span> <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='items in stock'}</span> </p> {/if} ( salva la tua e sostituiscila ) abilita la ricompilazione e prova...poi fammi sapere!! Link to comment Share on other sites More sharing options...
Mistcpanda Posted April 11, 2012 Author Share Posted April 11, 2012 Ti ringrazio moltissimo, ti chi chiedo ancora un po di aiuto perchè ora mi succedono due cose strane. 1) Con quantita in stock positiva sulla scheda mi appare scritto "6 articoli non disponibili" 2) Con quantità in stock negative (prenotati): "Attenzione: Ultimi articoli in magazzino!" a parte che non si vede la quantità, non ho abilitato tale funzione. Che devo fare? Link to comment Share on other sites More sharing options...
majezzi Posted April 12, 2012 Share Posted April 12, 2012 Uhm,.... ho dato un'occhiata veloce e mi sembra solo un problema di traduzione,.. vai nell'admin>strumenti>traduzioni seleziona italiano alla voce product controlla items in stock mi sa' che ce' scritto non disponibili......di sicuro.... poi fammi sapere.. Link to comment Share on other sites More sharing options...
Mistcpanda Posted April 12, 2012 Author Share Posted April 12, 2012 Il problema (1) si è risolito andando a correggere la traduzione come mi avevi suggerito. Per il problema (2) diciamo che posso risolvere negando le prenotazioni, che nel mio caso non è un grosso danno, ma è un peccato, se trovo in futuro soluzioni le posto qui. Grazie della pazienza e di tutto l'aiuto. A Buon Rendere... Link to comment Share on other sites More sharing options...
majezzi Posted April 12, 2012 Share Posted April 12, 2012 Ah si',..porc,..sono fuso,.... per il secondo problema,..controlla nell'admin>preferenze>prodotti alla voce Mostra le ultime quantità quando la quant. è inferiore a: mettila a zero,...cosi' se hai un prodotto solo ti indichera' 1 Prodotto Disponibile poi mi dirai se ho capito bene,... Link to comment Share on other sites More sharing options...
Mistcpanda Posted April 12, 2012 Author Share Posted April 12, 2012 Lo gia impostato a 0, che dovrebbe in teoria disabilitarlo, ma sembra non funzionare. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now