Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lecoqroach

    (@lecoqroach)

    Hi Ed,
    thanks a lot for looking into this. I checked your suggestion and saw that I somehow didn’t get update infos for the theme. I will update the theme to the newest version and see if it’s already fixed.

    Best regards,
    LeCoqroach

    for anybody with the same problem, because it has not been solved yet:

    function remove_multilingual_stylesheet() {
    	wp_dequeue_style( 'woocommerce_admin_styles' );
    	wp_deregister_style( 'woocommerce_admin_styles' );
    }
    add_action( 'wp_enqueue_scripts', 'remove_multilingual_stylesheet', 999 );
    
    function add_multilingual_stylesheet() {
    	wp_enqueue_style( 'woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css', array(), WC_VERSION );
    }
    add_action( 'admin_enqueue_scripts', 'add_multilingual_stylesheet', 999 );
Viewing 2 replies - 1 through 2 (of 2 total)