Hi,
Columns are automatically hidden on devices with small width.
On a normal laptop, the screen resolution is usually at least 1080p (or Full HD) which means 1920 x 1080 pixels or more.
In the backend CSS of HikaShop we have this CSS:
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-last-child(1),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing tbody td:nth-last-child(1),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(10),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing td:nth-child(10),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(11),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing td:nth-child(11),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(12),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing td:nth-child(12),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(13),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing td:nth-child(13),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(14),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing td:nth-child(14),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(7),
div#hikashop_main_content.hika_j4 table#hikashop_order_listing td:nth-child(7) {
display: none;
}
This CSS code is inside
@media only screen and (max-width: 1430px) {
...
}
This means that it will hide many columns of the orders listing if the width available is less than 1430pixels. So, on a normal laptop, it should display all the columns if the window uses the full width of the screen.
On smaller ones, some of the columns are indeed hidden so that it doesn't go outside the screen.
You could potentially remove / adapt that CSS via the "backend CSS" setting of the HikaShop configuration page if you need some of the columns that are hidden by default on small devices.
Note also that with the "columns" button on the top right corner of the page, you can add / remove columns. So make sure that the column you want to see is not removed from there.
On our end, we'll look at improving this.