Hướng dẫn tắt UXBuilder ở 1 số post type theme Flatsome
Có 1 số trường hợp khi muốn ẩn trình UX Builder của Flatsome tại post type thì việc đơn giản bạn chỉ cần thêm code bên dưới vào function.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'); } }