Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hamidrezayazdani/3717ece59ae415abcaad3544dacc3774 to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/3717ece59ae415abcaad3544dacc3774 to your computer and use it in GitHub Desktop.
<?php
function ywp_fix_woocommerce_admin_order_list_css() {
$custom_css = "
@media screen and (max-width: 782px) {
.post-type-shop_order .wp-list-table tr:not(.is-expanded) td.column-order_number a.order-view, .woocommerce_page_wc-orders .wc-orders-list-table.wp-list-table tr:not(.is-expanded) td.column-order_number a.order-view {
width: calc(100% - 48px - 10ch)!important;
}
}
@media screen and (max-width: 782px) {
.column-order_date {
visibility: hidden
}
}
";
wp_add_inline_style( 'woocommerce_admin_styles', $custom_css );
}
add_action( 'admin_print_styles', 'ywp_fix_woocommerce_admin_order_list_css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment