Home › Forums › WoodMart support forum › Allow access to Woodmart Header Builder to Non-admins › Reply To: Allow access to Woodmart Header Builder to Non-admins
August 20, 2020 at 1:15 pm
#220062
Artem Temos
Keymaster
Hi,
Yes, you can use the following example and put it into the functions.php file in your child theme
add_filter(
'woodmart_dashboard_theme_links_access',
function() {
return 'shop_manager';
}
);
Regards