Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,576 through 17,600 (of 68,986 total)
  • Author
    Search Results
  • #177720
    BuddyBoss
    Participant

    I’ve never seen that before. Standard advice is to switch themes and deactivate all plugins, then switch everything back one by one to see if a specific theme/plugin is the cause.

    If not, BuddyPress does automatically inject links into some content. Profile fields for example, when viewing a user’s profile. Weird that it’s doing this on a random WP page though.

    As for ‘network activated’ I suggest leaving it to just ‘activated’ on your main site that you’re running BP on. No reason to run it everywhere.

    #177716
    thatmtnman
    Participant

    thanks guys. I understood that buddypress was working on splitting queries etc but wondered how it handled concurrancy issues in its present state and how the proposed query changes were expected to improve the situation.

    The question was asked ‘how big a scale?’. Our project is not spec’d out that way yet (it will be), but I’m exploring possible solutions, but I’d say in the 100k concurrent user order of magnitude. We would expect a large number of groups and within those groups very large numbers say in the 6 figure order of magnitude.

    cheers

    #177714
    Henry Wright
    Moderator

    @thatmtnman it’s getting better – lots of performance improvements are in-progress and many are planned. See some of the recently active Trac tickets for examples:

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

    #177712
    webauthor
    Participant

    I’ve been reading a lot about this issue and it looks like BP is missing some very basic functionality. This is the first time using it and right out of the gate I see that there are some things that have me baffled.

    1) No way to create conditional fields. I’ve tried using the Gravity Forms User Registration Add-On plugin but there is no way to map fields properly. For example, in Gravity Forms I have Country, State and City fields. If someone selects United States as a Country for example, the next field that the user sees is the State field, but then I run into a problem when someone selects a City. In order to use conditional fields with Gravity Forms, I need to create many City fields (alabama-cities, alaska-cities etc). One City field for each State. These City fields are conditional fields that displayed to the user Cities based on what the user selects in the State field.

    The problem is that Gravity Forms wants me to first create User Profile Fields in BuddyPress. Then map each Gravity Forms field to the appropriate User Profile Field. Since I have many Gravity Forms cities field, there is no way I can tell Gravity Forms to use the City that the user selects and map it to a City User Profile field in BuddyPress.

    I’ve read a lot of posts on this forum dating back 5 years and no one has offered a working solution.

    2) Also, Why is there no option for an admin to be able to deny users from changing their Screenname? How about an option that prevents user from modifying a specific field such as Gender? All I see is havoc and chaos if you allow users to change certain fields.

    3) Why doesn’t BuddyPress offer a way to have different registration fields based on the user? Teacher / Student Registration, Doctor / Patient etc? It doesn’t make sense. Look at the core of BuddyPress. It’s a social network plugin. In almost every circumstance you have a need for one user have certain fields and another to have other fields. Trying to figure out how to show certain profile fields for one user and not another should be at the core of this plugin. Not to mention making it easy for the site owner to layout those fields so that they look nice. For example something as easy as defining the length of the fields. You can’t make those modifications without Firebug and CSS and PHP experience, or worse yet another plugin. If you use a plugin, then you have to pray to God the author of that plugin not to fall off a cliff or pray that he / she keeps that plugin conducive with the latest version of BP.

    I don’t mean to gripe but BuddyPress it seems to me that at it’s core, very little thought was given to how people would actually use it. Almost like it’s piecemealed together.

    Another big complaint is that it’s not compatible with the best WordPress themes on the planet – StudioPress. Shouldn’t the contributors of BP make sure that BP and StudioPress be compatible?

    I’m sorry if this sounds like a rant, it’s not. It’s just frustration. BP looks awesome but underneath the hood, there are a lot of obvious problems. My suggestion is to do what WooCommerce, StudioPress and others do. Sit down and figure out how to handle the big issues first. If need be, charge for BuddyPress. If the problem is that you have a bunch of contributors who work on things “they” deem important and at their own leisure, then the plugin suffers. Charge for it. Sit down and listen to the complaints and address them based on customer priority. Pay someone to reply to this forum so we’re not waiting days for a response. You’ll have much happier users and a much better plugin. Just my 2 cents worth. Honestly, since BP is virtually the only Plugin of it’s kind, not taking my advice will lead to someone creating a better wheel and that point, it’s only a matter of time before BP becomes obsolete.

    It’s been close to 24 hours and no response to my original question. If ANYONE has an answer as to how I can get a user to simply select a Country, then State, then City based on previous fields, I’d greatly appreciate it. Also if someone could please tell me how to prevent users from modifying certain fields that would be appreciated as well.

    Thanks

    #177708
    Joss Winn
    Participant

    UPDATE:

    I’ve changed BuddyPress from being ‘network activated’ to just ‘activated’ on the main/root site. I don’t know what the recommended setup is these days, but we’ve had it network activated since BuddyPress only ran on WPMU.

    Having it activated on the main site only means that the ‘bug’ now only affects the main site and not every site across the network. So the example I give above no longer shows the issue.

    However, you can still see it on this page:

    http://blogs.lincoln.ac.uk/test/

    See how, whenever there is @lincoln.ac.uk either in the content of the page, or in a mailto link, BuddyPress injects a hyperlink with a random user’s email address following the root domain:

    http://blogs.lincoln.ac.uk/amakrzanowska%40lincoln.ac.uk/

    I’ve no idea how or why it’s constructing that URL and automatically inserting it whenever @lincoln.ac.uk is found in the body content.

    Ideas much appreciated!

    #177688
    Henry Wright
    Moderator

    Oops I do apologise! I read up to “What can I hook into?” and couldn’t think of a hook then got carried away thinking of how you could solve the problem 🙂

    EDIT: Perhaps you could request a new hook?

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

    #177683
    noizeburger
    Participant

    Me too, I don’t like the way rtmedia presents the display of media. So I tried to manage a kind of playlist for mp3 by using BP xProfile Custom Fields Type.

    I wrote a short tutorial on how I did it: take a look right here

    #177670
    quince85
    Participant

    @mercime I created buddypress.php page as you advised here my code

    <?php
    /**
     * Displays the page section of the theme.
     *
     * @package Theme Horse
     * @subpackage Attitude
     * @since Attitude 1.0
     */
    ?>
    
    <?php get_header(); ?>
    
    <?php
    	/** 
    	 * attitude_before_main_container hook
    	 */
    	do_action( 'attitude_before_main_container' );
    ?>
    
    <div id="container">
    	 <?php while ( have_posts() ) : the_post(); ?>
    
    		<h1 class="entry-title"><?php the_title(); ?></h1>
    	<?php the_content(); ?>
    
    <?php endwhile; // end of the loop. ?>
    
    </div><!-- #container -->
    
    <?php
    	/** 
    	 * attitude_after_main_container hook
    	 */
    	do_action( 'attitude_after_main_container' );
    ?>
    
    <?php get_footer(); ?>

    My group and create group pages are working, although the layout is a bit messed up.
    But I don’t have the Request Membership button. Can you tell me how I can fix this?

    Thank you!

    Matt Gibbs
    Participant

    This looks like it’s still a valid issue in 1.9.1. For anyone still looking, here’s a patch:

    On line ~1026 of buddypress/bp-templates/bp-legacy/js/buddypress.js, replace

    jq('#groups-dir-list').on('click', '.group-button a', function() {

    with

    jq('#groups-dir-list, #item-meta').on('click', '.group-button a', function() {

    #177634
    David Bisset
    Participant

    Just for the record, I created the ticket: https://buddypress.trac.wordpress.org/ticket/5356#ticket

    #177611
    Marj Wyatt
    Participant

    Nope … sending @webauthor off to start all over isn’t an answer. That site has been updated to WP 3.8/BuddyPress 1.9.1 and the problem still exists.

    #177603

    In reply to: Disable Avatar Crop

    sunnyj
    Participant

    yeah that will be great if the avatar can be auto-crop to default buddypress size without mandatory the user to do it.

    #177593
    shanebp
    Moderator

    You don’t say if you’re doing this on a group page.
    Assuming you are…

    Find a hook prior to output of group users.

    Hook a function that contains your custom sql.

    Take a look at using the bp_pre_user_query_construct hook and ‘Preserve the Order’ here:
    https://codex.buddypress.org/developer/bp_user_query/#code-examples

    #177591
    Boone Gorges
    Keymaster

    I guess the best way to do it would be to filter ‘bp_pre_user_query’ and do some manual modification to the uid_clauses[‘where’] SQL string.

    I know this is less than ideal. In the future, we’ll aim to have better sorting features in BP_Group_Member_Query. But it’s unlikely we could build a system that’d accommodate your custom usermeta sort, in any case, so you’re probably always going to have to do this manually. That said, having a filter on BP_Group_Member_Query::get_group_member_ids() or BP_Group_Member_Query::get_include_ids() is not a terrible idea. Feel free to open an enhancement ticket at http://buddypress.trac.wordpress.org.

    #177590
    David Bisset
    Participant

    BTW, the sort in this instance is sorting with user meta. Not the best setup, I admit. But my point was that i want to be able to generate my own SQL and pass it back in somewhere along the line.

    And yes, using BuddyPress 1.9.1. and i’ve traced it all from the template all the way down. 🙂

    #177578
    xjamesb
    Participant

    Dear Judith,

    see here

    http://premium.wpmudev.org/forums/topic/how-do-i-change-a-buddypress-group-avatar?replies=3#post-595293

    You can update it through the Group Admin menu in WordPress site itself but you must have upload Avatars ticked in the dashboard.

    #177562
    adamjd
    Participant

    Just thought I’d update this again – still no solutions…nor any responses.

    I tried exporting, then deleting all BP tables after deleting BuddyPress. Then, I re-installed BuddyPress and didn’t add the tables back. Guess what! Still…redirect loop errors.

    BuddyPress is the common denominator here. NOTHING else is a problem. At this point, the only solution is, unfortunately, abandon BuddyPress. The issue hasn’t been resolved in several updates.

    I’m looking into WP Symposium now…but will stay on the email for this thread in case someone fixes this bug.

    #177559
    Ben Hansen
    Participant

    i don’t think you understood what i was trying to say, bbpress is the forum software which integrates most tightly with buddypress.

    #177557

    In reply to: Disable Avatar Crop

    modemlooper
    Moderator

    Whatsapp is native and doesn’t need to deal with browser inconsistencies so you can’t really compare it to BuddyPress

    I’ll create a plugin to make the crop work on mobile and have an upload image only in browsers that jcrop won’t work on

    #177556

    In reply to: Disable Avatar Crop

    sunnyj
    Participant

    croping avatar on mobile phone not supported on all mobile browsers especially operal mini and the mini versions of other mobile browsers. Also low end smartphones cannot handle this thereby, given the user no ability to change their avatar on mobile phone.work great on PC, but as we all know these days users uses their mobile phone to access internet more than PC. It would have been great if buddypress was coded specifically to allow croping on mobile phone media library before uploading to the web just like the way whatsapp does. In whatapp user must first crop the image in media library before uploading.This is the reason why I will like disable avatar croping in buddypress avatar upload.

    #177554

    In reply to: Page Not Found

    JeffE
    Participant

    Same here, my user clicks “Request Membership” button on a private group and gets page that says “This is somewhat embarrassing, isn’t it?”

    I’m using BuddyPress 1.9.1, BuddyBoss theme 3.04

    #177551
    Tecca
    Participant

    Here’s a great example of a large WP/BuddyPress/bbPress-made community:

    http://tamrielfoundry.com/

    I have a couple of sites I’m working on myself, though they’re not good examples as I haven’t fully completed them and zero advertising has gone in as of now (though they are live).

    #177550
    merosler
    Participant

    Hey guys,

    I found your thread and thought you guys may have a similar issue as I’m having as it relates to buddypress and registration. Was wondering if you are encountering this:

    bbPress (2.5.3) seems to completely ignore what the user had originally set as their password on my registration page from the very beginning of registration.

    More detailed explanation:
    On the registration page, the user chooses their own password, and then once approved, the user is then sent an automated registration message which then assigns the user a new random password. The user then has to log in using this random password and reset the password.

    Have you encountered this? Any solutions?

    thank you,
    Matt

    #177544
    Melle328
    Participant

    Wordpress 3.8
    Buddypress 1.8.1
    Theme: BP default / child theme

    Plugins:
    Autochimp 2.15
    bbpress 2.5.2
    bbpress mark as read
    bbPress Email Notifications
    BP Group Management
    BP Group Email
    BP Profile Search
    BuddyPress Activity Comment Notifier
    BuddyPress Activity Plus
    BuddyPress Auto Group Join
    BuddyPress Better Pagination
    BuddyPress Block Activity Stream Types
    BuddyPress Extended Friendship Request
    BuddyPress Group Calendar
    BuddyPress Like
    BuddyPress Message privacy
    BuddyPress Real Names
    Change WP Mail From Details
    DigiMember
    Duplicate Post
    External Links
    Image Rotation Fixer
    Mapology
    OptimizePress
    Redirection
    Register Plus Redux
    Remove Dashboard Access
    Suchen & Ersetzen
    Simple Comment Editing
    The Events Calendar
    W3 Total Cache
    Widget Builder
    Widget Logic
    WordPress HTTPS
    WordPress Importer
    WP Crontrol
    WP Show IDs

    I already have a clone of my site, but without members producing content and writing (lots of) private messages I cannot reproduce the error. @djpaul if you are interestet to have a deeper look under the hood, I would be happy to send you login data for community & db.

    Thank you!

    #177535
    Paul Wong-Gibbs
    Keymaster

    This is a good question. I took a look at the code. As far as I can tell, you can safely use this column as a “when did the user join the group” value for most cases. It’s set when:

    * A user joins a group
    * A user accepts or declines an invite to join a group
    * When a user creates a group

    Promoting/demoting a user to moderator/administrator/regular member doesn’t change the value.

    Note that this column isn’t indexed. This is only a consideration if for whatever reason you need to write your own SQL queries, which you shouldn’t need to. If you can’t find a core function that gets the data you need, it would be great if you can let me know here or on https://buddypress.trac.wordpress.org/ and we can add one.

Viewing 25 results - 17,576 through 17,600 (of 68,986 total)
Skip to toolbar