Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 42,976 through 43,000 (of 68,948 total)
  • Author
    Search Results
  • #103124
    Hugo Ashmore
    Participant

    @gunju2221 thing is Savanah Mercime is pretty experienced with BP and no doubt even more experienced with PHP :)

    For the php parsing engine to work you must have php tags around your script elements, common practice is to open and close those tags when needing to parse markup, or one adds one opening and one closing set and all markup in the script needs to be set as echoed strings, variables or the heredoc function called.

    Likely you have a file that is using supplied snippets written by members and which for potability each have their own set of tags.

    #103123
    Hugo Ashmore
    Participant

    WP 2.7 !!

    Upgrade! WP is on 3.04 now

    #103122

    In reply to: redirect to /register

    lkrywko
    Member

    After checking everything again I’ve discovered that I did not put the NOBLOGREDIRECT option in config.
    Thanks for your time @r-a-y. You helped me a lot .

    #103121
    Ekine
    Participant

    @Travel-Junkie
    Oh, my bad. Sorry for misunderstanding that message output.

    #103120
    imjscn
    Participant

    @luvs123, you need to add the first function below the 2nd function to get the starter.

    #103118

    In reply to: Creating custom pages

    Florian
    Participant

    Thanks a lot for the pointers!

    The important trick seems to be to grab the ‘wp’ hook, check if the current request is for the custom page and then load the content. I’m still struggling with the BuddyPress-Template-Framework (bp_core_load_template just won’t cooperate), but I think I’ll just stick with directly loading my templates via load_template() for now. Since I’m not going to distribute the code, this hopefully won’t be too much of a problem.

    Thanks again!

    #103115
    MrNiceGuy2
    Member

    vised all fo those, none of them work.
    Sample user and pass:

    User: BingoGuy
    pass: BingoGuy1

    #103114
    eltiki
    Member

    Modemlooper, thanks. I now understand. I can’t run a social network within a social network. That makes sense, actually. Again, thanks for the help. Antonio

    #103110
    7520979
    Inactive

    @r-a-y, in the mushroom kingdom, only toasters can toast toast.

    #103107
    modemlooper
    Moderator

    When you create a new site it’s basically it’s own thing but shares user login. You can also share plugins and themes but you can’t have buddypress run on every site. BP runs on only one blog on your multisite install.

    #103105
    eltiki
    Member

    Thanks for your reply. I’m new to creating a BuddyPress network of blogs. I was under the assumption that when I create a network and then add sites, that each site would be customizable. It seems to work with wordpress’ default theme, but not BuddyPress. Is this a bug, or is there something in the initial setup for the network that I need to enable so as to have the option of customizing each individual site? Thanks in advance for any help. Antonio

    ColdManager
    Member

    Hey , i done this way and now when i go to the other member’s page it will show only profile detail with no other tab (personal,friends,groups,favorite, mentions) but for me its ok. But after i tried checking system, i found that some notification issues, like friendship , the notification will gone when click it , but right now the notification process can’t be done because we can’t go to his personal page anymore , any suggestion?

    #103103
    @mercime
    Participant

    @MrNiceGuy2 unfortunately the page you linked to in first post now goes to required registration page. Looking back to your first post == How do I edit these pages!? ==

    When you go through the BP Template Pack process, 13 files in 6 folders are transferred to your active WP theme and those are the files you need to revise, and not the template files in BP Template Pack itself.

    #103101
    pcwriter
    Participant

    I just started putting together some template packs for popular plugins to get them working seamlessly with all the features in BuddyBuilder.

    So far, we have template packs for BP-Gallery and Buddypress Links, and have a suggestion for Jet Event System. Need to update the BP-Links pack to v0.5 though, hadn’t seen that update til now :-(

    If you have a plugin in mind you think should be supported in BuddyBuilder or BuddyLite, please let me know :-)

    #103100
    MrNiceGuy2
    Member

    bump

    #103099
    Virtuali
    Participant

    — if you want just a nav item for <i>inbox messages</i>, than a simple slug would be easy to add.

    If you want the entire notification tab there… same type of thing as before,

    function bp_adminbar_notifications_menu() {
    global $bp;
    
    if ( !is_user_logged_in() )
    return false;
    
    echo '<li id="bp-adminbar-notifications-menu"><a>loggedin_user->domain . '">';
    _e( 'Notifications', 'buddypress' );
    
    if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
    <span></span>
    <?php
    #103098
    ScottWatson
    Member

    @zeitgeist76

    `php echo bp_loggedin_user_domain()` obviously points towards a users Main Profile page, do you know how I would then be able to change this so that it points to the others items such as Inbox, Upload a Photo etc…?

    #103096

    In reply to: wiki recommendations

    Thanks for your input Boone. I figured that it would be a beast to maintain MediaWikis integration.

    I’m intrigued by your buddypress-docs. Do you have a post on it anywhere? Will this be a replacement for BuddyPress Group Documents?

    #103095
    Virtuali
    Participant

    Could be something related to: but It isn’t guaranteed to work, might need to play around with it..

    function bp_adminbar_account_menu() {
    global $bp;
    
    if ( !$bp->bp_nav || !is_user_logged_in() )
    return false;
    
    echo '<li id="bp-adminbar-account-menu"><a href="' . bp_loggedin_user_domain() . '">';
    
    echo __( 'My Profile', 'buddypress' ) . '</a>';
    echo '<ul>';
    }
    #103094
    ScottWatson
    Member

    I am using the jarrah custom theme, that I adapted to work with BuddyPress using the BP Compatibility plugin. However the themes appear to be fairly similar in the back end with regards to this particular change, as the code provided above is supposed to work with the default theme, and I didn’t alter it at all from its original form to get it to work on the custom theme.

    #103090
    Virtuali
    Participant

    Is this even related to buddypress?

    It looks like a css “overflow” issue.. but otherwise go to the plugin website for support there…

    #103083
    Virtuali
    Participant

    Try this:

    Go to: phpmyadmin > yourdatabase > wp_bp_groups_groupmeta

    Find the group you’re attempting to post to and then delete the forum_id value. Go back to your group on the front end. When logged in as admin of the group, go to settings and re-enable your forums. It will save a new forum_id for you and your posts should start working. This is a solution for BuddyPress groups that are starting a fresh new forum, not for groups with forums that have existing posts.

    #103080
    MrNiceGuy2
    Member

    Still cannot get templates lookign correctly. I just need to find where this little bit fo code is to modify it, otherwise, It’s all perfect.

    #103072
    luvs
    Member

    @r-a-y, I want to display on the single topic page something like: “started:% ago by %” and then “Latest Reply from %”

    Your code above just gives me “deleted user” no matter what I do. :s ;(

    #103068
    imjscn
    Participant

    @r-a-y , It works!
    Either active the plugin, or paste the filter in function.php, then, add the first snippet below this filter, done!
    Thanks!

Viewing 25 results - 42,976 through 43,000 (of 68,948 total)
Skip to toolbar