Jump to content
  • 0

koszyk 1.6 - "razem kupony (brutto)" ukrycie w koszyku na wersji mobilnej


kam0200

Question

Hej,

nie wiem dlaczego ale w koszyky wersji mobilnej wciąż widnieje wiersz w podsumowaniu koszyka Razem kupony (brutto) 0

w plikach szablonu jest reguła która ma dodać klasę unvsible {if $total_discounts == 0} unvisible{/if}

 

				<tr class="cart_total_voucher{if $total_discounts == 0} unvisible{/if}">
					<td colspan="{$col_span_subtotal}" class="text-right">
						{if $display_tax_label}
							{if $use_taxes && $priceDisplay == 0}
								{l s='Total vouchers (tax incl.)'}
							{else}
								{l s='Total vouchers (tax excl.)'}
							{/if}
						{else}
							{l s='Total vouchers'}
						{/if}
					</td>
					<td colspan="2" class="price-discount price" id="total_discount">
						{if $use_taxes && $priceDisplay == 0}
							{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>

reguła ta działa na wersji desktop, jednakże w wersji mobilnej ( Google Chrome na Android wciąż ta linia się wyświetla jak na obrazku)

 

w CSS widzę

.unvisible{display:none}

sprawdziłem na innym sklepie który używa domyślnego szablonu Prestashop 1.6 bootstrap i też jest tak samo

dlaczego to ukrywanie w CSS nie działa ? jakiś pomysł jak to ukryć skutecznie na wersji mobilnej ?

strona na której to próbuje ukryć to sklep-kosiarki.pl

Z góry dziękuję za jakieś pomysły :)

zrzut-razem-kupony-desktop.png

zrzut-razem-kupony.png

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 1

Zamiast tak:

<tr class="cart_total_voucher{if $total_discounts == 0} unvisible{/if}">
  <td colspan="{$col_span_subtotal}" class="text-right">
    {if $display_tax_label}
    {if $use_taxes && $priceDisplay == 0}
    {l s='Total vouchers (tax incl.)'}
    {else}
    {l s='Total vouchers (tax excl.)'}
    {/if}
    {else}
    {l s='Total vouchers'}
    {/if}
  </td>
  <td colspan="2" class="price-discount price" id="total_discount">
    {if $use_taxes && $priceDisplay == 0}
    {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>

Zrób tak:

{if $total_discounts != 0}
  <tr class="cart_total_voucher">
    <td colspan="{$col_span_subtotal}" class="text-right">
      {if $display_tax_label}
      {if $use_taxes && $priceDisplay == 0}
      {l s='Total vouchers (tax incl.)'}
      {else}
      {l s='Total vouchers (tax excl.)'}
      {/if}
      {else}
      {l s='Total vouchers'}
      {/if}
    </td>
    <td colspan="2" class="price-discount price" id="total_discount">
      {if $use_taxes && $priceDisplay == 0}
      {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>
{/if}

 

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...