Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,451 through 13,475 (of 73,985 total)
  • Author
    Search Results
  • danbp
    Participant

    You can download the modified js file (trunk:10207) here:
    https://buddypress.trac.wordpress.org/browser/trunk/src/bp-core/js/bp-plupload.js?rev=10207

    If it doesn’t work, revert back to original plupload.js and debug elsewhere.

    Youl’ll probably have to ask your theme support in that case.
    Activate also wp_debug in wp-config to eventl. get some other error msg.

    #258133

    In reply to: BuddyPress Components

    danbp
    Participant

    Hi @mikke1978,

    assuming each active BP component has his page and that this page is really unique and without any template assigned:

    – you have to setup pretty permalinks to an option other that “default”.

    Apparently you made something with your url configuration:
    – wordpress doesn’t use www by default.
    – all your components (activity, members and groups) are in /blog/ directory. By default, you should have http://your-site/activity.

    Not that all this cannot be done, but if you want it like this, you have to setup that correctly. This is no the case at the moment.
    Note also that BuddyPress does not work on installations where you give WordPress its own directory.

    The question is where is WP installed ? At the site root or in a /blog/ directory ?

    Open dashboard > General and check what is entered under site path and url and compare with what is in htaccess

    #258132
    mikke1978
    Participant

    Hi there,

    I am new to WordPress and BuddyPress. I am using WordPress 4.6 and BuddyPress 2.6.2 and my site
    http://www.betterbusinessranking.com/ is hosted with Yahoo/Aabaco.

    My components never worked. I get not Butoons (Created Group), and pages 404 when I tried accessing the groups or I click Create Group on the main menu of the login option.

    Can someone tell me what I am doing wrong please? I installed and reinstalled WordPress and BuddyPress few times after trying to use the solutions I saw on your forums regarding Group Create and other issues. I tried templates such as : Twenty Twelve,Twenty Fourteen, Twenty Sixteen, etc..But that dd not resolve the issue.

    Please assist me with a solution. You can visit my site: Twentbetterbusinessranking.com

    Sincerely.
    Mikke1978

    #258128
    danbp
    Participant

    I can’t read the codex at your place but if you really did this:

    I’ve copied the entire BuddyPress plugin directory into my theme

    you started on the wrong side.

    BP Plugin directory ? Really ? Or bp-templates/bp-legacy/buddypress/ directory ?
    Also you already hacked core files. This is not recommended at all anyway, and on a CMS, the form (template) is separated from the content (core)….

    BuddyPress Theme Development

    danbp
    Participant

    Sorry but we can’t bring assistance for premium themes.
    that said it may be a JS conflict generated by BP in some exotic JS situation…
    Read here: https://buddypress.trac.wordpress.org/ticket/6574

    danbp
    Participant
    #258125
    danbp
    Participant

    The ultimate tutorial to add wp_editor to What’s New textarea (on Site, Members and Group Activities pages).

    Warning
    The What’s New feature was never intended to publish posts or formatted text. It was imagined for brief announcement or instant conversation. That’s why this textarea is texturized and doesn’t allow much HTML tags. It is also ajaxified and need the original BP ID to work.
    You will use it at your own risk.

    The following trick will let you remove the existing textarea from the template and replace it with a custom wp_editor. And it will be very customized ! For example, you will not have the visual tab, but only his HTML version, similar to the one you see on this forum for example.

    Required:
    BuddyPress activated
    a working child theme
    some understanding of HTML and php grammar

    This trick was succesfully tested on a single install with WP 4.6, BP 2.6.2 and a Twenty Sixteen child theme.

    Start !
    Read from here how to remove the textarea in post-form.php

    The code to remove is line 40 and looks like this:

    <textarea class="bp-suggestions" name="whats-new" id="whats-new" cols="50" rows="10"
    	<?php if ( bp_is_group() ) : ?>data-suggestions-group-id="<?php echo esc_attr( (int) bp_get_current_group_id() ); ?>" <?php endif; ?>
    ><?php if ( isset( $_GET['r'] ) ) : ?>@<?php echo esc_textarea( $_GET['r'] ); ?> <?php endif; ?></textarea>

    You replace it by:

    <?php
    $content = '';
    $editor_id = 'whats-new';
    wp_editor( $content, $editor_id );
    ?>

    As the visual edit tab doesn’t work, you must deactivate it. In your child-theme functions.php, add this:
    add_filter( 'user_can_richedit' , '__return_false', 50 );

    And that’s it !

    If you want also rich edit for activity comments, which i didn’t recommand for sites who have many comments, you can use the same technique as above, with some more settings. Note that each comment has is own ID and that each comment editor should also have an unique ID.

    First, you need to remove the textarea from (child-theme/buddypress/)activity/entry.php
    You remove this:
    <textarea id="ac-input-<?php bp_activity_id(); ?>" class="ac-input bp-suggestions" name="ac_input_<?php bp_activity_id(); ?>"></textarea>
    and replace it by

    <?php
    $id             = bp_get_activity_id();
    $content	= '';
    $editor_id	= 'ac-input-'. $id;
    $settings	= array( 
    			'textarea_name'	=> 'ac_input_'. $id,
    			'editor_class'	=> 'ac-input bp-suggestions'
    		);
    wp_editor( $content, $editor_id, $settings );
    ?>

    With Twenty Sixteen, i first couldn’t see the Post Update button and the option selector. I got it with this little CSS adjustment (in child-theme/style.css).

    div#whats-new-options { display: block!important;}

    Function reference: wp_editor.

    dekoningalex
    Participant

    Hi,

    Users can’t upload cover/profile pictures for their profile. If one clicks on the button to select a picture to upload, you can select a file, but when you choose a file nothing happens. The following error shows up: Uncaught TypeError: Cannot read property ‘add’ of undefined bp-plupload.min.js?ver=2.6.2:1

    When i use a buddypress compatible theme (e.g. twentyeleven) the issue doesn’t occur so it is a custom theme issue. I have asked my theme developer for help but that has gotten me nowhere…

    1. Which version of WordPress are you running? 4.6

    2. Did you install WordPress as a directory or subdomain install? root

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? The one before 4.6

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? 2.6.2

    7. Did you upgraded from a previous version of BP? If so, from which version? Yes, the one before

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes, but none of these plugins cause issues as i turned them all off, and the problem still persisted.

    9. Are you using the standard WordPress theme or customized theme? Customized theme (Bronx by Fuelthemes)

    10. Have you modified the core files in any way? No

    11. Do you have any custom functions in bp-custom.php? No

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? 2.5.10

    13. Please provide a list of any errors in your server’s log files. Don’t know how

    14. Which company provides your hosting? Transip

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux (Ubuntu)

    Thank you so much in advance, any help is very much appreciated.

    #258122
    lil_bugga
    Participant

    Site:http://www.vwrx-project.co.uk Using WordPress 4.6 and BuddyPress 2.6.2

    I’ve just installed BuddyPress as I want to create a community based website within WordPress.

    My end goal is to have a site where multiple users can add content regarding their car project/build, where each update they add is displayed on the homepage of the site, but where viewing a users profile you could, should you wish, view someones project in its entirety with all posts and content or view just the images they’ve uploaded.

    I’m in the process of creating my own theme for this website but I’m having a hard to changing anything within BuddyPress.

    I’ve copied the entire BuddyPress plugin directory into my theme and then each document I edit I make a note of, so then I can remove any files I haven’t touched. I wanted to start with something simple before moving onto bigger modifications so opted to try and change the Site-Wide Activity title that displays.

    I have found bp-activity-actions.php line 450 & class-bp-activity-component.php line 125 and edited, saved and uploaded/overwrote these files into my themes version of Buddypress but can’t get the title to change.

    Once I’d done that I was hoping to edit the activity page to remove almost everything, the only part I really wanted to keep was the activity feed itself so that anyone visiting my sites homepage will see the most recent updates etc.

    Have I missed/overlooked something silly. I’m more accustomed to creating websites myself with CSS and PHP etc but as I want this site to be easy to use and accessible to multiple people adding content I felt this would be a better route to take.

    hasanfachrul
    Participant

    Hello,

    I’m very beginner at buddypress, and I was wondering.
    Can I add another (custom) column “groups” in the user section on the admin backend?
    The “groups” column purpose is to clarify which group did the users went or in.

    Thank you!

    #258118

    In reply to: No registration page

    danbp
    Participant

    Hi,

    review all site settings and check about the fatal error mentionned on the /register/page:
    Fatal error: Call to undefined function groups_get_total_group_count() in .../wp-content/plugins/buddypress-registration-groups-1/includes/bp-registration-groups.php on line 53

    I think that your buddypress-registration-groups plugin folder is malformed.
    buddypress-registration-groups-1 is most probably written buddypress-registration-groups

    #258117
    shughesd
    Participant

    Hello!

    I don’t seem to have a registration page for my buddypress. While a page ‘exists’, when I type the url (freeaupair.com/register/) it redirects to the root url. This page is selected in Buddypress Page settings.

    I started with a buddypress bundled theme (Kleo) but did change to the x-theme. I uninstalled and reinstalled buddypress, but the same occurs.

    HELP!

    http://freeaupair.com

    Thank you.

    #258112
    danbp
    Participant

    Add the snippet to your child-theme functions.php
    If it doesn’t work from there, remove it and put it into bp-custom.php

    You may also give details about the theme you use and what you did “exactly” on a template.

    #258107
    gokhank
    Participant

    thanks mate for the update but when I make this my registration page become blank and still it’s still the same buddypress registration page, does not redirect to default WP registration page.

    Can the template which I use be the reason for this ?

    #258104
    mynde
    Participant

    Hello, a wordpress newbie here. It’s my first website with buddypress, and i have an idea , just not sure if its implented allready or i would need some sor of plugin or a custom code, here it is:
    I would like a group(A) leader(creator, or a member with apropriate privileges) to assign this group to a different group(B) so that if something is posted in group B it would automaticaly appear in groups A activity feed. Thats it. Would it be possible? Thank you!

    #258097

    In reply to: New Privacy Plugin

    Fencer04
    Participant

    Turns out the error you pointed out is a bug that is being tracked in BuddyPress. It will be resolved in version 2.7. I will still see if I can alleviate it somehow:

    https://buddypress.trac.wordpress.org/ticket/7203

    #258094

    In reply to: New Privacy Plugin

    danbp
    Participant

    hi @fencer04,

    thank for sharing your work. Well done, but it needs some revision (sorry).
    At his activation on 2 test sites (one with 4.5.3/bp 2.6.1, other 4.6/bp2.6.2) i got a notice.
    Array to string conversion in buddypress/bp-core/classes/class-bp-core-nav.php on line 279from

    sbpp04_privacy_check( )	..\plugin.php:525
    sbpp04_privacy_redirect( )	..\buddypress-profile-privacy.php:176
    bp_core_remove_nav_item( )	..\buddypress-profile-privacy.php:184
    BP_Core_Nav->delete_nav( )	..\bp-core-buddybar.php:798

    Another point concerning UI/UX is the Private button appearing on buddybar.
    On this tab, a default message says Friends Only.
    USERNAME has chosen to limit profile access to friends only.
    That’s wrong! Because this appear on each profile, even if the owner hasn’t setup anything about his profile privacy.

    So far i understand its fonctionality, this plugin let each member decide to show or not his whole profile page to friends or members only or to everyone (bp default).

    – imo this tab should show “This profile is private” to anybody who is concerned by a privacy setting and should not appear at all if “Everyone” is set.
    – the original BP Add as friend button on profile header or members directory is still there. This means that there is no need to go on Private tab to ask forfriendship.
    This is a little confusing !

    If the plugin is to extend profile settings, it should appear in profile settings only. And as it doesn’t superseed BP, there is no real reason to give him an extra tab on buddybar outside of the settings scope. A template notice could be enough to tell visitors what’s going on on such a profile.

    Just my 2 cents.

    danbp
    Participant
    danbp
    Participant

    That’s documented here:

    Navigation API

    #258089
    danbp
    Participant

    @jendam As of #6573, you’ll need to add custom CSS to tweak the appearance.
    Read https://buddypress.trac.wordpress.org/ticket/6573#comment:4

    The ticket is closed as invalid.

    #258087

    Topic: New Privacy Plugin

    in forum Showcase
    Fencer04
    Participant

    I’ve been a lurker here for a while since starting on a Buddypress project for a client. For that project I needed to allow each member to be able to choose whether everyone, logged in users or just their friends could see their profile.

    Based on that development I just got a plugin approved at the repo that give the members that functionality. It is early in it’s development and I have a lot of plans for extending it to allow more customization to the messages and to what items are hidden. Since I’m no Buddypress expert I was hoping some of you might be interested in reviewing it and giving me your thoughts.

    The plugin is available at the repo: https://wordpress.org/plugins/simple-buddypress-profile-privacy/

    riskr
    Participant

    I’m using BuddyDrive for Group Documents and would like to disable and remove the BuddyPress built-in Documents option from the Manage sub-menu to eliminate confusion and not have documents in two places. Is that possible?

    WP Version 4.6
    BP Version 2.0.0

    Thank you.

    #258082

    In reply to: Isolated Groups

    BILL
    Participant

    Thanks @DanBP

    I can’t figure out how to do it with BuddyPress so I am asking for any opinions that could point me in a useful direction. My thought concerning bbPress was that maybe by adding forums I would be able to limit what the Group Leader and Students can see to just that groups user list.
    So, my question isn’t how to get bbPress to do this but what way can I do this. Does BuddyPress have this functionality and I need to find some instructions that have eluded me so far? Or, is there a plugin that I have to use or possibly do I have to learn about using the multisite feature or some other method to create isolated groups that the group leader can invite and remove users without seeing other companies/clients?

    I accept I may be missing something obvious to knowledgeable WP Devs, actually, I hope it is something I just haven’t found in the BuddyPress docs.

    To be clear, this project is still in development and I can use whatever is best for this important and seemingly simple situation.

    #258081

    In reply to: import xprofile CSV

    sharmavishal
    Participant
    #258080
    Paul Wong-Gibbs
    Keymaster

    Closing in favour of https://buddypress.org/support/topic/import-xprofile-csv/, which the most recent responder also posted. (This thread was 4 months old prior to this last post).

Viewing 25 results - 13,451 through 13,475 (of 73,985 total)
Skip to toolbar