2017-02-14 55 views
4

隨着WooCommerce,我想隱藏或刪除FEATURED複選框從後端(管理員)的產品頁面設置,請參閱下面的屏幕截圖。從後端產品頁面隱藏特色複選框

我試過用CSS display:none但它沒有工作。

任何幫助將不勝感激

感謝

screenshot of the backend feature setting on products pages

+1

歡迎堆棧溢出,讓我們看看你的代碼,以便我們可以看看您的問題,如果你真的需要幫助,告訴我們你的努力。可能你請閱讀http://stackoverflow.com/help/how-to-ask –

回答

4

是的,它可能在admin_head WordPress的鉤子鉤住的自定義功能,將在管理員頭部注入一些CSS規則。我們在這裏定位產品帖子類型頁面。

這裏是代碼:

add_action('admin_head', 'hiding_and_set_product_settings'); 
function hiding_and_set_product_settings(){ 
    echo '<style> 
     .post-type-product #catalog-visibility-select p:nth-of-type(2), 
     .post-type-product #catalog-visibility-select label[for=_featured], 
     .post-type-product #catalog-visibility-select input[type=checkbox] { visibility: hidden !important; display none !important;} 
    </style>'; 
} 

代碼放在您的活動子主題(或主題)的function.php文件或也以任何插件文件。

此代碼已經過測試並可正常工作。

看到這個截圖我的測試原始服務器:

enter image description here

+0

@Paradox對不起,但這個作品完美看到我的原始測試服務器的屏幕截圖(更新在我的答案)...可能是你必須適應CSS選擇器到您的語言wordpress安裝 – LoicTheAztec

+0

是的。我再次嘗試,現在工作愉快!非常感謝你!精彩的代碼! – Paradox

+0

不客氣! :) – Paradox