Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 59,126 through 59,150 (of 68,949 total)
  • Author
    Search Results
  • #60819
    pcwriter
    Participant

    Correct code:

    <li<?php if ( is_page( BP_PAGE_SLUG ) ) : ?> class="selected"<?php endif; ?>>/<?php echo BP_PAGE_SLUG ?>" title="<?php _e( 'Slug Label', 'buddypress' ) ?>"><?php _e( 'Slug Label', 'buddypress' )</li>

    #60815

    In reply to: Wire Posts in bp 1.2

    The usage of @ may have been a twitter hack, but it came from using it as a way to acknowledge or direct a comment at a user when a threaded option wasn’t available. We use it even here in these very forums quite often, because we can’t directly reply to one another.

    Deprecated code, the wire, and the status update components are totally removed from the BuddyPress 1.2 core and will be available in a separate BuddyPress Backwards Compatibility plugin. If you desire to use those components, or are using a custom theme that uses old function names or loops, you will be required to install and activate this additional plugin to continue to use your old code.

    This was done for three reasons:

    1. Reduce the amount of legacy code in the core that is just hanging around not being used

    2. Not give new comers 2 (or more) ways to do the same one thing

    3. Influence plugin and theme developers to upgrade their code to be compatible with BuddyPress 1.2 sooner rather than later

    More detailed instructions and details will come as the 1.2 launch comes closer, but this is the best way to make sure everyone is happy. :)

    #60814

    In reply to: Updating to WPMU 2.9.1

    You’re best to deactivate BuddyPress and any plugins that depend on it before upgrading.

    2.9.1 should be the last time you will need to do that though.

    #60811
    symm2112
    Participant

    I know that the tutorial is for external bbpress integration. What I’m saying is that it was written before you had the option for linking bp to bbpress inside of buddypress. If I delete my bbconfig and reinstall forums, do I need to go through the full install including the cookies or do I only have to go to a certain point and then let buddypress handle it. I know that once I select external bbpress an let it integrae, I can then delete my old install files because it takes over. I just didn’t know at what point it takes over.

    Thanks for linking me to the guide again. Was going to have to dig through old links to find it.

    #60810
    r-a-y
    Keymaster

    It uses the “plugin-template.php” file.

    It’s a generic catch-all for plugins, which need a layout for their settings.

    Look for it in /wp-content/wp-sn-parent/.

    If you’re using a child theme, copy that file to your child theme folder.

    More info:

    https://buddypress.org/forums/topic/which-template-file-is-settings

    #60809
    r-a-y
    Keymaster

    That tutorial is only if you want to have an external install of bbPress with WPMU/BuddyPress.

    If you want to use the integrated version with BuddyPress, then just stick with what you have.

    #60807
    r-a-y
    Keymaster

    Here’s a WPMU / BuddyPress / bbPress integration tutorial:

    http://theeasybutton.com/blog/2009/07/17/integrating-buddypress-wordpress-mu-and-bbpress/

    I’ve used this a few times myself.

    #60804
    r-a-y
    Keymaster

    It depends on your usage.

    Most people will just use the default, integrated forums in BuddyPress.

    If you didn’t upgrade from the BP 1.0 series, then just use the default. Unless you like the idea of having two sets of forums (which could be confusing from a UI perspective).

    #60801
    peterverkooijen
    Participant

    Probably same problem reported at the top of this thread, before I derailed it…

    #60789
    transom
    Member

    For others who are frustrated by add_submenu_page – using WPMU2.9.1 BP1.13

    to BuddyPress menu in WP-admin

    function add_menu_link(){

    add_submenu_page( 'bp-general-settings', "YOUR MENU", "Your Title ",
    'manage_options', 'your-plugin-slug', 'your_function');
    }
    add_action( 'admin_menu', 'add_menu_link', 20);
    // NOTE the addition of a higher priority seems to solve the problems where
    // WPMU starts trying to tell you that you don't have access (url is admin.php/?c=1)

    I can’t take credit for this – the solution was here

    http://teleogistic.net/2009/10/group-forum-subscription-for-buddypress-1-1/#comment-4582

    #60788
    pcwriter
    Participant

    Just got a message from jeffreeeeey saying the code isn’t displaying properly. Oops, forgot to enclose it in tags. Here it is (hopefully..):

    <li<?php if ( is_page( BP_PAGE_SLUG ) ) : ?> class="selected"<?php endif; ?>>/<?php echo BP_PAGE_SLUG ?>" title="<?php _e( 'Slug Label', 'buddypress' ) ?>"><?php _e( 'Slug Label', 'buddypress' )</li>

    #60787
    dpolant
    Participant

    I am running into this same problem in 1.1.3 with the groups extension api. I found a semi-ridiculous work around – name your plugin directory something that comes after “Buddypress” in the alphabet. Does any one know a way of specifying plugin dependencies?

    Also, I never had this problem until I upgraded to mu 2.9.1. I can’t reproduce this issue on any of my pre-2.9.1 installations. On the older versions BP plugins always manage to get loaded after Buddypress.

    #60786
    peterverkooijen
    Participant

    I installed the Buddymatic theme, but get exactly the same error. The problem must be in the Buddypress core files somewhere – I had reuploaded those to make sure they are the untouched 1.1.3 files.

    Any other suggestions what I could try to fix this or pinpoint the problem? This is driving me nuts…

    The delete link looks like this:

    <span class="activity-delete-link"><a href="http://mysite.com/activity/delete/20?_wpnonce=0f239e493d" class="item-button delete-activity confirm">Delete</a></span>

    When I click I get the ‘Are you sure?’ popup and then when I click OK it redirects to ‘Page not found’ with the same wpnonce URL still in the address bar.

    Why? Where is it supposed to go? Which piece of code is supposed to handle this wpnonce URL?

    The problem is not in the theme. I tested two clean themes, default and buddymatic. Both had the same problem.

    The problem has to be in the bp core code…

    The delete button is produced by this function in bp-activity-templatetags.php:

    function bp_activity_delete_link() {
    echo bp_get_activity_delete_link();
    }
    function bp_get_activity_delete_link() {
    global $activities_template, $bp;

    return apply_filters( 'bp_get_activity_delete_link', '<a href="' . wp_nonce_url( $bp->root_domain . '/' . $bp->activity->slug . '/delete/' . $activities_template->activity->id, 'bp_activity_delete_link' ) . '" class="item-button delete-activity confirm">' . __( 'Delete', 'buddypress' ) . '</a>' );
    }

    When I remove ‘confirm’ from the class, the annoying ‘Are you sure?’ popup disappears, but the page still redirects to ‘Page not found’ and the unwanted wire item is still on the page.

    I assume this function only produces the link; there must be another function somewhere that is supposed to process it. Where?!

    ajax.js is loaded – I double-checked… – but what is the connection between the delete link and the javascript? Is that where the processing should take place?

    ajax.php has this:

    <div class="wire-post-metadata">
    <?php bp_wire_post_author_avatar() ?>
    <?php _e( 'On', 'buddypress' ) ?> <?php bp_wire_post_date() ?>
    <?php bp_wire_post_author_name() ?> <?php _e( 'said:', 'buddypress' ) ?>
    <?php bp_wire_delete_link() ?>
    </div>

    bp_wire_delete_link, not bp_activity_delete_link…

    #60783
    peterverkooijen
    Participant

    I installed the Buddymatic theme, but get exactly the same error. The problem must be in the Buddypress core files somewhere – I had reuploaded those to make sure they are the untouched 1.1.3 files.

    Any other suggestions what I could try to fix this or pinpoint the problem? This is driving me nuts…

    #60779

    In reply to: Rename components

    mlemberg
    Participant

    Hmm… Just tried out defining slugs in wp-config.php but it didn’t change anything? Wrote the following at the bottom:

    /** Set up Buddypress Slugs */

    define ( ‘BP_GROUPS_SLUG’, ‘ideer’ );

    define ( ‘BP_FORUMS_SLUG’, ‘debat’ );

    define ( ‘BP_MEMBERS_SLUG’, ‘medlemmer’ );

    define ( ‘BP_ACTIVITY_SLUG’, ‘aktivitet’ );

    define ( ‘BP_GROUPS_SLUG’, ‘clubs’ );

    define ( ‘BP_WIRE_SLUG’, ‘vaeg’ );

    Also I took a look at bp_page_title() but it seems to me that it only defines titles for the blog area. Not directories, wire etc. Am I misunderstanding anything?

    #60778

    In reply to: Rename components

    mlemberg
    Participant

    Thanks for the reply. I have translated Buddypress myself to da_DK.

    #60772
    peterverkooijen
    Participant

    In version 1.0 the delete link was part of a file bp-wire-ajax.php (deprecated in version 1.1.3.), via a bp_wire_delete_link() function in bp-wire-templatetags.php that looked like this:

    function bp_wire_delete_link() {
    echo bp_get_wire_delete_link();
    }
    function bp_get_wire_delete_link() {
    global $wire_posts_template, $bp;

    if ( empty( $bp->current_item ) )
    $uri = $bp->current_action;
    else
    $uri = $bp->current_item;

    if ( ( $wire_posts_template->wire_post->user_id == $bp->loggedin_user->id ) || $bp->is_item_admin || is_site_admin() ) {
    if ( $bp->wire->slug == $bp->current_component || $bp->profile->slug == $bp->current_component ) {
    return apply_filters( 'bp_get_wire_delete_link', '<a href="' . wp_nonce_url( $bp->displayed_user->domain . $bp->wire->slug . '/delete/' . $wire_posts_template->wire_post->id, 'bp_wire_delete_link' ) . '">[' . __('Delete', 'buddypress') . ']</a>' );
    } else {
    return apply_filters( 'bp_get_wire_delete_link', '<a href="' . wp_nonce_url( site_url( $bp->{$bp->current_component}->slug . '/' . $uri . '/wire/delete/' . $wire_posts_template->wire_post->id ), 'bp_wire_delete_link' ) . '">[' . __('Delete', 'buddypress') . ']</a>' );
    }
    }
    }

    The same function in version 1.1.3 has some subtle differences:

    function bp_wire_delete_link() {
    echo bp_get_wire_delete_link();
    }
    function bp_get_wire_delete_link() {
    global $wire_posts_template, $bp;

    if ( empty( $bp->current_item ) )
    $uri = $bp->current_action;
    else
    $uri = $bp->current_item;

    if ( ( $wire_posts_template->wire_post->user_id == $bp->loggedin_user->id ) || $bp->is_item_admin || is_site_admin() ) {
    if ( $bp->wire->slug == $bp->current_component || $bp->profile->slug == $bp->current_component ) {
    return apply_filters( 'bp_get_wire_delete_link', '<a class="item-button delete-post confirm" href="' . wp_nonce_url( $bp->displayed_user->domain . $bp->wire->slug . '/delete/' . $wire_posts_template->wire_post->id, 'bp_wire_delete_link' ) . '">' . __('Delete', 'buddypress') . '</a>' );
    } else {
    return apply_filters( 'bp_get_wire_delete_link', '<a class="item-button delete-post confirm" href="' . wp_nonce_url( site_url( $bp->{$bp->current_component}->slug . '/' . $uri . '/wire/delete/' . $wire_posts_template->wire_post->id ), 'bp_wire_delete_link' ) . '">' . __('Delete', 'buddypress') . '</a>' );
    }
    }
    }

    I’ll try to replace some code and will report back…

    #60771
    Bowe
    Participant

    There is a multilingual plugin for BP available which does this:

    https://wordpress.org/extend/plugins/buddypress-multilingual/

    I don’t know if it’s compatible with the BP 1.1 or the upcoming 1.2. I need this as well so we should look into it then :)

    Also take a look at this ticket I made today: https://trac.buddypress.org/ticket/1593

    If the “supergroup” feature would be implemented it would mean that you could make different “homes” for different countries/regions and still have a central homepage where all sitewide content is shown.

    #60769
    online
    Participant

    I think it would be good to set up separate blogs for separate languages — as in: if people don’t want the interface language to be different, then I expect they won’t want the discussions to be in a different language, either.

    I tried WPML and it (or my hosting) is simply too slow. I just decided to set up separate blogs instead — and I hope I can install buddypress in 2 (or more) versions … I don’t think there’s an easy way of having 1 instance of buddypress work in English here, in German there, etc., right?

    I haven’t been able to find much information about buddypress in German — I think I read the language files need to use the German buddypress (is that right? doesn’t really make sense to me)…

    So, yea: I’m quite confused again… O_O

    #60766

    In reply to: Wire Posts in bp 1.2

    David Lewis
    Participant

    The @ thing is a Twitter hack which was came about out of necessity due to Twitter’s limitations. BuddyPress has no such limitations. Let’s not copy Twitter’s @ and # hacks. BuddyPress can do the same thing in a much more user-friendly and intuitive way… by clicking an action link for instance. Relying on raw text strings? Bad idea. I think.

    #60763

    In reply to: BuddyPress Geo plugin

    shaisimchi
    Participant

    Well,

    I was able to get it to work quite well from its main ‘Events’ page so thats one step.

    I just want to use it from another page – just not sure exactly how the calls are being made etc.

    #60761
    nunomorgadinho
    Participant

    Hey Mariusooms,

    Can you share the wpml-auto-settings plugin? I’m in need of something very similar.

    Cheers,

    Nuno

    #60751
    Lsm_267
    Participant

    salut mr maz

    i’m running

    wpmu 2.8.6 with bp 1.1.3 and your plugin bp-link

    It worked like a charm, could create some links.

    but now i’m getting this php erro by creating a link :

    Call to undefined function bp_link_creation_tabs() in /homepages/41/d278410228/htdocs/wp-content/themes/bp-default/links/create.php on line 5

    any ideas ?

    thanks in advance

    #60750
    Bowe
    Participant

    There is some functionality written by TravelJunkie which allows you to create group types. Find his post here: https://buddypress.org/forums/topic/soon-to-release-bp-group-control-plugin

    @Erich73: Supergroups are similar and could be seen as another group category.. The ideal situation would be if you could create different categories and could also say which category could do what. For instance:

    Group Cat 1: Can use forums, activity stream and groupblog plugin

    Group Cat 2: Only forums

    Group Cat 3: Supergroup which can do all + has an extended activity stream as described in trac: https://trac.buddypress.org/ticket/1593

    To make it ever better it would also be cool if you could set up different desciption fields to fill in per group;

    category 1 : Info, history, goals

    category 2: Name, description, latest news

    There must be someone who could help us out with this guys :D

    edit: I am willing to pay for this plugin to be developed. Might not be the only one I think?!

    #60748

    In reply to: BuddyPress Geo plugin

    Mike Pratt
    Participant

    Given all the problems listed on this thread, the utter lack of responsiveness and vague claims on the plugin site, why even bother trying?

Viewing 25 results - 59,126 through 59,150 (of 68,949 total)
Skip to toolbar