• Can you guys fix the bad text formatting in the admin panel and woo-commerce products page? See these links to see the screenshot. As you can see it shows the brand’s name vertically and if the brand name is long it makes the product table very tall, not needed.

    Plugin admin
    https://postimg.cc/gXWtWf2y

    Products section of Woocommerce
    https://postimg.cc/87Psc5js

    This issue is happening with different people as well so it’s not just me. We want to upgrade to PRO but want this formatting fixed. Much appreciated.

    • This topic was modified 2 years, 1 month ago by theloot52.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter theloot52

    (@theloot52)

    A quick fix is to give the option to remove the brand name from the product page, this way we can have a clean product page again. I tried adding this code

    table.wp-list-table th#taxonomy-yith_product_brand {
    	width: 10%;
    }

    Which made no difference

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,

    The CSS you mentioned is not applied because it’s an admin panel and you can’t edit those styles from your theme.

    In order to fix this, simply add this code to your active child theme’s functions.php file:

    add_action('admin_head', 'my_custom_fonts');
    
    function my_custom_fonts() {
      echo '<style>
                table.wp-list-table th#taxonomy-yith_product_brand {
                    width: 10%;
                }
            </style>';
    }

    Check it out and tell us if it works well for you, please.

    Best regards.

    Thread Starter theloot52

    (@theloot52)

    I’ll have my coder try that but keep in mind, that most of the people that use this plugin (or any plugin) are not coders, you should really update the plugin and roll out a new version.

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,

    Perfect! Let us know any news, please.

    We will comment this to the developer, thank you very much!

    Best regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Bad text Formatting in admin’ is closed to new replies.