在Woocommerce中设置管理员自定义面板

时间:2018-03-17 10:17:42

标签: css wordpress woocommerce

我想在woocommerce面板中更改此参数。当我检查这个元素时,它会引用load-style.php中的文件wp-admin

您知道哪个CSS文件允许在WC的管理面板中更改此设置吗?

.categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel, .posttypediv div.tabs-panel, .taxonomydiv div.tabs-panel, .wp-tab-panel {
    min-height: 42px;
    max-height: 400px;
    overflow: auto;
    padding: 0 .9em;
    border: 1px solid #ddd;
    background-color: #fdfdfd;
}

1 个答案:

答案 0 :(得分:0)

尝试更改您的admin css,将此代码放入您的functions.php,并对您的CSS进行更改。您可能需要更改选择器。

 add_action('admin_head', 'custom_changes_css');

    function custom_changes_css() {
      echo '<style>
        .categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel, .posttypediv div.tabs-panel, .taxonomydiv div.tabs-panel, .wp-tab-panel {
        min-height: 42px;
        max-height: 400px;
        overflow: auto;
        padding: 0 .9em;
        border: 1px solid #ddd;
        background-color: #fdfdfd;
    }
      </style>';
    }