kam0200 Posted December 1, 2022 Share Posted December 1, 2022 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 Link to comment Share on other sites More sharing options...
1 endriu107 Posted December 2, 2022 Share Posted December 2, 2022 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 More sharing options...
0 kam0200 Posted December 2, 2022 Author Share Posted December 2, 2022 dziękuje bardzo, pomogło problem rozwiązany Link to comment Share on other sites More sharing options...
Question
kam0200
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}
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
Link to comment
Share on other sites
2 answers to this question
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