Skip to content

Commit

Permalink
Merge pull request #991 from sumitwebkul/gli-1755
Browse files Browse the repository at this point in the history
Fixed:Need to arrange the options in correct order at order list page in mobile view.
  • Loading branch information
rohit053 authored May 30, 2024
2 parents 6c8490f + bd3d709 commit 4fb4093
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions admin/themes/default/template/helpers/list/list_header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,11 @@
<style>
@media (max-width: 992px) {
{foreach from=$fields_display item=param name=params}
{if isset($params.displayed) && $params.displayed === false}{continue}{/if}
.table-responsive-row td:nth-of-type({math equation="x+y" x=$smarty.foreach.params.index y=$y}):before {
{if isset($param.displayed) && $param.displayed === false}{continue}{/if}
.table-responsive-row td:nth-of-type({$y}):before {
content: "{$param.title}";
}
{assign var=y value=$y+1}
{/foreach}
}
</style>
Expand Down

0 comments on commit 4fb4093

Please sign in to comment.