Forum Replies Created
-
Thank you Shane. Topic is resolved.
@shanebp Here is my Gist. https://gist.github.com/anonymous/7913816
Hi Shane. Thank you for that lead. Using the example given Ive successfully filtered my diretory but I cannot make it so that members who selected CAT can only see others who selected CAT in the directory. I guess I need an example of how to put this conditional into t he members loop.
I doubt the password would be visible in the page source. Even if it is, no one will see it but the user him or herself, if they even think about randomly viewing the page source. Ordinary users dont view page sources, and as I stated before, I doubt the password would be visible in the source.
twenty twelve
I think this would be better as a plugin
@whiteeagle1985 a plugin can be written for this, but what options do you want??
Add as Co-Worker? Add as Family?
@stephan83 This worked for me in BP 1.6.
`
add_filter(
‘bp_core_signup_send_validation_email_message’,
‘add_user_data_to_message’,
10,
2
);function add_user_data_to_message( $msg, $user_id )
{
$user = get_user_by( ‘id’, $user_id );
return $msg . “\n\n” . var_export( $user, TRUE );
}
`Omg BP 1.7 = EPIC! Im testing the trunk right now.
You have all done an EPIC job!@gorod thats odd. deactivate all plugins except buddypress and see if the problem persists.
On the Tersus demo, I see the theme uses Jquery 1.8.1
If Im not mistaken, BuddyPress currently uses 1.7.1 OR 1.7.2
Some of the javascript features won’t properly work without resolving this conflict.
TO see if your theme is the problem, choose the BP -Default theme and try to create a group and send a message. If it works fine, you need to fix your theme javascript.
You should find it in functions.php
Hit ctrl+f to quickly search for ‘1.8.1’
Change it to 1.7.2 and save it. Then try to create groups and send messages with your new theme again.When you upload an avatar, does the crop feature work?
bp works , the problem is on your end.
1) what theme are you using?
2) are your permalink’s set to ‘postname’?@James – to add more profile fields to registration, go to your dashboard and under ‘Users’, choose Profile Fields. Add as necessary.
@jakewho yes but it involves the database. Are you comfortable with editing the database?
@jakewho you can allow them to automatcally login after registration which will set their status as “active”, allowing them to show up in the widget. If they complete activation but don’t login afterwards then they are not acounted as active until having logged in.
There is a plugin to automatically log users in after registration. You can find one on Buddydev and you can also google for it. I dont have it off the top of my head.
Buddedev has a plugin “facebook-like activity”
Search their plugins@kraigg you’re super welcome!
Kraigg, look closely at my code.
`created_group,new_forum_topic,new_forum_reply`
The code I originally had works andI tried to modify mine to include your forum and topic strings. In other words, I never used my code to include forum and topics so you’ll have to look into your database and find the action that is saved when a new topic and forum is created.
It could be `created_forum` – I don’t know but I’ll look into it.
Try changing this
`if ( bp_has_activities($args) ) : ?>`to this
`if (bp_has_activities(‘action=created_group,new_forum_topic,new_forum_reply’) ) : ?>`
I believe I have the answer for this in one of my old codes. Hand on , I’ll search for it
@echoman thats cool. I can help spruce up some graphics foor you, get you some nice logos. Let me know and I’ll make them available for you, @
What theme are you using?
Hi. I havent haf a chance to look through your css but i came up with this as a quick, temporary fix. Open your css file and hit ctrl+f and search for
–> .container_12 .grid_3
— add this:–> float:right;
so that full block should look like this :
.container_12 .grid_3 {
width: 220px;
float: right;
}