-
@ChrisClayton replied to the topic How can I get the activity like facebooks? in the forum Installing BuddyPress 11 years, 12 months ago
Peter, there is a scope to show only friends in activity -https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
Showing the logged in user’s activity as well will require […] -
@ChrisClayton updated the Theme Compatibility page, on the BuddyPress Codex 12 years, 3 months ago
N.B.1: This list is based on the beta therefore unless you see them listed as work you should assume won’t as it’s still in beta. Most theme designers and developers will be updating so please be patient and […]
-
@ChrisClayton replied to the forum topic Buddypress Teams? in the group How-To and Troubleshooting 12 years, 5 months ago
@vienem to do what your trying to do (essentially cloning the groups functionality and giving it a different usage) is quite complex (I’ve done it for another site of mine, and it wasn’t quick. Can’t share the […]
-
@ChrisClayton replied to the forum topic What is the purpose of do_action('bp_after_message_content') in the group How-To and Troubleshooting 12 years, 5 months ago
The wp_footer() and wp_head() functions located in the footer and header files use just do_action to print all of there ‘stuff’ (meta, css, js […]
-
@ChrisClayton replied to the forum topic What is the purpose of do_action('bp_after_message_content') in the group How-To and Troubleshooting 12 years, 5 months ago
@thirstcard
The do_action() creates a hook. Basically it prints out the contents of the function that is added to that tag (bp_after_message_content) with add_action.Usage? Let’s say Developer A makes a […]
-
@ChrisClayton replied to the forum topic image beside username by user role in the group How-To and Troubleshooting 12 years, 6 months ago
You will need to make a function that finds the role for the displayed user.
See: https://codex.wordpress.org/Class_Reference/WP_User
You will want to use a BuddyPress function in the ID paramenter instead of the […] -
@ChrisClayton replied to the forum topic Display names are not usernames in the group How-To and Troubleshooting 12 years, 6 months ago
Not sure if it still works as intended as it is about two years old but you might want to have a look at this plugin. https://wordpress.org/extend/plugins/buddypress-usernames-only/
-
@ChrisClayton replied to the forum topic Trying to generate an activity id in the group How-To and Troubleshooting 12 years, 6 months ago
because of your use of
$post->ID
I think you might need to use…
global $bp, $post;
-
@ChrisClayton replied to the forum topic This is a notice to all users. Doesn't work in the group How-To and Troubleshooting 12 years, 6 months ago
It should display whereever
bp_message_get_notices();
is located in the template files (in the default theme, by default it should show when theirs a message and the user is logged in, right below the log out […] -
@ChrisClayton replied to the forum topic This is a notice to all users. Doesn't work in the group How-To and Troubleshooting 12 years, 6 months ago
@neodjandre – The way the feature works is somewhat deceptive, what it does is posts a message on the screen (rather than their inbox) similar to what facebook does here – […]
-
@ChrisClayton replied to the forum topic User management and permissions. in the group How-To and Troubleshooting 12 years, 6 months ago
@o4tuna the way buddypress works in regards to roles and capabilities is being worked on by the core devs, half of it will be implemented in 1.6. Trac: https://buddypress.trac.wordpress.org/ticket/3740
-
@ChrisClayton replied to the forum topic Better Introduction Needed in the group Requests & Feedback 12 years, 6 months ago
`I wish there was more written about what buddypress can do and what the end result will look like. I don’t like the examples in the showcase because they don’t even remotely look like the buddypress that I have. […]
-
@ChrisClayton replied to the forum topic Buddypres query_posts by user in the group Creating & Extending 12 years, 6 months ago
`function my_profile_page_function_to_show_screen333_content() {
global $bp;query_posts( ‘author=’ . $bp-displayed_user-id );
// the Loop
if (have_posts()) : the_post();
the_content( ‘Read the full […] -
@ChrisClayton replied to the forum topic Missing the join group button? in the group How-To and Troubleshooting 12 years, 6 months ago
Have you registered the buttons in your theme?
https://buddypress.trac.wordpress.org/browser/trunk/bp-themes/bp-default/functions.php#L125
`add_action( ‘bp_group_header_actions’, […]
-
@ChrisClayton replied to the forum topic Buddypres query_posts by user in the group Creating & Extending 12 years, 6 months ago
@yanodnoralov – You do have
global $bp;
inside the function, right? (Just checking, sometimes it’s the simplest things that get overlooked) -
@ChrisClayton replied to the forum topic Share Activity on Social Network …. in the group How-To and Troubleshooting 12 years, 6 months ago
@raoulbeltra either within a plugin file or your themes functions.php
You can read more at https://codex.wordpress.org/Writing_a_PluginFrom what i understand you are trying to do, then yes, just replace `echo […]
-
@ChrisClayton replied to the forum topic New users get access to main sites dash board? in the group How-To and Troubleshooting 12 years, 6 months ago
” they apparently have access to my dash board. Does anybody have an idea how to set things straight on this issue?”
They sure do. They don’t see anything though – […] -
@ChrisClayton replied to the forum topic Share Activity on Social Network …. in the group How-To and Troubleshooting 12 years, 6 months ago
It will do_(any)_action you tell it to do 😉
`function cc_awesome_activity_meta_shortcodes() {
echo do_shortcode(‘SexyButton’);
}add_action(‘bp_activity_entry_meta’, […]
-
@ChrisClayton replied to the forum topic Make changes to the account activated page. in the group How-To and Troubleshooting 12 years, 6 months ago
line 17 of registration/activate.php in your theme.
https://buddypress.trac.wordpress.org/browser/trunk/bp-themes/bp-default/registration/activate.php#L17 -
@ChrisClayton replied to the forum topic How to Create a New Login Page in the group How-To and Troubleshooting 12 years, 6 months ago
Their is no core supported way to customise it at this stage but their are tickets discussing the best method for it.
SEE: https://buddypress.trac.wordpress.org/ticket/2125Their are plugins though that help […]
- Load More
@chrisclayton
Active 4 years, 7 months ago