prestarocket-agence / classic-rocket

Classic Rocket is a rework of "classic theme". It has been built keeping in mind : performance, accessibility and SEO.
https://demoprestashop.prestarocket.com/
Other
230 stars 127 forks source link

history.tpl typo/bug #99

Closed Hlavtox closed 4 years ago

Hlavtox commented 5 years ago

In User account/order history, there is a bug in table header classes.

Wrong TH gets hidden during resizing.

visible--desktop needs to be changed to d--none d-lg-table-cell and moved to Invoice instead of Status.

Correct code:

<tr>
<th>{l s='Order reference' d='Shop.Theme.Checkout'}</th>
<th>{l s='Date' d='Shop.Theme.Checkout'}</th>
<th>{l s='Total price' d='Shop.Theme.Checkout'}</th>
<th class="d--none d-lg-table-cell">{l s='Payment' d='Shop.Theme.Checkout'}</th>
<th>{l s='Status' d='Shop.Theme.Checkout'}</th>
<th class="d--none d-lg-table-cell">{l s='Invoice' d='Shop.Theme.Checkout'}</th>
<th>&nbsp;</th>
</tr>