
Bạn đang dùng theme Flatsome để thiết kế giao diện trên nền wordpress. Và đôi khi bạn muốn ẩn đi trình UX Builder của Flatsome ở một số post type mà bạn không muốn nó hiện. Đơn giản bạn chỉ cần copy code bên dưới và thêm vào file Functions.php
add_action('init', 'isures_remove_uxbuilder_post_type', 20);
function isures_remove_uxbuilder_post_type(){
if (function_exists('remove_ux_builder_post_type')) {
remove_ux_builder_post_type('product');
}
}