你好,無需 license ,功能沒限制,這個提示只有後臺管理員可以看見,可以直接隱藏掉。
1 、直接在後臺搜尋安裝一個外掛 Code Snippets,
語言包這裡下載
Code Snippets
2 、新建一個程式碼段,選擇在 【後臺執行】 加入下面的程式碼即可去掉提示;
add_action('admin_head', 'stop_learndash_notice');
function stop_learndash_notice() {
echo '<style>
.notice.notice-error.is-dismissible {
display: none;
}
.notice-error, div.error {
border-left-color: #dc3232;
display: none;
}
</style>';
}
