Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'custom activity page'

Viewing 25 results - 551 through 575 (of 831 total)
  • Author
    Search Results
  • @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/

    #130839
    9087877
    Inactive

    Go 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.

    kuching
    Participant

    oh 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

    kuching
    Participant

    so 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

    kuching
    Participant

    Oh 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!

    @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’ );

    #129812
    aces
    Participant

    Couldn’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

    snowlas
    Participant

    Again – many thanks for your hard work! WordPress and BuddyPress are just awesome. I just need help with 2 things. I’m including a photo.

    Screen Capture

    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!

    #129068
    Paul Wong-Gibbs
    Keymaster

    bp_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.

    #128819
    aces
    Participant

    Couldn’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…..

    #128750
    hhpask
    Member

    In 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) ?

    #128076
    @mercime
    Participant

    Your 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.

    #127802
    peeld
    Participant

    I 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!

    #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/

    #125581
    @mercime
    Participant

    Change 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/

    onyekat
    Member

    EEEEEEEEEEEEEEUREKAAAAAAAAAAAA. 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?

    onyekat
    Member

    on 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?

    @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.

    onyekat
    Member

    also , 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

    #124695
    bender001
    Member

    Yea, 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?

    @mercime
    Participant

    WP/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.

    #124096
    justbishop
    Member

    STOP 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…

    #124078
    candy2012
    Member

    Thanks 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!

    #123943
    candy2012
    Member

    if you put it in bp-custom crashes the site, if you try it in functions does not produce any changes.
    so no merge whatsoever unfortunately :-(

    Would be great if this would be doable somehow

    #123914
    arezki
    Participant

    Thanx @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.

Viewing 25 results - 551 through 575 (of 831 total)
Skip to toolbar