Awaken Solutions Inc.
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Restrict] How to add permission to new members through wp-loginYou’d need to code your functions.php file to update_user_meta upon registration and add the desired permission slug(s) to the user’s profile. Our plugin code has a lot of comments to help you easily see how we prepend your permission slugs. And this website shows how to update meta on registration: https://tommcfarlin.com/add-custom-user-meta-during-registration/
Or you’d need to hire a developer if you’re not comfortable with such code.
Forum: Plugins
In reply to: [Ultimate Responsive Image Slider] Custom CSS doesn’t stay savedThanks for the quick reply. Perhaps there is a conflict with a plugin or theme on my setup then. I will need to check.
Forum: Plugins
In reply to: [Simple Restrict] Homepage not restrictedThanks for bringing this to my attention. Long story short, it is now fixed and you can update the plugin to version 1.2.0 from the Plugins page.
Please let me know if you have any trouble. And if you have a moment please write a review for the plugin. Thanks.
Forum: Plugins
In reply to: [Simple Restrict] A new featureNo, they need to be registered as a user on the website.
Forum: Plugins
In reply to: [Simple Restrict] How to access with password without loginNo this isn’t part of the functionality. Sorry.
Forum: Plugins
In reply to: [Simple Restrict] Allow users to edit permissionsUnfortunately this isn’t built into the plugin.
Forum: Plugins
In reply to: [Simple Restrict] Edit child permissionHi Joanna,
When I make a child permission and assign it to the parent, I am able to see it in the table of permissions, and edit it, just like parent permissions. See the screenshot here:
https://puu.sh/vuBa1/d80265d05d.png
Let me know if this issue persists for you and if so I will try to find the time to connect to your site and database to see what might be happening.
Forum: Everything else WordPress
In reply to: Can’t unsubscribe from forum emailsThat was it, I should have thought of it myself. I have a separate WordPress.org account and a gmail filter which sends it to the other account email address. Thanks for the help James, much appreciated.
Forum: Everything else WordPress
In reply to: Can’t unsubscribe from forum emailsYes, I’m sure it is that plugin for which I am receiving emails. Every day 🙂
The plugin you mentioned is ours, so we do want to remain subscribed to it.
Thanks.
Forum: Everything else WordPress
In reply to: Can’t unsubscribe from forum emailsThanks for the reply James. I know that is the usual place. But when I go there, it offers me a button “Subscribe to this plugin”.
In desperation I even tried subscribing, then unsubscribing, but it didn’t work. I still get all the emails for this plugin daily.
Thanks.
Although not ideal from a security standpoint, adding this to your functions.php would allow multiple passwords (in this example, pass1, pass2 and pass3) to work:
function password_protected_process_login_callback($password_protected_pwd) { $password_protected_pwd = $_REQUEST['password_protected_pwd']; if( $password_protected_pwd == "pass1" || $password_protected_pwd == "pass2" || $password_protected_pwd == "pass3" ){ return true; } } add_filter('password_protected_process_login','password_protected_process_login_callback');Forum: Plugins
In reply to: [Simple Restrict] How to add the login form to a pagePlease carefully read the instructions and make sure that you assign a permission to the page. Then, make sure you try to view the page as someone who doesn’t have that same permission applied to their user account.
Forum: Plugins
In reply to: [Simple Restrict] How to add the login form to a pageYes that plugin, or the plugin “sidebar login”, are good choices.
Once logged in, the page should show the actual content of the page. It should not be blank.
Please try reloading the page with Ctrl + R. Then please try removing any restriction on the page to test if it’s still blank.
Forum: Plugins
In reply to: [Simple Restrict] Restrict Posts and CPTMy pleasure Frank, I am happy to know you found something that works for you!
Forum: Plugins
In reply to: [Simple Restrict] Restrict Posts and CPTHi Frank.
So sorry for the delay in my reply, the notification was dismissed from my inbox accidentally.
If you want to use it for regular posts, or CPTs, you could perhaps copy the entire plugin, rename it to a new plugin, and then replace all references to pages with posts (or CPTs). I think this would be simpler than trying to code conditional logic throughout the existing code.
I put a lot of comments throughout the code which hopefully will help in that regard.
Hope this helps. I wish I had the time to build some options into this plugin to make it work for posts and CPTs out of the box, hopefully someone will do so one day!