I found difficulty to assign this ‘Magestore Bannerslider’ to the roles in Magento adminpanel. Then I found some solutions on the web and I am posting it here.
To solve this issue open the file located at ‘app/code/community/Magestore/Bannerslider/etc/config.xml’ and just paste the following code after the <adminhtml> tag and save it.
<acl> <resources> <all> <title>Allow everything</title> </all> <admin> <children> <bannerslider> <title>Bannerslider Module</title> <sort_order>10</sort_order> <children> <items> <title>Manage Items</title> <sort_order>0</sort_order> </items> </children> </bannerslider> <system> <children> <config> <children> <bannerslider translate="title" module="bannerslider"> <title>Banner Slider Settings</title> <sort_order>50</sort_order> </bannerslider> </children> </config> </children> </system> </children> </admin> </resources> </acl>
Now clear the cache and incase if you logged into admin logout first then login again. It should be working fine now!
Cheers!