and at the bottom of the same file, replace
`
Worked it out! For those who are interested in how to do this, you need to go to wp-content/plugins/buddypress/bp-activity/bp-activity-templatetags.php and delete this code:
`if ( is_user_logged_in() )
$content .= ‘ · id . ‘” class=”acomment-reply” id=”acomment-reply-‘ . $activities_template->activity->id . ‘”>’ . __( ‘Reply’, ‘buddypress’ ) . ‘‘;`
I am really sorry @boonebgorges I am such a beginner with PhP I wouldn’t know where to begin 
@bgrun80 Hello there Ben. There is a much simpler way of using a Date Of Birth check. A simple plug in called “BP Xtra Signup” will do this for you. The plug in also gives you other fields to be added on the sign up page, for example Agree To Terms & Conditions, Password Strength Meter and Username Availability, to name a few. Definitely should check the plug in out, much simpler than writing codex yourself.
@mercime thanks for the reply
im using wordpress 3.1.2, buddypress 1.2.8, directory install, wp functioning properly, bbpress built-in,
standard theme.plugins:
jet event system
bp moderation
cubepoints
private bp
google analytics
erocks dashboard lockdown
bp privacy
bp profile search
bp album+
thanks you for the help
greetings!
if I put only code from your last post, it adds “view” button to all activities, which acts 100% like “reply” button (hides/reveals text box).
if additionally I put your function from previous post, then I get “Parse error: syntax error, unexpected T_RETURN” again 
actually, I thought it will be another copy/past work. if it takes lots of time, no need to bother about.
thanks!
This, more than likely, isn’t a BP issue, and BP just piggybacks on WP’s settings. More than likely this is an issue where WP Multisite hasn’t been set up properly, of possibly an issue with your PHP install.
@janismo Yep. I see the problem. Sorry about that. It’s a lot harder to catch your mistakes when you’re not using a dedicated code editor
Try this instead.
`
<a href="” class=”acomment-reply” id=”acomment-comment-“>
<a href="” class=”acomment-reply” id=”acomment-comment-“> ()
`
thanks @el_terko ,
it works, but do you know how to remove reply button for certain activities and change order of meta buttons. At the moment view button stands 4 in a row?
Hey there, I haven’t seen a reply here yet, but I did look a bit more into the issue. What I checked is that the root of the directory that BP is trying to create points to “/var/www/” and this is not how my server structure works.
I believe this is a default setting that can somehow be changed. Is there a way to change it?
13 BuddyPress template files were transferred to your active WordPress theme during the BP template pack process. Download said 13 BP template files to your computer and start making the following revisions starting with the activity/index.php file:
At the top of the file, replace:
`
with
`
and at the bottom of the same file, replace
`
`
with
`
`
Save and do the same for the remaining 12 BP template files. Upload to server.
Check this page for other tips: https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
hi @cnorris23 ,
tried to implement your changes, result is (for functions.php):
Parse error: syntax error, unexpected T_RETURN
Looks like you installed WP in community subfolder. Unfortunately, you haven’t uploaded all the WordPress files and folder required to make it work. Before installing BuddyPress, make sure that your WordPress install is working well
https://codex.buddypress.org/getting-started/before-installing/
This *ought* to work fine in BP 1.2.8. If, however, you’re sure it isn’t (and it’s not an odd conflict with another plugin), please report a bug on https://trac.buddypress.org/, using your username & password from this site. Cheers!
Thanks for your response Brandon. I used other email addresses that I operate and I never received any email from my site or from WordPress/buddypress. Is there something I need to activate or set up to make those emails go out?
hi thanks for the reply. However i’m not sure what code out of those comments you mean. I don’t see anything in there about a redirect to registration page.
and I have 2 function files… one in my buddypress theme folder and one in the wp theme default folder. wich one is it.
Do you want to take your question over to WPMU? You can pay for a response over there. 
wow i asked this question 4 months ago…. and no response.
Good thing i figured this out on my own..
my-columns will have it’s own style.css (as it is a clone of bp columns which has one) and that is where you change the font sizes and colours etc. It will overwrite the css in buddypress default theme. So you could change the font size by writing
`body {
font-size: 14px;
}`
in the my columns style.css file….
You can quite often see what needs to be changed using developer tools built into ie8 or firebug in firefox (and equivalents for other browsers). Firebug has a neat trick of being able to show changes as you make them….
As you are creating a child of bp default your changes won’t be lost when bp default is upgraded… bp columns is now a different theme and if it is upgraded you would need to compare the changes manually…
I actually used this method with bp columns to create the child of bp default I used here
You might also find https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ useful if you haven’t already seen it!
Nope. Just make the changes @aces gave you, and you’ll be ready to edit how you please
You’ll only to change the css in your new my_columns theme.
This would take some code work, because neither bbPress or BuddyPress store this information. You would need to hook into ‘groups_edit_forum_post’ and the use bb_update_postmeta() and bb_get_postmeta() to save/retrieve the information. The following will get you started:
`my_update_forum_post_last_edited( $post_id ) {
global $bp;
do_action( ‘bbpress_init’ );
$post_id = (int) $post_id;
if ( empty( $post_id ) )
return;
bb_update_postmeta( $post_meta, ‘last_edited_date’, bp_core_current_time() );
bb_update_postmeta( $post_meta, ‘last_edited_user’, $bp->loggedin_user->id );
}
add_action( ‘groups_edit_forum_post’, ‘my_update_post_lasted_edited’ );
function my_display_forum_post_last_edited() {
do_action( ‘bbpress_init’ );
$last_edited_user = bb_get_postmeta( bp_get_the_topic_post_id(), ‘last_edited_user’ );
$last_edited_date = bb_get_postmeta( bp_get_the_topic_post_id(), ‘last_edited_date’ );
if ( empty( $last_edited_user ) || empty( $last_edited_date ) )
return;
echo ‘Last edited by ‘ . bp_core_get_user_display_name( $last_edited_user ) . ‘ on ‘ . bp_format_time( $last_edited_date ) . ‘ ‘;
}
add_action( ‘bp_group_forum_post_meta’, ‘my_display_forum_post_last_edited’ );`
Fixed in trunk:
https://trac.buddypress.org/changeset/3578