now it does nothing.
So you can see it.
That means that ‘buddypress/bp-members/bp-members-template.php’ is not inactive.
Your description of the problem is so muddled that suggesting a solution is nigh impossible.
Confirm that the issues are not in your theme. Try switching to a standard theme like WP 2013.
Look at the BP templates for guidance on those issues.
For example:
buddypress\bp-templates\bp-legacy\buddypress\members\register.php
thx Shane. Do you happen to know the function or an example of a function which would work for the buddypress sign in and also registration, if you happen to know? again, thx! (not my theme and so far unable to find out from the author.)
In using a new, custom theme geared towards buddypress, I’m wondering why it isn’t “executing” for sign in tab and likely the registration (still testing.)
For the sign in, it goes to a 404. Here’s the code I have for it and it’s the button which isn’t executing. What does it look like i need to link up to for the typical BP sign-in page? Thx.
[one_half]
<h1>Members Sign In</h1>
Sign in to begin browsing the members areas and interacting with the community.
[clear]
[one_third]
<form class="publicForm" action="[fn function=" method="post">
<div class="fieldContainer">
<label class="formTitle" for="log">Username</label>
<input id="log" class="textInput" style="width:150px" name="log" type="text" />
</div>
[/one_third]
[one_third]
<div class="fieldContainer" style="margin-left:27px;margin-top:3px;">
<label class="formTitle" for="pwd">Password</label>
<input id="pwd" class="textInput" style="width:150px" name="pwd" type="password" />
</div>
[/one_third]
[one_third_last]
<input type="submit" class="btn black" style="margin-top:17px;margin-left:50px;" value="Sign in">
[/one_third_last]
</form>
[clear]
[/one_half]
[one_fourth]
[clear]
<h4>Member Resources</h4>
[bullet_list icon="check" indent="20px"]
<ul>
<li><a href="#">Getting Started Guide</a></li>
<li><a href="#">Author Rules and Regulations</a></li>
<li><a href="#">Frequently Asked Questions</a></li>
</ul>
[/bullet_list]
[clear]
[/one_fourth]
[one_fourth_last]
[clear]
<h4>Community Tools</h4>
[bullet_list icon="plus" indent="20px"]
<ul>
<li><a href="#">Top Contributors "Wall of Fame"</a></li>
<li><a href="#">Awards and Recognitions</a></li>
<li><a href="#">Recently Featured Articles</a></li>
</ul>
[/bullet_list]
[clear]
[/one_fourth_last]
If buddypress/bp-members/bp-members-template.php is ‘inactive’,
how do you know that ‘the member functions to filter’ are not working?
Have you activated all the components?
Configure BuddyPress
All of the BuddyPress plugin files including the buddypress/bp-core/bp-core-component.php buddypress/bp-core/bp-core-template.php buddypress/bp-members/bp-members-template.php .
Also, the member functions to filter by alphabetical, last active, and newly registered. The BuddyPress plugin is active but the files are no longer active so it is not working.
I reinstalled it, same problem.
I’ve been having issues with the BuddyPress plugin. It started initially when a plugin was updated and the members filter stopped automatically updated. I noticed that the filter was not working either. I added some code to the filter and it started working, but still was not automatically updated. After reading many of these forums, I noticed that some of the files were inactive. One forum suggested to delete BuddyPress then Reactivate it. This caused all of the member filter functions to stop working again. I then deactivated the plugin, reuploaded the old BuddyPress plugin files from before I deleted it in hopes it would go back to what it was doing previous BUT when I reactivated it most all of the plugin files are inactive.
The initial problem happened in multiple WP themes. Please help me get the theme files active again and fix the ajax problem that it is having.
Thank you very much for your answer!
I thougth first that with BP 1.1 and higher you can now use a forum from within a component of buddypress directly instead of using bbPress.
I thank you, that you clarified that. So I will use bbPress furthermore 🙂
Best reagards,
Updated :
add_action('wp_ajax_messages_star','bp_course_messages_star');
function bp_course_messages_star(){
if(function_exists('bp_messages_star_set_action') && is_numeric($_POST['message_id']) && in_array($_POST['star_status'],array('star','unstar'))){
echo bp_messages_star_set_action(array(
'action' => $_POST['star_status'],
'message_id' => $_POST['message_id'],
'bulk' => false
));
}
die();
}
You also need to update the template files bp-default/members/single/messages/messages-loop.php
<?php do_action( 'bp_before_member_messages_loop' ); ?>
<?php if ( bp_has_message_threads( bp_ajax_querystring( 'messages' ) ) ) : ?>
<div class="pagination no-ajax" id="user-pag">
<div class="pag-count" id="messages-dir-count">
<?php bp_messages_pagination_count(); ?>
</div>
<div class="pagination-links" id="messages-dir-pag">
<?php bp_messages_pagination(); ?>
</div>
</div><!-- .pagination -->
<?php do_action( 'bp_after_member_messages_pagination' ); ?>
<?php do_action( 'bp_before_member_messages_threads' ); ?>
<table id="message-threads" class="messages-notices">
<thead>
<tr>
<th></th>
<th scope="col" class="thread-count">
</th>
<?php if ( bp_is_active( 'messages', 'star' ) ) : ?>
<th scope="col" class="thread-star"><span class="message-action-star"><span class="icon"></span> <span class="screen-reader-text"><?php _e( 'Star', 'buddypress' ); ?></span></span></th>
<?php endif; ?>
<th scope="col" class="thread-from"><?php _e( 'From', 'buddypress' ); ?></th>
<th scope="col" class="thread-info"><?php _e( 'Subject', 'buddypress' ); ?></th>
<?php
/**
* Fires inside the messages box table header to add a new column.
*
* This is to primarily add a <th> cell to the messages box table header. Use
* the related 'bp_messages_inbox_list_item' hook to add a <td> cell.
*
* @since BuddyPress (2.3.0)
*/
do_action( 'bp_messages_inbox_list_header' ); ?>
<th scope="col" class="thread-options"><?php _e( 'Actions', 'buddypress' ); ?></th>
</tr>
</thead>
<?php while ( bp_message_threads() ) : bp_message_thread(); ?>
<tr id="m-<?php bp_message_thread_id(); ?>" class="<?php bp_message_css_class(); ?><?php if ( bp_message_thread_has_unread() ) : ?> unread<?php else: ?> read<?php endif; ?>">
<td width="1%" class="thread-select">
<input type="checkbox" name="message_ids[]" value="<?php bp_message_thread_id(); ?>" />
</td>
<td width="1%" class="thread-count">
<span class="unread-count"><?php bp_message_thread_unread_count(); ?></span>
</td>
<?php if ( bp_is_active( 'messages', 'star' ) ) : ?>
<td width="1%" class="thread-star">
<?php bp_the_message_star_action_link( array( 'thread_id' => bp_get_message_thread_id() ) ); ?>
</td>
<?php endif; ?>
<td width="1%" class="thread-avatar"><?php bp_message_thread_avatar(); ?></td>
<?php if ( 'sentbox' != bp_current_action() ) : ?>
<td width="30%" class="thread-from">
<?php _e( 'From:', 'buddypress' ); ?> <?php bp_message_thread_from(); ?><br />
<span class="activity"><?php bp_message_thread_last_post_date(); ?></span>
</td>
<?php else: ?>
<td width="30%" class="thread-from">
<?php _e( 'To:', 'buddypress' ); ?> <?php bp_message_thread_to(); ?><br />
<span class="activity"><?php bp_message_thread_last_post_date(); ?></span>
</td>
<?php endif; ?>
<td width="50%" class="thread-info">
<p><a href="<?php bp_message_thread_view_link(); ?>" title="<?php _e( "View Message", "buddypress" ); ?>"><?php bp_message_thread_subject(); ?></a></p>
<p class="thread-excerpt"><?php bp_message_thread_excerpt(); ?></p>
</td>
<?php do_action( 'bp_messages_inbox_list_item' ); ?>
<td width="1%" class="thread-options">
<a class="ahref confirm" href="<?php bp_message_thread_delete_link(); ?>" title="<?php _e( "Delete Message", "buddypress" ); ?>"><?php _e( 'Delete', 'buddypress' ); ?></a>
</td>
</tr>
<?php endwhile; ?>
</table><!-- #message-threads -->
<div class="messages-options-nav">
<?php bp_messages_options(); ?>
</div><!-- .messages-options-nav -->
<?php do_action( 'bp_after_member_messages_threads' ); ?>
<?php do_action( 'bp_after_member_messages_options' ); ?>
<?php else: ?>
<div id="message" class="info">
<p><?php _e( 'Sorry, no messages were found.', 'buddypress' ); ?></p>
</div>
<?php endif;?>
<?php do_action( 'bp_after_member_messages_loop' ); ?>
Is it possible to hide buddypress pages from online scanners especially Sucuri Site Check? A scan with Sucuri reveals all pages and exposes group member’s names even if you can’t navigate to the page.
Solution by code edit or plugin will be deeply appreciated.
@shaquana_folks,
do you plan to ask the same question each day ? It’s the fourth time now, and you received many answers in the past 3 days. Or you received erroneous answers or you didn’t understand them or couldn’t find a solution by yourself. That’s life and i’m sorry for you but it’s just a forum here, not a miracle shop.
You say My hosting plan server is iPage (which uses NGINX), running a 5.0 PHP version.
If 5.0 is really the php version, you can’t use WP or BP with this old version as both require at least 5.2 version.
For Nginx server, have you read WP’s codex ?
https://codex.wordpress.org/Nginx
Search for nginx install on wordpress.org brings also several answers…
For paid consultants, post the job to http://jobs.wordpress.net/ or BP Jobs Board.
Hello,
The register form will not show on my website.
I have deactivated and reactivated Buddypress multiple times. I have downloaded and uploaded the plugin multiple times. I have changed my theme to the 2015 one and I’m still having the same problem. I have made a “register” page and have edited the fields that I want new users to fill out on the registration form too, but, although I have pointed for the registration form to go on the register page, there is no form for people to sign up. There is just the page I’ve created that says “register”, nothing else. I have also added a”log-in” page in my sidebar, which includes a “register” button. The button takes users to the “register” page that does not have the form for them to sign-up.
I have also checked my site on different browsers to see if the form will show, and it does not.
Very grateful for your help.
Hello dear experts!
I’m comparing buddypress suitable chat plugins. I’ve installed and checked out cometchat and wpmu chat. As far as I’ve seen (I’m newbie to buddypress), none of them and no other chat plugin I’ve found offers one-to-many messaging as facebook does. The only way to reach many users are their chatrooms, but these are visible to everybody, so not a private message (I categorize one-to-many messaging being private messaging, differently than a public chatroom).
Do you have a hint for a facebook-close chat solution?
Thank you & best wishes from Germany,
Jacob
I think it’s better to give registrants and newbies a break by warning them to not use spaces BEFORE they try first to register instead of frustrating them ‘neener neener’ after they do it wrong (don’t ya think?)
at wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/index.php
at line 46 then and 66 I added the following 2 edits in bold
/** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */
do_action( ‘template_notices’ ); ?>
<p><?php _e( ‘Registering for this site is easy. Just fill in the fields below, and we\’ll get a new account set up for you in no time. NO-SPACES-ALLOWED-IN-USER-NAMES. If you have an EXISTING ACCOUNT try logging in with Username (one-word) instead of User Name‘, ‘buddypress’ ); ?></p>
<?php
/**
* Fires before the display of member registration account details fields.
*
* @since BuddyPress (1.1.0)
*/
do_action( ‘bp_before_account_details_fields’ ); ?>
<div class=”register-section” id=”basic-details-section”>
<?php /***** Basic Account Details ******/ ?>
<h4><?php _e( ‘Account Details’, ‘buddypress’ ); ?></h4>
<label for=”signup_username”><?php _e( ‘Username NO SPACES‘, ‘buddypress’ ); ?> <?php _e( ‘(required)’, ‘buddypress’ ); ?></label>
<?php
`
Edit as you wish
Hello,
Thanks for the quick reply.
I tried the DMCA plug-in you recommended (Thanks) and it works but i like to watermark my images without a third party involved. Also i get the DMCA logo together with my own watermark on the picture and that’s not what I’m looking for.
Right now i have image watermark installed which is working fine on other blogs of mine except one due the Hueman theme.
On my Buddypress blog i have the theme magazine (Gavin) installed and when i go to the media library and try to apply the watermark, not one picture on the blog is actually watermarked.
And i did tried this with several plug-ins with no results.
Maybe it’s the theme?
OK I’ve been able to recreate the problem which has given me a much better understanding of what is going wrong. Worryingly, it seems the problem also affects anyone who’s signed up for the first time:
* New users (and some existing users) are shown the message “You cannot create new topics” in forums belonging to groups which they are not members of.
* They are also shown the message “You cannot reply to this topic” in topic threads of forums belonging to groups which they are not members of.
* If they join the group, these messages go away
I thought the way it was supposed to work was that users can post in any public forum, and when they do so for the first time they automatically become a member of that group. Is that correct? If so why isn’t that working here?
I have tried disabling all plugins (apart from BuddyPress and BBPress, of course) and using a default theme, all of which made no difference.
I am still unable to run the “Remap existing users to default forum roles” option in /wp-admin/tools.php?page=bbp-repair. If I disable all plugins (apart from BuddyPress and BBPress) then when I run it I get the following error:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 262144 bytes) in /var/www/f1fanatic/htdocs/wp-includes/cache.php on line 631
I am looking into whether I can raise the memory limit on the server to get it to run. In the meantime if anyone can shed any light on this problem please do!
thank you, i search plugin but i dont found one,
i try add custom field type”calendar date” or “selector repeat”…in users profil but it not exist.
also connector buddypress of advanced custom fields or custom fields suite its not exist
Hi,
I get the following error:
Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home/c5dh5rak/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
I’m using BuddyPress 2.3.1 and WP 4.2.2 Finnish.
The site is Homesome.com
Thanks for support =)
-Pihla
hi @aventurine_geode,
BuddyPress use templates and CSS which are all stored in bp-templates/bp-legacy/buddypress/
To modify them, you have to create first a child-theme and copy into it any of the files you want to modify, by respecting /path/file structure of the original /buddypress/ folder.
In brief, wp-content/themes/child-theme/buddypress/file
Most of your questions are related to CSS. You make these changes in /child-theme/style.css
To alter the searchbar, but depending of what you exactly want to do, see bp-templates/bp-legacy/buddypress/groups/index.php (similar path for members) or creating a custom function if more in-depth modification. In that case you put this function into bp-custom.php (wp-content/plugins/bp-custom.php) or into child-theme’s functions.php
More details can bee found on Codex
BuddyPress Theme Development
WP Version: 4.2.2
BP Version: 2.3.1
Hey all!
I’ve recently installed BP and so far the functionality is great, but unfortunately it didn’t integrate perfectly with my theme. I would like to go in and alter a few things, specifically:
* Customize the search bar on the Members and Groups pages
* Change the thickness and color of the horizontal rules used throughout
* Change the color of the buttons used throughout (‘Post Update’, ‘Comment’, ‘Delete’, ‘Favorite’ etc.)
* Remove the white circles behind the counters for Notifications, Messages, Friends etc. on user pages, as well as on the counters for Members and Group Members on those respective pages, and throughout
* Remove the text highlight on the selected “section” of the various pages
* Change the background color of the input fields throughout
I am comfortable enough with CSS to do this and I’m sure it’s a simple matter, but I understand Buddypress’ CSS is integrated into its PHP files and I’m having a little trouble navigating, as I’m not familiar with PHP.
Can anyone point me in the right direction as to where to access the style elements of the default BP theme to make these minor changes?
hi @fox_black
i’m pleased to see that you read the Codex. But sorry for your mention, there is also written a few words before: In BuddyPress 1.1 this all works with one click.
And if not enough, the paragraph title is Introduction for Forums in BP 1.2+
As of june 2015, current BuddyPress version is 2.3.1 and there is no forum included in BuddyPress, reason why you haven’t find any information.
Further on Codex you can read:
There are a couple of reasons why you might want to consider migrating to the bbPress plugin:
bbPress is being actively developed; the “Discussion Forums” component in BuddyPress is retiring as of BuddyPress 1.7. The retired component will continue to work, but no new features will be incorporated by the BuddyPress team.
bbPress has a bunch of cool features that BP Discussion Forums doesn’t: extensive moderation via the WP admin dashboard, topic splitting, revisions, spam management, favorites, subscriptions, and more.
See: https://codex.buddypress.org/legacy/getting-started/using-bbpress-2-2-with-buddypress/
If you want a forum aside BP you have to use a forum plugin and bbPress is recommended for that.
This is the BuddyPress support forum.
Try asking your question on the bbPress support forum.
Hello all,
i am trying to setup a forum with BuddyPress. After I read a lot about BuddyPress and bbPress I managed it easily to set up a forum together with both Plugins. However I read here: https://codex.buddypress.org/legacy/getting-started/buddypress-forum/
“…because [now] bbPress’s functions are available right within BuddyPress”
That sounds to me, that it should be possible to set a forum with BuddyPress standalone, without installing bbPress, isn’t it?
If it isn’t possible I will use bbPress furthermore. But if it is possible to set up a nice looking forum without bbPress I would like to set it up standalone without bbPress, because every plugin you dont need is a further security risk and needs to be updated and managed.
So I searched for that, but wasnt able to find something about it and I hope you could clarify if it is possible and how?
Best regards,
Can someone please help me? I’m still struggling with this. I’m using the Twenty Fifteen theme with only the BuddyPress plug in (2.3.1 version) activated. When I went and checked the back end again from my hosting plan provider, there was actually a lot of errors listed for my website. The only thing is that the representative said all the other errors listed have been resolved because he doesn’t see any other error messages on those that are listed in the error log. The only one he still sees on there is this message:
PHP Warning: strstr(): Empty needle in /hermes/bosweb26d/b246/ipg.sjfgraphixcom/myloopnetwork/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 781
So I went ahead and checked out this link for more info and support and created a ticket for someone to check out the coding in that bp-core-filters.php</string> file. Could this be the reason why the registration page is still not working? Please let me know what else I need to do to resolve this. My hosting plan server is iPage (which uses NGINX), running a 5.0 PHP version. I’m trying everything I can to get this registration page to work so any specific coding or edits that I need to place within any of these PHP files or if someone can go in my back end and fix the problem, that would be great.
Thank you.