amijanina
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Membership] Plug-In Integration with Postieyou don’t need to be programmer. you will just have to install the addon and see if it works the way you wanted. thats it.
Forum: Plugins
In reply to: [Simple Membership] Free Membership needs Admin approval – Possible?in the upcoming version, there is an option in admin settings page where admin can choose what newly registered account status will be. by default its “Active” but if admin chooses “Pending” then admin will have to manually approve before newly registered user can login.
Forum: Plugins
In reply to: [Simple Membership] Multiple Free membershipsJust use the following option to create as many free levels you want to create:
https://simple-membership-plugin.com/simple-membership-registration-form-shortcode-generator/
Forum: Plugins
In reply to: [Simple Membership] Subscription starts showing as expiry datethis has been fixed in the upcoming version.
Forum: Plugins
In reply to: [Simple Membership] Restrict categorycategory restriction has higher precedence. if you restrict category then all posts under than category is restricted.
Forum: Plugins
In reply to: [Simple Membership] restricted widgetsimple membership works with posts, page and comments.
Forum: Plugins
In reply to: [Simple Membership] Hide protected posts and categories from lists and menusyou probably want to take a look at classes/class.bPermission.php
thanks
Forum: Plugins
In reply to: [Simple Membership] Restricted BBpress Forum Root Slug doesn't runBBPress works slightly differently than normal posts. simple membership doesn’t support BBPress at this moment but its in the upcoming feature list.
Forum: Plugins
In reply to: [Simple Membership] Plug-In Integration with Postiei have written an addon to integrate postie with simple membership plugins. i will gladly give to anyone willing to be tester ??
Forum: Plugins
In reply to: [Simple Membership] Restrict categoryits a two step process:
step 1 (protection): select “General Protection” in the dropdown and check the categories you want to protect. then press “Update” button.
this will enable protection to selected categories.
step 2 (permission): in this step you will allow certain membership level to view protected categories. select select any membership level except “General Protection”. check the *protected* categories that you want this membership level have access to. then press “Update”.You are done. Hope this helps.
Forum: Plugins
In reply to: [Simple Membership] Restrict categorycategory restriction is introduced in version 1.8.5. you should update your copy.
Forum: Plugins
In reply to: [Simple Membership] Plug-In Integration with Postieplease explain you use case a bit more in details. do you want to assign a particular membership level to all posts submitted through postie?
Forum: Plugins
In reply to: [Simple Membership] Plug-In Integration with Postiewhy not
Forum: Plugins
In reply to: [Simple Membership] Hide protected posts and categories from lists and menuscan_i_read_post is a member method. you cannot call it directly. you need to call it through its class object. you can do something like this:
$acl = BAccessControl::get_instance(); if(!$acl->can_i_read_post($post->ID)) { DO STUFF }
Forum: Plugins
In reply to: [Simple Membership] Hide protected posts and categories from lists and menusif you are a programmer and want to write an addon, please take a look at classes/class.bAccessControl.php. it will give you an idea of how to check if a post/page is protected.