Hello,
In fact, we wonder if you don't use your browser zoom isn't to high?
Can you process some tests to check this idea?
If we right, the Css of the responsive comes into action because all columns can't be displayed cleanly and so hide certain columns and independently of the settings of the dropdown.
In your backend file Css, you can edit your Css in order to remove this command around line 4349 :
Example :
@media only screen and (max-width: 1430px) {
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-last-child(1), ..._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_... table#hikashop_order_listing td:nth-child(7) {
display: none;
}
}
OR change the value
nth-last-child or
nth-child :
Example :
beforediv#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(13)
after :
div#hikashop_main_content.hika_j4 table#hikashop_order_listing th:nth-child(17)
This will allow you to select which columns you want to keep whatever the zoom configuration.
Regards