Jump to content
  • 0

Koszyk konfiguracja usuwanie pozycji


lukasz_1410

Question

Witam.

W innym temacie poruszyłem problem z koszykiem który ciągle jest pusty podczas podsumowania:

 

http://www.prestashop.com/forums/topic/243851-koszyk-nie-dziala-ratunku/page-2?do=findComment&comment=1441666

 

Jeśli ktoś zna rozwiązanie z góry dzięki za pomoc. Już wiem że nie ma co w kodzie grzebać, bo dodanie jednej linijki kodu a potem jej usunięcie nie powoduje że wszystko wróci do funkcjonowania jak wcześniej.

 

Stąd moje pytanie (już boje sie cokolwiek zmieniać) czy da się z podsumowania koszyka usunąć 2 pozycje (strasznie mylące bo podają wartości netto co zwykłego klienta w ogóle nie interesuje)

 

Chce żeby było tylko suma za produkty, cena dostaw i suma za całość - czerwone do wywalenia:

 

koszyk.PNG

 

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

ok, wszystkich zmian których trzeba dokonać związane są z plikiem shopping-cart.tpl

 

podsumowanie zaczyna się mniejwięcej tak:

{if $use_taxes}
				<tr class="cart_total_price">
					<td colspan="6">
						{if $display_tax_label}
							{l s='Total (tax excl.):'}
						{else}
							{l s='Subtotal:'}
						{/if}
					</td>
					<td class="price" id="total_price_without_tax">{displayPrice price=$total_price_without_tax}</td>
				</tr>
				<tr class="cart_total_tax">
					<td colspan="6">
						{if $display_tax_label}
							{l s='Total tax:'}
						{else}
							{l s='Estimated Sales Tax:'}
						{/if}
					</td>
					<td class="price" id="total_tax">{displayPrice price=$total_tax}</td>
				</tr>
				<tr class="cart_total_price">
					<td colspan="6">
						{if $display_tax_label}
							{l s='Total (tax incl.):'}
						{else}
							{l s='Total:'}
						{/if}
					</td>
					<td class="price" id="total_price">{displayPrice price=$total_price}</td>
				</tr>
				{else}
				<tr class="cart_total_price">
					<td colspan="6">{l s='Total:'}</td>
					<td class="price" id="total_price">{displayPrice price=$total_price_without_tax}</td>
				</tr>
				{/if}
  • Like 1
Link to comment
Share on other sites

  • 0

Dzień dobry,

Mam podobny problem, ale potrzebuję usunąć dostawę, już wprowadziłem zmiane, ale kiedy dodaję ilość produktu, to do sumy nadal dodaję się dostawa, a do netto jakeś znaczenia pewnie podatek, ale jak odswieżyć strone to wszystko w pożądku, czy można prosić o pomocy co ja robie nie tak? Strona: http://sklep.katarzynabarth.pl/.

Mój kod: shopping-cart.tpl

<tfoot>
        {if $use_taxes}
            {if $priceDisplay}
                <tr class="cart_total_price">
                    <td colspan="5">{if $display_tax_label}{l s='Total products (tax excl.):'}{else}{l s='Total products:'}{/if}</td>
                    <td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
                </tr>
            {else}
                <tr class="cart_total_price">
                    <td colspan="5">{if $display_tax_label}{l s='Total products (tax incl.):'}{else}{l s='Total products:'}{/if}</td>
                    <td colspan="2" class="price" id="total_product">{displayPrice price=$total_products_wt}</td>
                </tr>
            {/if}
        {else}
            <tr class="cart_total_price">
                <td colspan="5">{l s='Total products:'}</td>
                <td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
            </tr>
        {/if}
            <tr class="cart_total_voucher" {if $total_discounts == 0}style="display:none"{/if}>
                <td colspan="5">
                {if $use_taxes && $display_tax_label}
                    {l s='Total vouchers (tax excl.):'}
                {else}
                    {l s='Total vouchers:'}
                {/if}
                </td>
                <td colspan="2" class="price-discount price" id="total_discount">
                {if $use_taxes && !$priceDisplay}
                    {assign var='total_discounts_negative' value=$total_discounts * -1}
                {else}
                    {assign var='total_discounts_negative' value=$total_discounts_tax_exc * -1}
                {/if}
                {displayPrice price=$total_discounts_negative}
                </td>
            </tr>
            <tr class="cart_total_voucher" {if $total_wrapping == 0}style="display: none;"{/if}>
                <td colspan="5">
                {if $use_taxes}
                    {if $display_tax_label}{l s='Total gift-wrapping (tax incl.):'}{else}{l s='Total gift-wrapping:'}{/if}
                {else}
                    {l s='Total gift-wrapping:'}
                {/if}
                </td>
                <td colspan="2" class="price-discount price" id="total_wrapping">
                {if $use_taxes}
                    {if $priceDisplay}
                        {displayPrice price=$total_wrapping_tax_exc}
                    {else}
                        {displayPrice price=$total_wrapping}
                    {/if}
                {else}
                    {displayPrice price=$total_wrapping_tax_exc}
                {/if}
                </td>
            </tr>
            {*{if $total_shipping_tax_exc <= 0 && !isset($virtualCart)}
                <tr class="cart_total_delivery">
                    <td colspan="5">{l s='Shipping:'}</td>
                    <td colspan="2" class="price" id="total_shipping">{l s='Free Shipping!'}</td>
                </tr>
            {else}
                {if $use_taxes}
                    {if $priceDisplay}
                        <tr class="cart_total_delivery" {if $total_shipping_tax_exc <= 0} style="display:none;"{/if}>
                            <td colspan="5">{if $display_tax_label}{l s='Total shipping (tax excl.):'}{else}{l s='Total shipping:'}{/if}</td>
                            <td colspan="2" class="price" id="total_shipping">{displayPrice price=$total_shipping_tax_exc}</td>
                        </tr>
                    {else}
                        <tr class="cart_total_delivery"{if $total_shipping <= 0} style="display:none;"{/if}>
                            <td colspan="5">{if $display_tax_label}{l s='Total shipping (tax incl.):'}{else}{l s='Total shipping:'}{/if}</td>
                            <td colspan="2" class="price" id="total_shipping" >{displayPrice price=$total_shipping}</td>
                        </tr>
                    {/if}
                {else}
                    <tr class="cart_total_delivery"{if $total_shipping_tax_exc <= 0} style="display:none;"{/if}>
                        <td colspan="5">{l s='Total shipping:'}</td>
                        <td colspan="2" class="price" id="total_shipping" >{displayPrice price=$total_shipping_tax_exc}</td>
                    </tr>
                {/if}
            {/if}*}
            {if $use_taxes}
            <tr class="cart_total_price">
                <td colspan="5">{l s='Total (tax excl.):'}</td>
                <td colspan="2" class="price" id="total_price_without_tax">{displayPrice price=$total_products}</td>
            </tr>
            {*<tr class="cart_total_tax">
                <td colspan="5">{l s='Total tax:'}</td>
                <td colspan="2" class="price" id="total_tax">{displayPrice price=$total_tax}</td>
            </tr>*}
            {/if}
            <tr class="cart_total_price">
                <td colspan="5" id="cart_voucher" class="cart_voucher">
                {if $voucherAllowed}
                    {if isset($errors_discount) && $errors_discount}
                        <ul class="error">
                        {foreach $errors_discount as $k=>$error}
                            <li>{$error|escape:'htmlall':'UTF-8'}</li>
                        {/foreach}
                        </ul>
                    {/if}
                    <form action="{if $opc}{$link->getPageLink('order-opc', true)}{else}{$link->getPageLink('order', true)}{/if}" method="post" id="voucher">
                        <fieldset>
                            <p class="title_block"><label for="discount_name">{l s='Vouchers'}</label></p>
                            <p>
                                <input type="text" class="discount_name" id="discount_name" name="discount_name" value="{if isset($discount_name) && $discount_name}{$discount_name}{/if}" />
                            </p>
                            <p class="submit"><input type="hidden" name="submitDiscount" /><input type="submit" name="submitAddDiscount" value="{l s='OK'}" class="button" /></p>
                        </fieldset>
                    </form>
                    {if $displayVouchers}
                        <p id="title" class="title_offers">{l s='Take advantage of our offers:'}</p>
                        <div id="display_cart_vouchers">
                        {foreach $displayVouchers as $voucher}
                            {if $voucher.code != ''}<span onclick="$('#discount_name').val('{$voucher.code}');return false;" class="voucher_name">{$voucher.code}</span> - {/if}{$voucher.name}<br />
                        {/foreach}
                        </div>
                    {/if}
                {/if}
                </td>
                {if $use_taxes}
                <td colspan="2" class="price total_price_container" id="total_price_container">
                    <p>{l s='Total:'}</p>
                    <span id="total_price">{displayPrice price=$total_products_wt}</span>
                </td>
                {else}
                <td colspan="2" class="price total_price_container" id="total_price_container">
                    <p>{l s='Total:'}</p>
                    <span id="total_price">{displayPrice price=$total_products_wt}</span>
                </td>
                {/if}
            </tr>
        </tfoot>
Edited by Rajkasus (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...