Giuse70 Posted July 21, 2015 Share Posted July 21, 2015 (edited) Salve, sono alle prime armi con Prestashop, il quesito è: nel carrello come faccio a non far visualizzare lo sconto fatto sul prodotto? Allego immagine... Grazie per la collaborazione :-) Edited July 22, 2015 by Giuse70 (see edit history) Link to comment Share on other sites More sharing options...
giuliopowa Posted July 21, 2015 Share Posted July 21, 2015 ciao,devi modificare il file order-carrier.tpl del tuo tema , basta che togli o commenti le parti in cui richiamano il prezzo scontato e anche l'ammontare o la percentuale dello sconto Link to comment Share on other sites More sharing options...
Giuse70 Posted July 21, 2015 Author Share Posted July 21, 2015 Ciao Giuliopowa, anzitutto grazie per la collaborazione. Ho trovato ed aperto il file ma purtroppo di codice non capisco praticamente nulla :-( non riesco a trovare le righe da editare.... potresti darmi ulteriori info? Link to comment Share on other sites More sharing options...
giuliopowa Posted July 21, 2015 Share Posted July 21, 2015 ciao , ho sbagliato a scrivere i file , in realtà sono shopping-cart.tpl e shopping-cart-product-line.tpl Link to comment Share on other sites More sharing options...
giuliopowa Posted July 21, 2015 Share Posted July 21, 2015 facciamo così , nel file shopping-cart-product-line.tpl copi tutto quello che c'è dentro questo tag :<td class="cart_unit"> . . . </td>e poi ti dico cosa cancellare. Link to comment Share on other sites More sharing options...
Giuse70 Posted July 21, 2015 Author Share Posted July 21, 2015 La riga esatta non l'ho trovata ma dovrebbe essere questa parte quella che mi chiedi: <td class="cart_unit" data-title="{l s='Unit price'}"> <ul class="price text-right" id="product_price_{$product.id_product}_{$product.id_product_attribute}{if $quantityDisplayed > 0}_nocustom{/if}_{$product.id_address_delivery|intval}{if !empty($product.gift)}_gift{/if}"> {if !empty($product.gift)} <li class="gift-icon">{l s='Gift!'}</li> {else} {if !$priceDisplay} <li class="price{if isset($product.is_discounted) && $product.is_discounted && isset($product.reduction_applies) && $product.reduction_applies} special-price{/if}">{convertPrice price=$product.price_wt}</li> {else} <li class="price{if isset($product.is_discounted) && $product.is_discounted && isset($product.reduction_applies) && $product.reduction_applies} special-price{/if}">{convertPrice price=$product.price}</li> {/if} {if isset($product.is_discounted) && $product.is_discounted && isset($product.reduction_applies) && $product.reduction_applies} <li class="price-percent-reduction small"> {if !$priceDisplay} {if isset($product.reduction_type) && $product.reduction_type == 'amount'} {assign var='priceReduction' value=($product.price_wt - $product.price_without_specific_price)} {assign var='symbol' value=$currency->sign} {else} {assign var='priceReduction' value=(($product.price_without_specific_price - $product.price_wt)/$product.price_without_specific_price) * 100 * -1} {assign var='symbol' value='%'} {/if} {else} {if isset($product.reduction_type) && $product.reduction_type == 'amount'} {assign var='priceReduction' value=($product.price - $product.price_without_specific_price)} {assign var='symbol' value=$currency->sign} {else} {assign var='priceReduction' value=(($product.price_without_specific_price - $product.price)/$product.price_without_specific_price) * -100} {assign var='symbol' value='%'} {/if} {/if} {if $symbol == '%'} {$priceReduction|string_format:"%.2f"|regex_replace:"/[^\d]0+$/":""}{$symbol} {else} {convertPrice price=$priceReduction} {/if} </li> <li class="old-price">{convertPrice price=$product.price_without_specific_price}</li> {/if} {/if} </ul> </td> Link to comment Share on other sites More sharing options...
giuliopowa Posted July 22, 2015 Share Posted July 22, 2015 ciao , prova a fare una copia del tuo file e poi aggiornalo con questo. <td class="cart_unit" data-title="{l s='Unit price'}"> <ul class="price text-right" id="product_price_{$product.id_product}_{$product.id_product_attribute}{if $quantityDisplayed > 0}_nocustom{/if}_{$product.id_address_delivery|intval}{if!empty($product.gift)}_gift{/if}"> {if !empty($product.gift)} <li class="gift-icon">{l s='Gift!'}</li> {else} {if !$priceDisplay} <li class="price{if isset($product.is_discounted) && $product.is_discounted && isset($product.reduction_applies) && $product.reduction_applies} special-price{/if}">{convertPrice price=$product.price_wt}</li> {else} <li class="price{if isset($product.is_discounted) && $product.is_discounted && isset($product.reduction_applies) && $product.reduction_applies} special-price{/if}">{convertPrice price=$product.price}</li> {/if} </li> {/if} </ul> </td> Link to comment Share on other sites More sharing options...
Giuse70 Posted July 22, 2015 Author Share Posted July 22, 2015 Buongiorno, fatto ma andando al carrello ho una pagina bianca :-( Link to comment Share on other sites More sharing options...
giuliopowa Posted July 22, 2015 Share Posted July 22, 2015 prova questo , se no puoi mettere il link del sito con un account di prova ?? <td class="cart_unit"> <span class="price" id="product_price_{$product.id_product}_{$product.id_product_attribute}_{$product.id_address_delivery|intval}{if !empty($product.gift)}_gift{/if}"> {if !empty($product.gift)} <span class="gift-icon">{l s='Gift!'}</span> {else} {if !$priceDisplay} {convertPrice price=$product.price_wt} {else} {convertPrice price=$product.price} {/if} {/if} </span> </td> Link to comment Share on other sites More sharing options...
giuliopowa Posted July 22, 2015 Share Posted July 22, 2015 (edited) ah controlla anche la prima modifica che ti ho scritto , quando le frasi vanno a caporiga devi rimetterle giuste se no esce errorema con l'ultima modifica dovrebbe funzionare Edited July 22, 2015 by giuliopowa (see edit history) Link to comment Share on other sites More sharing options...
Giuse70 Posted July 22, 2015 Author Share Posted July 22, 2015 Grande Giuliopowa! La seconda soluzione è perfetta!!! Ti ringrazio moltissimo Ho altre 2 cose da sistemare... ma meglio che apra un altro post... altrimenti si crea confusione. devo fare qualcosa per segnalare che abbiamo risolto? Link to comment Share on other sites More sharing options...
giuliopowa Posted July 22, 2015 Share Posted July 22, 2015 Prego sono contento !!si devi scrivere [RISOLTO] nel titolo , per farlo vai nel primo messaggio , fai edit poi more reply option e da li modifichi il titolo . 1 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