sylviabass
Forum Replies Created
-
Thank you for the reply. It would be a nice feature to have in the future. Thanks for the great plugin!
I was having the same issue with not receiving form submissions via email. My forms used to send email, but stopped recently. I tried the Branda plugin and SMTP setup and it’s working again. I host with Siteimprove. It’s possible they made a change recently. Thank you for the great plugins and support!
This has resolved. I’m not sure what fixed it, but we did have a memory issue on one of the sites.
Thank you for the response. I checked and do get two mixed content errors. We use https over admin, but not on the public view of the site. One is a CSS request that gets blocked and another is for the favicon. However, I get the same errors when I disable WordFence, yet the Dashboard works as expected. It is only /wp-admin/index.php that has the issue. Other /wp-admin/ pages do not.
I’m having the same issue on one of my sites. I disabled the “Fake Google crawler automatically blocked” setting and that seemed to work.
Forum: Plugins
In reply to: [Quotes Collection] Quotes not refreshing or advancing with WordPress 4.0Seems to be working fine now. May have been a conflict with another plugin that has now been updated.
Forum: Plugins
In reply to: [Q and A Focus Plus FAQ] Request: Add author supportThis is wonderful. Thank you very much!
Thank you @wtankwey. Your plugin solution worked perfectly for me, too.
Forum: Plugins
In reply to: [Content Audit] Adding New Menu Items BrokenThank you Stephanie. It is now working on my site. This is a great plugin, so thank you very much for creating it.
Forum: Plugins
In reply to: [Content Audit] Adding New Menu Items BrokenThank you for working on it. Unfortunately, It is still broken on my site. When I try to add a new menu item, it appears to attempt it, but no menu item is added. Now, there is no longer an error message. I updated to WordPress 3.6 and am using the new 1.5.2 plugin version.
Forum: Plugins
In reply to: [Content Audit] Adding New Menu Items BrokenThanks, glad it’s not just me. I love this plugin, so hopefully a fix is in the works?
Forum: Networking WordPress
In reply to: Random logout of usersOur problem ended up being a custom plugin to authenticate with our campus server. It was developed in 2009 and the changes in WordPress since then seem to be causing the odd issues. We’re looking to re-write it or find a different solution using LDAP.
I was able to get help from one of the Ninja Forms developers on their forum. http://wpninjas.com/support/topic/how-to-allow-non-admins-the-capability-to-manage-forms/
They don’t have a way to do this currently other than hooking into the filters. I didn’t know how to do this and they gave me this code to create my own small plugin. That works well. The $capabilities variable can be changed to filter by capability. “edit_others_posts” is one that Editors and Admins share. The code they gave me initially allowed editors, but disallowed admins. The list of capabilities can be found on the WordPress Codex at http://codex.ww.wp.xz.cn/Roles_and_Capabilities
I would also contact Ninja Forms and request this feature. The more they hear it, the more likely it will become that they’ll either add it in or create the extension allowing it.
Here’s the code that worked for me and here’s how to create a plugin. https://codex.ww.wp.xz.cn/Writing_a_Plugin
function my_custom_change_ninja_forms_capabilities_filter( $capabilities ) { $capabilities = "edit_others_posts"; return $capabilities; } add_filter( 'ninja_forms_admin_menu_capabilities', 'my_custom_change_ninja_forms_capabilities_filter' );I’d really like to see this feature, too. I am creating a site and don’t need/want to give the users administrator access, but want them to be able to edit the forms and download the data.
Forum: Plugins
In reply to: [Content Audit] [Users allowed to audit] settings disappearThanks, that fix worked for me too. I can’t use 1.5 yet as I get the “white screen of death” on the public view of the site.