Home › Forums › WoodMart support forum › Non-admins can’t edit HTML Blocks (Bug) › Reply To: Non-admins can’t edit HTML Blocks (Bug)
April 14, 2023 at 9:13 am
#459578
Artem Temos
Keymaster
Hello,
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_filter(
'woodmart_html_block_access',
function() {
return 'edit_pages';
}
);
Kind Regards