Search Results for 'custom activity page'
-
AuthorSearch Results
-
March 5, 2012 at 11:53 pm #130923@mercimeParticipant
@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?
9087877InactiveGo 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 #130577kuchingParticipantoh 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 #130565kuchingParticipantso 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 #130530kuchingParticipantOh 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 OgundipeParticipant@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?
acesParticipantCouldn’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 #129365snowlasParticipantAgain – 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-GibbsKeymasterbp_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
acesParticipantCouldn’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
hhpaskMemberIn 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
@mercimeParticipantYour 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
peeldParticipantI 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@ChrisClaytonParticipant“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
@mercimeParticipantChange 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 #125505onyekatMemberEEEEEEEEEEEEEEUREKAAAAAAAAAAAA. 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 #125491onyekatMemberon 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@mercimeParticipant== 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.
December 1, 2011 at 11:17 pm #125413onyekatMemberalso , i have used the template pack to move the files and completed the steps , but i still cant find the post button on any of the bp pages. my ht access file is fine
November 19, 2011 at 7:24 pm #124695In reply to: Commenting not showing on Activity stream..
bender001MemberYea, it’s custom theme. Before we were using BP 1.28 and the we had Activity page that recorded all comments and changes on members profiles…now we have only profile changes…We didn’t change theme since updating…
Do you think we should check for this option/code somwhere in our theme?
November 10, 2011 at 4:56 pm #124098@mercimeParticipantWP/BP versions? Change to bp-default theme to check if it’s an issue with your custom theme. If that’s not the case, then deactivate plugins except BuddyPress to check if it’s a plugin conflict.
November 10, 2011 at 4:51 pm #124096justbishopMemberSTOP THE PRESSES! I decided to give the block activity stream types plugin another try in my desperation, and it might actually be working WITHOUT messing with the custom post query on my index page that pulls featured posts for display! Still have more testing to do, but all I did was remove the `do_action( ‘bp_before_blog_post’ );` and `do_action( ‘bp_after_blog_post’ );` from around my featured post query, and voila, it loaded a post I marked as featured AFTER activating the block type plugin, and didn’t create a double entry about the editing of the post in my activity stream!
I know it’s not a REAL fix, but if it gets the job done, I’ll take it…
November 10, 2011 at 1:24 pm #124078candy2012MemberThanks for confirming the ímportance of this topic. I really cannot understand why BP does not even seem to want to look into it.
I would be happy even with a core / bp-custom hack, not necessary a plugin.
SOMETHING to help solve it!And no matter how much I looked and tried to get this done, nothing worked so far!
BP Team , PLEASE HELP US solve this!
Thanks!
November 8, 2011 at 1:13 am #123943candy2012Memberif you put it in bp-custom crashes the site, if you try it in functions does not produce any changes.
so no merge whatsoever unfortunatelyWould be great if this would be doable somehow
November 7, 2011 at 3:05 pm #123914In reply to: redirect to Profile and not ‘Activity’
arezkiParticipantThanx @modemlooper – I am not using a cache plugin. And you are right, I am interested in turning the profile as the default page of a user file not redirecting on login. Basically with the bp-custom-php file and 3 lines in it, the just messes up login in/out. After installing it, it would go blank upon log in/out.
-
AuthorSearch Results