Ernesto-NowWeb Posted October 2, 2020 Share Posted October 2, 2020 Ciao a tutti, come da titolo ho bisogno di rimuovere i costi di spedizione che visualizzo nel totale articoli del carrello: Il totale articoli è in realtà 240,00€ (200 X 1,20€), a questi vengono aggiunti 9,00 di spedizione che vengono comunque riportati sotto in "di cui spedizione". Come faccio a visualizzare l'importo esatto del totale articoli? devo lavorare sui file template? se si quali? Vi è già capitato? O esiste un opzione in Presta che ancora non conosco? Grazie. Link to comment Share on other sites More sharing options...
ziobudda Posted October 2, 2020 Share Posted October 2, 2020 Perchè lo dovresti togliere ? 240€ sono i prodotti e 9€ sono le spedizioni. Oppure non vuoi far pagare le spedizioni ? M. Link to comment Share on other sites More sharing options...
Ernesto-NowWeb Posted October 2, 2020 Author Share Posted October 2, 2020 Ciao ziobudda, le spedizioni devono essere pagate, è solo un fattore visivo quello che voglio modificare, il risultato che vorrei è: TOTALE ARTICOLI 200 articoli 240,00€ spedizione 9,00€ ________________________ Totale (i.e.) 249,00€ Link to comment Share on other sites More sharing options...
ziobudda Posted October 2, 2020 Share Posted October 2, 2020 Devi agire a livello di file di template. Dentro a cart o catalog c'è il file che ti interessa M. Link to comment Share on other sites More sharing options...
Ernesto-NowWeb Posted October 2, 2020 Author Share Posted October 2, 2020 trovato il file, la porzione di codice dovrebbe essere questa: <div class="card-block"> {foreach from=$cart.subtotals item="subtotal"} {if $subtotal.value && $subtotal.type !== 'tax'} <div class="cart-summary-line" id="cart-subtotal-{$subtotal.type}"> <span class="label{if 'products' === $subtotal.type} js-subtotal{/if}"> {if 'products' == $subtotal.type} {$cart.summary_string} {else} {$subtotal.label} {/if} </span> <span class="value">{$subtotal.value}</span> {if $subtotal.type === 'shipping'} <div><small class="value">{hook h='displayCheckoutSubtotalDetails' subtotal=$subtotal}</small></div> {/if} </div> {/if} {/foreach} </div> è del template applicato, probabilemnte è il tema che fa questo calcolo al carrello, non so se normalmente la versione 1.7.5.2 si comporta così. Se sostituisco questa porzione di codice con quella del file del template classic risolvo? Link to comment Share on other sites More sharing options...
Ernesto-NowWeb Posted October 3, 2020 Author Share Posted October 3, 2020 Ho confrontato i file del tema classic e del tema applicato e sono identici, quindi il problema presumo si altrove... Ho la versione 1.7.5.2, potrebbe essere un problema di versione? Consigli su cos'altro controllare? Grazie. 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