Hello,
is there a way to find all users that font-end builder is enabled?
Regards,
Solved! Go to Solution.
Hello @geokat
Run below query :
SELECT * FROM DB.eav_attribute where attribute_code = "is_fbuilder_account";
here you will get attribute_id, get the attribute id, for ex: 160
and run below query :
SELECT * FROM DB.customer_entity_int where attribute_id = 160 and value = 1;
here value = 1 means who has access.
now you have custom_id who has access, get all the ID's and run below query :
SELECT * FROM DB.customer_grid_flat where entity_id IN (1734,1749,1953,1818,1962);
(1734,1749,1953,1818,1962) these are the ID which I got from second query.
Hope it helps !
Hello @geokat
Run below query :
SELECT * FROM DB.eav_attribute where attribute_code = "is_fbuilder_account";
here you will get attribute_id, get the attribute id, for ex: 160
and run below query :
SELECT * FROM DB.customer_entity_int where attribute_id = 160 and value = 1;
here value = 1 means who has access.
now you have custom_id who has access, get all the ID's and run below query :
SELECT * FROM DB.customer_grid_flat where entity_id IN (1734,1749,1953,1818,1962);
(1734,1749,1953,1818,1962) these are the ID which I got from second query.
Hope it helps !
How to use Brand extension in Claue theme on the magento2 ToysRUs Credit Card
Thank you this was really helpful!!!
Hi @geokat,
Identifying users who have enabled a front-end builder in Magento can be challenging because it depends on the implementation details of the front-end builder and how it interacts with user accounts. Here are some general strategies you can try:
SELECT * FROM authorization_role WHERE role_name LIKE '%builder%';
SELECT * FROM admin_user WHERE custom_attribute = 'front_end_builder_enabled';
Replace 'custom_attribute' with the actual attribute name you are looking for.
SELECT * FROM authorization_rule WHERE resource_id LIKE '%front_end_builder%';
Replace 'front_end_builder' with a keyword related to the front-end builder if such information is available.
SELECT * FROM core_config_data WHERE path LIKE '%front_end_builder%';
SELECT * FROM log_user WHERE action LIKE '%front_end_builder%'; SELECT * FROM log_visitor WHERE action_name LIKE '%front_end_builder%';
Replace 'front_end_builder' with relevant keywords.
If the issue will be resolved, Click Kudos & Accept as a Solution.