你好,无需 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>';
}