Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'custom activity page'

Viewing 25 results - 451 through 475 (of 728 total)
  • Author
    Search Results
  • 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.

    #123711
    thegblog
    Member

    I am also having this problem. Can anyone help me? Thanks in advance:

    I’m running wp 3.2.1, on main directory in root, using bp version 1.5.1that was never upgraded. I have no other plugins activated on the subdomain I’m running buddypress from. I’m using the standard bp theme that came with the plugin for this and I modified my wp-config to allow bp to run on subdomain (runs on members.mysite.com): here’s the info in bp-custom.php
    `<?php
    define ( ‘BP_ENABLE_MULTIBLOG’, true );
    define ( ‘BP_ENABLE_ROOT_PROFILES’, true );
    define( ‘BP_DEFAULT_COMPONENT’, ‘profile’ );
    define ( ‘BP_ROOT_BLOG’, $blog_id );
    define( ‘BP_SILENCE_THEME_NOTICE’, true );
    define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true );
    define ( ‘BP_ACTIVITY_SLUG’, ‘streams’ );
    define ( ‘BP_BLOGS_SLUG’, ‘journals’ );
    define ( ‘BP_MEMBERS_SLUG’, ‘users’ );
    define ( ‘BP_FRIENDS_SLUG’, ‘peeps’ );
    define ( ‘BP_GROUPS_SLUG’, ‘gatherings’ );
    define ( ‘BP_FORUMS_SLUG’, ‘discussions’ );
    define ( ‘BP_MESSAGES_SLUG’, ‘notes’ );
    define ( ‘BP_WIRE_SLUG’, ‘pinboard’ );
    define ( ‘BP_XPROFILE_SLUG’, ‘info’ );
    define ( ‘BP_REGISTER_SLUG’, ‘signup’ );
    define ( ‘BP_ACTIVATION_SLUG’, ‘enable’ );
    define ( ‘BP_SEARCH_SLUG’, ‘find’ );
    define ( ‘BP_HOME_BLOG_SLUG’, ‘news’ );
    define ( ‘BP_AVATAR_THUMB_WIDTH’, 50 );
    define ( ‘BP_AVATAR_THUMB_HEIGHT’, 50 );
    define ( ‘BP_AVATAR_FULL_WIDTH’, 150 );
    define ( ‘BP_AVATAR_FULL_HEIGHT’, 150 );
    define ( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 640 );
    define ( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, $max_in_kb );
    define ( ‘BP_AVATAR_DEFAULT’, $img_url );
    define ( ‘BP_AVATAR_DEFAULT_THUMB’, $img_url );
    define ( ‘BP_FORUMS_PARENT_FORUM_ID’, $forum_id );
    define ( ‘CUSTOM_USER_TABLE’, $tablename );
    define ( ‘CUSTOM_USER_META_TABLE’, $tablename );

    ?>`

    Wiredtree is my server provider (I have a dedicated server with all access), and I’m running Linux w/ Apache

    #123573
    @mercime
    Participant

    I recall reading somewhere that one of the plugins you have activated, buddystream, is messing up with activity page. Change to bp-default theme and deactivate buddystream and see if same behavior applies. If you have bp-custom.php in your plugins folder, rename it in the meantime.

    #123494

    In reply to: renaming tabs

    Will D. White
    Participant

    I know this is an old topic, but its in the top results of Google when trying to find a solution for this.

    So, to help save other people time (who land on this page when Google’ing this situation) here’s the fastest fix I’ve come across so far.

    Create a file called “bp_custom.php”.

    In it add:

    function bbg_change_tabs() {

    global $bp;
    $bp->bp_nav = ‘New Profile Verbiage’;
    $bp->bp_nav = ‘New Activity Verbiage’;
    $bp->bp_nav = ‘New Friends Verbiage’;
    $bp->bp_nav = ‘New Groups Verbiage’;
    }
    add_action( ‘bp_setup_nav’, ‘bbg_change_tabs’, 999 );

    Replace the “New W/e Verbiage” with what you want it to say.
    Double check that BuddyPress forums didn’t change any foot marks to apostrophes.
    Save bp_custom.php and upload the file to /wp-contents/plugins/

    Refresh your page to see if it worked.

    So far it works for me just fine.

Viewing 25 results - 451 through 475 (of 728 total)
Skip to toolbar