• Resolved Jason Wong

    (@eljkmw)


    In your latest release, 1.4.1, the table collapses in Admin > Products >> Brands. I managed to resolve this by inserting the following CSS styles in an enqueued admin.css

    @media screen and (max-width: 782px) {
    	.wp-list-table thead th.column-logo { display: none; }
    	.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before { content: ""; }
    }

    The first CSS style is necessary to make the thead th.column-logo disappear since it caused the collapse of the table.

    The second CSS style is to remove the content: attr(data-colname);, which showed Logo over a ( – ) dash character. I find it strange that the ( – ) dash character is in place for brands without a logo, instead of placeholder image. It’ll be great to include that in your next release.

    https://www.ads-software.com/plugins/perfect-woocommerce-brands/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Table collapses in Admin > Products >> Brands’ is closed to new replies.