Andrew
Forum Replies Created
-
Yes I know about that option too and it’s not an option for me. I’ve been using your software for quite some time, but only recently have I been seeing login attempts on known users, or www[dot]mywebsite[dot]com, or “1.0”, et.al. Thanks anyway.
- This reply was modified 5 years, 6 months ago by Andrew.
I’ve had that setting in place for at least a year. They’re bypassing the login page altogether and attempting to spoof form submission some other way.
Yes, thank you!
Thank you!
You’re welcome!
Hi wbfz,
You should put it in the functions.php file in your theme folder. Add a new line for each custom post type you want to remove the shortcode from, like so:
$custom_posts[] ='custom_post_type_one'; $custom_posts[] ='custom_post_type_two'; etc...
Yes Joomla has remarkable knees ?? It stands for Access Control List. You can provide group or individual access to any content. Very powerful user management software.
Hi David,
I don’t know, but I’ve decided to move my entire community out of WordPress and into Joomla, which has an ACL that is second to none, imho. We were trying to make BuddyPress work for our needs, which was a bit like trying to fit a square peg into a round hole, with all of the features we needed to include.
Thanks anyway.
AndyForum: Plugins
In reply to: [Invite Anyone] How to have "Email invites" only?Hi Boone,
Some of us are using your plugin strictly for inviting external users into private groups. The existing members list reveals member names in groups that we might want to keep private. In my case, I’m using it as a customer portal, each group representing a company, so we don’t want a list of all the other company employee names exposed as well as site admins, etc.
Great plugin by the way, thanks!
AndyForum: Plugins
In reply to: [Invite Anyone] Can send invites tab in group be deactivated?HI Mickey,
I know this is a little late from the time you posted but just in case anyone else is looking for the answer, I was able to accomplish this by adding the following to either the bp-custom.php file in the plugins folder (your theme’s functions.php file might work too):
function my_remove_blogs_nav() {
bp_core_remove_nav_item( ‘invite-anyone’ );
}
add_action( ‘bp_setup_nav’, ‘my_remove_blogs_nav’, 15 );Forum: Plugins
In reply to: [Invite Anyone] How to have "Email invites" only?Hi Jason,
I was able to accomplish it by going to Settings ? Invite Anyone, and unchecking the box next to “Allow users to send group invitations along with email invitations”. Once I did that, only the email form remains. I hope that helps.
Forum: Plugins
In reply to: [Obfuscate Email] Disable for AdminThank you!