Search Results for 'custom activity page'
-
AuthorSearch Results
-
April 14, 2012 at 10:20 pm #132974
In reply to: /activity is missing?
@ChrisClayton
Participant@Ubuntuz – Assuming that the activity page is the only page not working then, BuddyPress (with your permission) does create it during the activation process. To check if it was created properly go to your wp-admin and then click Buddypress’ menu and then click the ‘pages’ tab. Does it have a page selected for activity?
Also are you using a custom theme or bp-default theme? if it’s a custom theme then the page will show a white-screen if you do not have an activity/index.php template in your theme.
April 5, 2012 at 3:33 am #132449In reply to: [Unresolved] Activity Filtering
modemlooper
ModeratorTrust me when is say that 90% of topics posted here have been posted before many times over. Try google searches instead of looking here.
If your topic is not on the first few pages when a core dev or volunteer support user is logged in then you can pretty much forget about getting your topic answered. People are just not going through the back log of support requests. Core devs have time filled with making the software work as advertised. Customization is on you.
This is just the nature of using free software.
When posting topics: post your request, search here to see if you can find an answer, google keywords pertaining to your request. If 24 hours has past with no response bump the topic. What another 24 hours. If you get no response seek out a developer for hire.
March 31, 2012 at 5:46 am #132181In reply to: Unified Profile Page?
@ChrisClayton
Participant@BossX – As in, similar to the wordpress profiles (https://profiles.wordpress.org/matt)?
Yes, it’s possible through a custom theme.The top part with the profile information is simply the members/single/member-header.php file with code to insert their bio and other info – See: http://bp-tricks.com/snippets/displaying-certain-profile-fields-on-your-members-profile-page/
The bottom part is the members/single/profile.php template (their activity is an external custom built activity stream, but the theory is the same… just add the activity loop) – See: https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
And then they changed the default profile view from the activity view to profile with – define( ‘BP_DEFAULT_COMPONENT’, ‘profile’ );
March 26, 2012 at 10:05 pm #131987In reply to: Segregate BP All Users List?
coreymj78
MemberI think I found a solution! But I don’t quite know how to edit the code. According to this page:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/you can use THIS parameter on the bp_has_members() function:
user_id optional
Limit the members returned to only friend connections of the logged in user.
Default value: false….that when people clicked All Members (if I understand this right), it would only show them users which they have FRIENDED and because they can only FRIEND users who they can see activity for, which are members who sign up and join groups on THEIR site, the resulting effect would be a filter for users on other sites, users they can’t see activity for, correct?
Now, how on earth do I use this paramater on this function and what would the resulting code look like? I’m sure that’s an easy one for you guys right?
March 21, 2012 at 12:37 am #131716In reply to: [Resolved] Change default tab on user pages?
@mercime
Participant1. Create a bp-custom.php file https://codex.buddypress.org/extending-buddypress/bp-custom-php/
2. Change the default tab opened when looking at a user’s profile (default is activity), insert the following :
`define( ‘BP_DEFAULT_COMPONENT’, ‘profile’ ); `
Ref: https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/March 11, 2012 at 5:00 am #131165In reply to: Customizing the Registration page
ORyanMcentire
MemberFirst, if you have a different problem start a new thread.
You need to make sure you have turned on “Anyone can register” under settings > general
then you need to make sure your registration and activation pages are set up in the buddypress settings.Second, you can’t currently search these forums. Extremely annoying and frustrating. Not to mention notifications and activity don’t seem to be working either so you have to search through the forum every time you want to check on your threads.
March 9, 2012 at 6:29 pm #131104shanebp
ModeratorWe use Aurigma Up on a custom mobile page for iPhone/iPad. Works great. Uploads to your server.
Then use bp_activity_add() – you should be able to adapt this example.
http://bp-tricks.com/snippets/adding-a-new-activity-stream-entry-when-a-user-changes-his-avatar/For Apple – you need to check orientation using exif_read_data
For Android – you don’t need it for uploads – but the Avatar crop tool doesn’t work, so we did a custom page for that which includes basic auto-crop.
For both Android and Apple, we use this lib for rotation, thumbnails, resizing and cropping.
https://github.com/masterexploder/PHPThumb/wiki/Basic-Usage
Why not use WP methods? This lib gives us more control and better results.Note: we don’t use BP Mobile, so there is probably a better way if you do use it.
March 5, 2012 at 11:53 pm #130923@mercime
Participant@thesurfinstitute Following is the simplest way to make your theme compatible:
If you’ve changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility. (make sure Sliding Door Child theme is activated before you run this)
A. Copy your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the bottom of the file, below all other code, add this:
``Save file.
B. Create a BLANK sidebar-buddypress.php and add this line only
`
`
Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to wp-content/themes/sliding-door-child/
D. Style modifications for BP templates – you might want to use some or all of styles listed in this page https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
March 3, 2012 at 8:02 pm #130839In reply to: Disable status updates?
9087877
InactiveGo to the dashboard, under BuddyPress in the left pane select components. Uncheck the checkbox to the left beside Activity Stream. You may also want to create a custom menu while in the dashboard under appearance/menus and name it, make sure under theme locations/primary navigation you select the name you created and save it. Down below check all the post and pages you want to add to the navigation and click the Add to Menu button. To the left you can drag the boxes in the order you want the post/pages to display in the navigation menu. Make sure you save the menu. This way only the items you want you up on the front end navigation and in the buddybar at the top.
February 28, 2012 at 9:50 am #130577kuching
Participantoh ok I see.. well I guess I’ll turn off altogether all profile activities at this point because I don’t use groups, forums with bb2.0 are not supported and commenting on posts is neither
I’ll look forward for BP1.6
is much code going to change from bp1.5.x to 1.6? right now I’m developing some custom theme for wp/bb/bp and customising the profile pages as well (like inserting new tabs…) I hope it won’t break when I’ll upgrade to 1.6
thanks
February 28, 2012 at 5:04 am #130565kuching
Participantso what’s preventing to the comments to custom post type posts to appear in the activity feed? or do I have to modify the comments template?
Thanks Paul
February 27, 2012 at 5:57 pm #130530kuching
ParticipantOh I see..
So both the forum tab and forum activity on the activity feed are disabled because of lack of support for BBpress 2.0 plugin?
But how about the reason why comments made on other custom post types posts won’t work? is it the for similar reasons? ( in that case unsurprisingly because BBPress 2.0 is essentially cpt at work)
will that be fixed altogether with 1.6? and when 1.6 is going to be released, realistically?
thank you!
February 26, 2012 at 9:22 pm #130490Prince Abiola Ogundipe
Participant@tjbrewers, try the below methood, thats what am using
/*Change the number of activity items to show per page */
function my_custom_query_filter( $query_string ) {
$query_string .= ‘&per_page=11’;
return $query_string;
}
add_filter( ‘bp_dtheme_ajax_querystring’, ‘my_custom_query_filter’ );February 14, 2012 at 10:09 pm #129812In reply to: Re-direct to other page?
aces
ParticipantCouldn’t you use something like travel-junkie’s walled garden technique:
`
function sh_walled_garden()
{
global $bp;
if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}add_action( ‘bp_init’, ‘sh_walled_garden’ );
`
This goes in bp-custom.php and hides members and activity from those not logged in but enables forums and groups for everyone. It can also be customised…..Chris Clayton discussed a similar method here
Having different menus for logged in users is discussed here – also see here
February 6, 2012 at 5:01 pm #129365snowlas
ParticipantAgain – many thanks for your hard work! WordPress and BuddyPress are just awesome. I just need help with 2 things. I’m including a photo.
1. I’m not sure where to get the custom background code or if I should place it somewhere in the buddypress default theme or my style sheet.
2. I went into each page for group, activate, register, activity, etc, that buddy press made. Set the template to a full width template. This did not get rid of the sidebar when I’m in buddypress pages. I want to get rid of the sidebar all together.
Thank you!
February 2, 2012 at 7:17 am #129068In reply to: Active Sometime Ago – FIXED
Paul Wong-Gibbs
Keymasterbp_member_last_active() is only used in the members directory / member’s friend pages. It’s not in the default theme’s activity stream. I assume therefore you’re running a custom theme, which we’ll need to adjust. Did you create it yourself, or download it from somewhere? If the latter, hopefully the vendor offers support.
January 30, 2012 at 12:39 am #128819In reply to: Members Only BuddyPress
aces
ParticipantCouldn’t you use something like travel-junkie’s walled garden technique:
`
function sh_walled_garden()
{
global $bp;
if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}
add_action( ‘bp_init’, ‘sh_walled_garden’ );
`
This goes in bp-custom.php and hides members and activity from those not logged in but enables forums and groups for everyone. It can also be customised…..January 28, 2012 at 10:07 am #128750In reply to: Adding New Navigation and New Tab
hhpask
MemberIn user’s profile page, there are a menu activity, profile,setting,groups, how to add a new menu like that ?
And when I click profile, it will show public,edit, and change avatar tab, how to add a new tab ?
And how to customize them (default navigation and tabs) ?January 16, 2012 at 6:25 pm #128076In reply to: Registration Page Looks Wonky
@mercime
ParticipantYour BP pages like activity, members, groups, etc. look unstyled as well. Unfortunately, artisteer-generated themes are the d-v-l to customize. No shortcodes at this time. Probably in the future.
January 11, 2012 at 5:20 am #127802In reply to: [Resolved] Associate Pages showing up blank
peeld
ParticipantI am having a similar issue. Upgraded to latest BP and WP, and now although ALL of the other associated pages, Activity, Members, Forum, etc., are working, the page I’ve mapped for the groups to show up on does NOT. Flushing permalinks didn’t help. Trying to associate to a new page didn’t help.
I have redefined the groups slug in bp-custom.php, but removing that line didn’t change anything. Please advise. Urgent!
January 6, 2012 at 5:35 am #127516@ChrisClayton
Participant“Or have a link that explains how?”
Ask, and you shall recieve! https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
December 4, 2011 at 11:25 pm #125581In reply to: Problems with activity page and group page
@mercime
ParticipantChange to bp-default theme and you’ll see all the Pages generated so far. Use custom menu feature and choose which links you want to be there in main navigation. https://codex.buddypress.org/extending-buddypress/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
December 3, 2011 at 2:00 pm #125505onyekat
MemberEEEEEEEEEEEEEEUREKAAAAAAAAAAAA. I found a solution .i installed WP jQuery CDN(https://wordpress.org/extend/plugins/wp-jquery-cdn/) and voila ! i replied to a comment on the site. But one more problem to solve. Why isnt it listing all my members on the members page?
December 3, 2011 at 6:57 am #125491onyekat
Memberon another installation , the post button turns up at times but comments or replies cant be made. they lead to 404 error pages. so what do you suggest i do?
December 2, 2011 at 3:13 am #125415@mercime
Participant== another theme(travel blogger 1.3.5) i dont see the post button for activities to be updated. also with this theme , bp reports only 4 registered members instead of 10 ==
@onyekat I will assume you’re using this Travel Blogger theme https://wordpress.org/extend/themes/travel-blogger
Just activated the theme in my test install and I see the “Post” button in activity stream (plus all other buttons) and the correct number of members are showing up. But there is a problem I saw so far: although one can post status update in activity stream but comments/replies on an activity stream posts lead to 404 error page.There’s JS conflict between Travel Blogger and BP.
-
AuthorSearch Results