Search Results for 'custom activity page'
-
Search Results
-
Topic: Activity groups post page
Hello,
I want some information on buddypress if is possible.
I have a website with groups
1. I want to create a page that my groups can post there, the page to look like the activity page.
So every group can post there as a group and not as username. For example if im register in that website and have the username “buddyroid” and im register in “buddy” group, when im visit the custom page that i want to create and post there to show that the post is from the group “buddy” .2. I want only the administrators of each group to post in that page, for example if i have one group with 20 members and 2 administrators , only that 2 administrators to can post in that custom page
Any ideas;
Sorry for my bad english
ThanksHi, am currently developing a buddypress website and would like to customise the activity stream layout, where the activity stream will be displayed in the middle of the page and the profile summary will be displayed on the left and wallfeed for example latest activity on the right side. Please kindly advise how to go about this? Or is there any plugins for this? Thanks.
1. Which version of WordPress are you running? 4.9.2
2. Did you install WordPress as a directory or subdomain install? directory
3. If a directory install, is it in root or in a subdirectory? root
4. Did you upgrade from a previous version of WordPress? If so, from which version? no
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes, definitely checked that, permalinks are set to “pretty urls”
6. Which version of BP are you running? 2.9.2
7. Did you upgraded from a previous version of BP? If so, from which version? no
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? No, we disabled all of them, it still isn’t working
9. Are you using the standard WordPress theme or customized theme? standard
10. Which theme do you use ? twentyseventeen
11. Have you modified the core files in any way? no
12. Do you have any custom functions in bp-custom.php? no
13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? No, disabled it, still not working
14. Please provide a list of any errors in your server’s log files.
[Mon Jan 15 20:34:25.026815 2018] [authz_core:error] [pid 1160] [client 52.33.40.5:59040] AH01630: client denied by server configuration: /var/www/transfamilies.org/web/.user.ini, referer: https://www.transfamilies.org/.user.ini
[Thu Jan 18 19:10:09.771753 2018] [fcgid:warn] [pid 29851] (32)Broken pipe: [client 73.221.194.79:54064] mod_fcgid: ap_pass_brigade failed in handle_request_ipc function, referer: https://www.transfamilies.org/wp-admin/plugins.php
[Thu Jan 18 19:45:39.653380 2018] [authz_core:error] [pid 31518] [client 52.33.40.5:60936] AH01630: client denied by server configuration: /var/www/transfamilies.org/web/.user.ini, referer: http://www.transfamilies.org/.user.ini
15. Which company provides your hosting? Amazon
16. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux, Ubuntu LTS, most recent version
Running most current version of WordPress, not on a subdomain. We have tried disabling all plugins and selecting the default theme (twenty seventeen) and the same issue persists.
BuddyPress (and bbpress) were previously installed and working. I then installed Theme-My-Login, but it disabled all login access. I removed Theme-My-Login via FTP and was able to log back in, but the Register and Login pages were no longer accessible. I deactivated and deleted BuddyPress and tried reinstalling.
Then I got this message:
“The following active BuddyPress Components do not have associated WordPress Pages: Members, Activity Streams, User Groups, Activate, Register. Repair”
BuddyPress had not created these pages on install. I’ve since tried several times to reinstall it, but same problem. I can create the pages, but they’re just blank.
That about covers it!Helloooooo everybody(I’m glad you’re taking the time to help me, and hey, we all start somewhere),
So I’ve been looking into BuddyPress for about a month now, and I still can’t decide if its what I need. I love it and I respect all its glory, So let me explain what I need.
1) The overview of my site
– I want users to come to my site, register, and log in. I would love to be able to customize the way these pages look!(background image, logo, and content inside them). With regard to my user experience, I need everything done from the front end because the backend is too confusing for members.2) What users can do on my site
– Okay, this is what I’m having trouble figuring out. I’m not looking for a full-blown social media site (yet). I want to build a site that where users can log in, create a “blog” excerpt with media and then post it.An example would be “Me and my dog” with photos, and a paragraph explaining. They should also be able to put a location tag on it. When they post it, the only people I want to see that are the people they added as friends or if they have their profile set to public. And when it shows up on their friend’s news feed it should just show a featured image, title, and the beginning of their text with a like counter.When their friends click on that post it brings them to the full blog post, not just the featured image. Their friends can favorite the content or comment on it. On a users profile, I would like to show their recent posts, and posts they’ve favorited. and that’s it. No excess information like a changed profile picture, etc. An extended bio profile would work great as well.– I’m not looking for messaging, groups, sitewide activity, or showcasing my own personal blog to the members. I would like this site to be customized solely for the user. I wouldn’t mind having a site homepage. Would I need to enable multi-site to allow this to happen?
3) I would like this to look simple, and clean; so that brings me up to my final hurdle. What theme should I use? I’ve been looking at X, Divi, and Soledad. Are any of these themes able to do what I’m looking for? I would love to just be able to customize how everything looks on my site.
Thanks & happy holidays
Hi,
I managed to customize my activity feed for a custom post type, however I’m struggling to influence the output of “standard” blog posts !
Ideally I would like to redirect the “format_callback” parameter to the custom callback I created for my custom post type, which should handle both standard and custom types ultimately.
I tried the following code, and the format_callback stayed desperately the same for the blog posts…
add_action( ‘bp_register_activity_actions’, ‘customize_posts_tracking_args’ );
function customize_posts_tracking_args() {
// Check if the Activity component is active before using it.
if ( ! bp_is_active( ‘activity’ ) ) return;
bp_activity_set_post_type_tracking_args( ‘post’, array(
‘component_id’ => buddypress()->blogs->id,
‘action_id’ => ‘new_blog_post’,
‘format_callback’ => ‘custom_format_activity_action_post’,
) );
}Then I also tried the filters, which I found in some web pages, but they didn’t work either for blog post type… The code below didn’t cause any change to my activity feed.
// Customize post publication activity feed content
add_filter(‘bp_blogs_record_activity_action’, ‘record_cpt_activity_content’);
add_filter(‘bp_blogs_record_activity_content’, ‘record_cpt_activity_content’);
function record_cpt_activity_content( $cpt ) {
echo “Any text”;
$cpt=’Any text’;
$cpt[‘content’]=’Any text’;
return $cpt;
}Any help is very welcome here !!!
Regards,
Pascal.
Topic: customize members page
hi,
i want to customize members info shown in members list page,in the list of all users, i want to show something more than the name and last activity online.
i created customed fields for the inner-page of the user, but they don’t show in the members list page.how can i do this?
thank you.I tried to add some shortcode to the Activity page via Admin Dashboard > Pages > Activity > Page Edit Section, but it’s not rendering, instead it just renders the actual text for the shortcode.
Is there a way to allow BP page to render shortcodes from the page content?
I read on another forum to do the following but it was and old forum and I can’t find that file he referred to:
Try replacing line 39 of content-buddypress.php
$custom_content = wpautop( get_the_content() );
with this:
$custom_content = do_shortcode( get_the_content() );Any ideas?
Hi, I am trying to add a custom nav link titled “sub-members” to buddypress profiles that shows a list of members who inherit membership to my client’s services through the parent member. I have successfully added the custom nav link to the profile by inserting some code into bp-custom.php and I have successfully called the contents of a members loop template into the page (I will add filtering for the members loop after initial functionality is in place.)
Here is my code below:
<?php function add_communications_tabs() { global $bp; if (xprofile_get_field_data('Sub-Members') == "Yes") : bp_core_new_nav_item( array( 'name' => 'Sub-Members', 'slug' => 'submembers', 'parent_url' => $bp->displayed_user->domain, 'parent_slug' => $bp->profile->slug, 'screen_function' => 'submembers_screen', 'position' => 100, 'default_subnav_slug' => 'submembers' ) ); endif; } add_action( 'bp_setup_nav', 'add_communications_tabs', 100 ); function submembers_screen() { add_action( 'bp_template_content', 'submembers_screen_content' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } function submembers_screen_title() { echo $_POST[bp_displayed_user_id()]; echo 'Sub-members of '.bp_get_displayed_user_fullname().'<br/>'; } function submembers_screen_content() { get_template_part( '\buddypress\members\members', 'loop' ); } ?>
Here is my problem:
Pagination and any other function using ajax seems to break when the members loop is placed here.
It seems that while ajax work fine for the members loop when placed on a normal page outside the profile–and I should also mention ajax works fine for built-in Buddypress profile functions like activity stream posting–the same cannot be said for my members loop or any other content I test on the custom-made ‘sub-members’ page that requires ajax functionality. For instance, when I try to click on a link within the pagination on the member loop within the ‘sub-members’ page, the link is correct (loads the next page in the loop if it were to be opened in a new tab), but nothing happens when it is clicked.
Steps I tried to pinpoint the issue:
– Disabled all plugins besides Buddypress for potential conflicts
– Inserted other ajax content independent of Buddypress onto the ‘sub-members’ page (this content failed too)
– Tested the Members Loop within existing profile page templates to see if it had to do with inserting it onto a custom Buddypress page (loaded it on the “Activity” page and the ajax didn’t work for this either)
– Tried to enqueue ajax.php and other relevant scripts despite the fact that in the <head> section, it seems they are being called correctly and working for other built-in ajax calls.I have spent many hours trying to figure this out and I would greatly appreciate any help as I am truly stumped and not very knowledgeable about ajax. Thank you
Hi everyone. I would like to know if you can give access to the page (admin) bp-activity with the list of all activities, to a specific user role.
My customers in the future need to see the whole list of activities from the wordpress back-end.Topic: Login Issues
Wordpress 4.8.3, BuddyPress 2.9.2, self hosted on an Apache (shared) server.
I really want this to work but I install WP and BP without errors. I set ‘activity’ as a static front page. I test the site (there are no other users) and all looks OK.
I logout. I login. The page still appears to be logged out. The page doesn’t refresh to the ‘activity’ page with me as logged in.
I have tried with themes twentyfifteen, sixteen and seventeen.
I’ve searched the entire internet for a solution, not just here, and many people suggest redirect plugins. I’ve tried a few but it doesn’t work for me.
Some solutions suggest bp_custom code. I tried and it didn’t work.
The only solution I sort of found for myself was to place a “who’s online” widget on the page. After I login (and appear logged out) I click the link in the widget to my profile page. Then I can return to the home page and see I am logged in, BUT even that sometimes fails.
Please, someone, tell me what causes this incorrect login issue and how to finally resolve it.
Thank you in advance for any help given on this…
The aim…
- What we’d like is to add a new top level tab (such as Activity, Profile & Notifications) entitled “Add content”.
- The “Add content” tab should have the following sub-navigation sections… “Create article”, “Create event”, “Create vacancy” & “Create Service Listing”.
- Each of the tabs above should only be visible to the logged in user on their own profile.
We’ll be including front-end publishing forms in each tab.
Let’s be honest…
If you feel that this would cause any issues, be too much hassle or just wouldn’t work, please feel free to tell me straight as there is an alternative method I can use (Creating specific pages requiring login etc).Hi,
I have this code below for one custom post type to be shown in the activity feed. All works fine, but how can i use this also for an extra CTP?I tried adding an extra line
add_post_type_support( 'listing_2', 'buddypress-activity' );
But that is not working. Also i rather have different tracking_args for the different custom post types.Anyone? Thanks!
<?php //Listing activity support function customize_page_tracking_args_listing() { // Check if the Activity component is active before using it. if ( ! bp_is_active( 'activity' ) ) { return; } // Don't forget to add the 'buddypress-activity' support! add_post_type_support( 'listing', 'buddypress-activity' ); /** * Also don't forget to allow comments from the WordPress Edit Page screen * see this screencap https://cldup.com/nsl4TxBV_j.png */ bp_activity_set_post_type_tracking_args( 'listing', array( 'action_id' => 'new_listing', 'bp_activity_admin_filter' => __( 'Vermelding toegevoegd', 'custom-textdomain' ), 'bp_activity_front_filter' => __( 'Vermelding', 'custom-textdomain' ), 'bp_activity_new_post' => __( '%1$s heeft een nieuwe vermelding genaamd <a href="%2$s">[vermelding]</a> toegevoegd', 'custom-textdomain' ), 'contexts' => array( 'activity', 'member' ), 'comment_action_id' => 'new_listing_comment', 'bp_activity_comments_admin_filter' => __( 'Reageerde op vermelding', 'custom-textdomain' ), 'bp_activity_comments_front_filter' => __( 'Reacties op vermelding', 'custom-textdomain' ), 'bp_activity_new_comment' => __( '%1$s reageerde op <a href="%2$s">een vermelding</a>', 'custom-textdomain' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args_listing', 1000 ); function new_listing_include_post_type_title( $action, $activity ) { if ( empty( $activity->id ) ) { return $action; } if ( 'new_listing' != $activity->type ) { return $action; } preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches ); if ( empty( $matches[1][1] ) || '[vermelding]' != $matches[1][1] ) { return $action; } $post_type_title = bp_activity_get_meta( $activity->id, 'post_title' ); if ( empty( $post_type_title ) ) { switch_to_blog( $activity->item_id ); $post_type_title = get_post_field( 'post_title', $activity->secondary_item_id ); // We have a title save it in activity meta to avoid switching blogs too much if ( ! empty( $post_type_title ) ) { bp_activity_update_meta( $activity->id, 'post_title', $post_type_title ); } restore_current_blog(); } return str_replace( $matches[1][1], esc_html( $post_type_title ), $action ); } add_filter( 'bp_activity_custom_post_type_post_action', 'new_listing_include_post_type_title', 10, 2 );