Search Results for 'private'
-
Search Results
-
Hi,
in my private, user-login BuddyPress Community with groups, forums, activity-stream, I´m just integrating a blog, in which everyone should be able to create posts and comments, without having to wait for approvement!Here is my first problem:
A participant can´t comment on an post, created by admin:
“Your comment is awaiting moderation.”
Even in the settings/discussion, “Allow people to post comments on new articles” is set!
I also can´t find any other option, which could feed to this problem!Second:
People should be able to create posts in the frontend, that it is not necessary, that they logg in into the wordpress-backend.
Can anyone suggested a plugin for that?nice greetings and thousand thanks
SandraHello there,
I created a Public and a Private Group on me site with BuddyPress. But i can’t find from where to make the comments to be hold for moderation, before they appear online.Thank you very much for any help!!
Topic: Forum topics list
Hi,
How can I get a list of forums to appear on our forum page? Unpublished page login page can be accessed here: https://alliaconsulting.com/career-discussions. (Message me privately for password.
I would like a list of forums to appear on this page?
Topic: Duplicate Register Page
I want to make an exact duplicate of the register page. What should I do with the register.php file to accomplish that?
Ultimately I am making one register page password protected which is why I need two. Public and private.
Hi,
I have looked and looked and can’t find if this is possible. I would like to have a private message thread scroll automatically and link to the most recent message. Ex. When two people are chatting and the thread is long you have to scroll and scroll to the bottom of the page to read the latest message and then reply. It would be nice if this worked more like Facebook, where it auto loads to that recent message saving the user from scrolling so much on big threads.
I have read about ascending and descending but I don’t really like the idea of reading threads backwards like an email thread, or having the reply box ontop.
Is this possible?
Hi All,
I’ve created a hidden group, with a hidden forum.
When I ‘search forums’ it pulls up replies from the hidden group.
How do I make it so only the members of the hidden group can search for replies in the hidden group?I don’t want non-members to be able to see topics and replies in a hidden group when searching.
Wordpress Version 4.9.4
Theme BuddyBossThank You
Topic: Some issues on my site
Hello, in working with my theme support they informed that it is issues of Buddypress so I thought I’d see if I can get some feedback thoughts on them. I am currently under construction so will detail as much I can.
1. On my members page when selecting to turn pages and view user profiles after search results, it won’t scroll back to the top. Turning pages results at staying at the bottom of the site page and you have to mouse wheel/scroll back up to view the profiles.
2. Under Users private messages, group selecting Read/Unread/Delete bulk actions do not work.
I can upload images if that doesm’t make sense to what I’m referring to.
Thanks.
I tried to implement the following code:
function buddydev_hide_members_directory_from_all_except_admin() { if ( bp_is_members_directory() && ! is_super_admin() ) { //should we add a message too? //bp_core_add_message( 'Private page.', 'error' ); bp_core_redirect( site_url('/') ); } } add_action( 'bp_template_redirect', 'buddydev_hide_members_directory_from_all_except_admin' );
in plugins> bp-custom.php. Just in case, I also tried to implement it by creating a new plugin folder > bp-custom.php in the child theme, but the member directory page is still visible to non-admin/non-logged in users.