Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 66,401 through 66,425 (of 69,017 total)
  • Author
    Search Results
  • #42084
    Lance Willett
    Participant

    Hi Tutsie,

    This type of change would typically be done with a plugin. Keep in mind that this isn’t a BuddyPress customization as much as it is a WordPress MU one.

    I did a quick Google search for “change wordpress admin profile link” and found a few places you could start.

    In this WordPress forum topic is some code that would change the behavior of the profile link (albeit for a different reason); this method of changing the admin behavior isn’t recommended, however, since it requires hacking a core file. A plugin would be much better since it doesn’t require changing the core file (and having to stress about updating your WordPress MU code later).

    Depending on how much you want to work on this, you could download these two plugins: WP Hide Dashboard and Admin Menu Management, open them up in a text editor, and look at how they change the menus in the WordPress admin area.

    Plugins do two things: (1) they provide a new functionality and (2) they hijack the normal WordPress behavior and perform the functionality described in the plugin instead.

    Hope that helps…

    Jeff Sayre
    Participant

    I guess I’m a little confused as well.

    I know that bp-loader.php was added to the repo and included as part of the BP package in Changeset 1311, but I thought it simply managed the “loading” of activated BP components.

    All custom plugins need to reference bp-core.php.

    #42080
    nepf
    Participant

    “It is coming”

    GREAT!

    #42077
    mypop
    Participant

    @Trent,

    Turns out the problem wasn’t of my making at all and I was doing everything correctly!

    So why didn’t it work?

    My hosting provider doesn’t allow rpc calls to the same server, so I ended up splitting the installation, WMPU and Buddypress on my main domain and bbPress on another domain on a different server.

    All works great! If you want to read the saga it’s all in its own thread here: https://buddypress.org/forums/topic.php?id=2027

    #42076
    mypop
    Participant

    SOLVED!!!!!

    Searched for \”cannot yet handle MBCS\” in the forum and came up with Trent\’s post about the same error, once again I\’m running PHP 5.2.9 it wasn\’t that, a quick tweek to line 53 (based on Trent\’s advice)

    so I edited /my-plugins/buddypress-enable.php and changed line 53 from:

    $post_text = html_entity_decode( $post_text, ENT_COMPAT, \”UTF-8\” );

    to:

    $post_text = utf8_decode($post_text);

    Worked brilliantly – actually fixed the errors on both sides (BuddyPress and bbPress)

    #42072
    mypop
    Participant

    Well… It’s working kinda!

    Forums are created, topics can be made on either side, and replies to topics created

    However when I created a topic or reply to a topic in BuddyPress I get

    “There was an error posting that topic.” or “There was an error posting that reply.”

    they are created though.

    And on the bbPress side, when I create a topic, or rpely to a topic, I get:

    “Warning: cannot yet handle MBCS in html_entity_decode()! in /home/sites/my-partyonparty.biz/public_html/forums/my-plugins/buddypress-enable.php on line 53”

    once again, they are created tho.

    #42071
    gpo1
    Participant

    How about bbpress plugins in the forum working on buddypress CMS, would it happen?

    #42069
    Sam Bauers
    Participant

    It’s my intention to make bbPress integration with WPMU and BuddyPress even simpler and better over time. Many changes have already been made to both WPMU and bbPress core to help BuddyPress along and that cooperation will exist in the future.

    #42068
    Burt Adsit
    Participant

    If you just downloaded it from bp.org then it’s RC1. If you are not using svn then you can by getting a client app like TortiseSVN for Windows. http://tortoisesvn.net/

    The url to get the latest source is: https://svn.buddypress.org/trunk

    Running the trunk version of bp requires you to be running wpmu 2.7.1 which is only available by svn at: http://svn.automattic.com/wordpress-mu/branches/2.7

    There have been changes in the member theme directory and bp’s move from the /mu-plugins dir to the /plugins dir in wpmu.

    Not a stupid question at all.

    #42063

    In reply to: remove admin-bar

    Lance Willett
    Participant

    As of revision 1270 in trunk you can now disable the admin bar like this in your “wp-config” file:

    define('BP_DISABLE_ADMIN_BAR', true);

    That way you don’t need any of those custom overrides in your “bp-custom” file.

    #42062
    Lance Willett
    Participant

    @Seobrien — good point.

    I will post some better/updated directions soon…

    For now, the pertinent change to know about is switch from “wp-content/mu-plugins” to the new location for plugins, which is “wp-content/plugins/buddypress”. The “bp-custom.php” file goes inside that folder, and the languages files go inside “wp-content/plugins/buddypress/bp-languages”.

    nicolagreco
    Participant

    This will work anyway if bp is switched off and when someone switch on it he will give a redeclaration error

    Look here:

    $active_plugins = get_site_option( 'active_sitewide_plugins' );
    if ( isset( $active_plugins['buddypress/bp-loader.php'] ) )
    require_once( BP_PLUGIN_DIR . 'bp-core.php' );

    or making a system of hooks in hooks i made fo bpdev plugins to prevent “undefinied functions error”

    #42051
    hazardcell
    Participant

    I’ve been doing some testing and I noticed that I can’t access the $_POST global variable anywhere within BuddyPress. Any idea why?

    Per Søderlind
    Participant

    RPX is pretty well documented over at https://rpxnow.com/docs and http://rpxwiki.com/, so any one that has time (sorry, but I don’t) should be able to write a BuddyPress add-on that implements RPX. I would have used the FB-Connect plugin as a starting point.

    #42049
    Jeff Sayre
    Participant

    @Jpipitone-

    An Album component is planned for a future release. See info. at the bottom of this page: https://buddypress.org/about/

    #42047

    In reply to: Recentally Active

    Jeff Sayre
    Participant

    You need to wrap the code Andy provided in php tags. At the very top of the file, type:

    <?php

    Then at the bottom, type:

    ?>

    Make sure there are no spaces after that last angled bracket. Save the file with the php extension and you\’re good to go.

    If this is not clear, open up any BuddyPress file and look at the php tags.

    #42044
    Paul Wong-Gibbs
    Keymaster

    You can put those mods wherever you usually put them (i.e. where you had them in the previous version of buddypress is fine). Only move them as and when the instructions that come with those mods are updated.

    #42039
    enlightenmental1
    Participant

    how about all the additional mods/plugins that work with buddyrpess ?

    bp-dev plugins

    terms_of_service

    wp-captcha

    those go in mu_plugins ?

    or mu_plugins/buddypress/ ?

    #42027
    Lance Willett
    Participant

    @Modemlooper — right now you can’t change the blog avatar.

    There is an open ticket in Trac for it: https://trac.buddypress.org/ticket/192, so it is in the roadmap for future versions.

    #42025

    In reply to: Changing blog avatars?

    Lance Willett
    Participant

    Sorry I misread your topic… I need to slow down!

    You cannot currently change the blog avatars.

    This appears to be a hot topic — see also:

    https://buddypress.org/forums/topic.php?id=1262

    https://buddypress.org/forums/topic.php?id=497

    https://buddypress.org/forums/topic.php?id=798

    https://buddypress.org/forums/topic.php?id=2046

    There is also an open ticket in Trac for it: https://trac.buddypress.org/ticket/192

    #42016
    21green
    Participant

    Hey, thanks for the reply,

    but aren’t these only the most recent posts? Such a widget comes allready bundled with buddypress.

    What i’m looking for is a plugin/widget that shows the most POPULAR posts of a day, not the most recent posts!

    #42014
    Jeff Sayre
    Participant

    @BeLogical: If you\’re planning on upgrading to WPMU 2.7.1 beta1 and BuddyPress r1303, then your component may have issues.

    Read this thread for an announcement about version 1.2 of the skeleton component: https://buddypress.org/forums/topic.php?id=2043

    Jeff Sayre
    Participant

    More Details:

    To use this unofficial version of the skeleton component, you should at least be running WPMU 2.7.1 beta1 and BP r1324 (although you’ll probably be okay if you just have r1303 installed). But, you should at least by aware of this important change: https://trac.buddypress.org/changeset/1316

    I’ll keep the package posted at the above location until it is either proved a disaster or is found useful and becomes an official BuddyPress package (Hint Hint).

    We did not make changes through a subversion controlled environment. I did not deem that necessary. We did, however, comment all of our changes and started each comment or comment group with “v1.2_URC1:”. So, you can search on that phrase and see where we’ve made changes.

    Andy, it would be great if others with more intimate knoweldge of the inner workings of BuddyPress and the recent changes could look at this unofficial version of the skeleton component. I’d be more than happy to transfer it to your domain to use as is or alter as necessary.

    #42006

    This has been this way for some time now.

    This topic should give you more info on this…

    https://buddypress.org/forums/topic.php?id=1382#post-6727

    If you login through the quick-login box in the header, you should always get redirected to whatever page you were on. If you click “Login” in the buddybar, it would need to save the referring page on the wp-login.php page load, which is more of a WPMU issue than a BuddyPress issue it sounds like.

    #42003
    Paul Wong-Gibbs
    Keymaster

    If this has indeed reverted, and it’s not because of any plugin or custom theme you may have installed, please report this as a bug on trac.buddypress.org.

Viewing 25 results - 66,401 through 66,425 (of 69,017 total)
Skip to toolbar