Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,976 through 9,000 (of 69,046 total)
  • Author
    Search Results
  • #260246

    In reply to: BuddyPress Components

    danbp
    Participant

    Does the server has the minimum requirements to run WP and BP ?
    What about the htaccess file ? When you moved the site directory, have you regenerate this file ?

    About blank pages

    #260245
    danbp
    Participant

    Hi,

    this question is not related to BuddyPress.
    You have several options, from simple to overcomplicated.

    1) If you have only a few friends to add, you can do that manually from dashboard. You need also a phone field in xprofile.
    2) If you have hundreds, you need to write or generate a csv file and import them via phpmyadmin or any msql command line…

    All this is explained on WP Codex.

    #260243
    danbp
    Participant

    Sorry for the outdated trick.
    bp_is_profile_edit is deprecated in favor of bp_is_user_profile_edit.

    Check for the outdated fn in the plugin mentionned in the error msg.
    In case of, here a tutorial with more options.

    #260231
    planetoffitness
    Participant

    Hey guys!


    @kida18
    thanks for your hint 🙂 i will remember the next time!


    @hnla
    thanks for your response. Uff, this sounds really complicated for me, im not a really good coder! 😉 So i think, i’ll wait for your update.

    What i want: i need different name colours of the profiles. For exemple admins red, subscriber black, fitnesscenters green. (for this is can give the fitnesscenters another user role for exemple editor)
    The name colour should be everywhere, in the profile, in the member list, in the activity list, everywhere. (Much better whould be, if you just can give the users different colours in the user list in the dashboard, and i dont have to give them different user roles.) This would be very usefull and easy to handle, i think this feature would also be interesting fot other buddypress users here.
    Look at my screenshots, will this be enable in your update 2.8?

    How to edit exemple

    Member List exemple picture

    Thanks guys

    #260230
    Hugo Ashmore
    Participant

    @planetoffitness
    If you inspect the generated markup you will see that the loop list elements will have a members type class rendered if user has a type you can then use those to effect styling on.

    In the member single screens it’s a little trickier you do have the ability to use the template hierarchy to set a template for a user type (please refer to the codex for instruction) otherwise for the moment you would need to modify the home.php template to add this yourself something like:

    <?php $user_type = bp_get_member_type( bp_displayed_user_id() ); ?>
    
    <div id="buddypress" class="<?php echo esc_attr( $user_type ); ?>">

    First line is an addition the second you need to modify the existing element to add the class and php – all in a child copy of the home.php template naturally.
    We will update buddpress core to add a class to the body elements for 2.8 as this would be useful and styling could be effected on that too so if you would rather wait for 2.8…

    #260229
    tizianopitisci
    Participant

    Unfortunally I didn’t find any solution. The issue is not reported to buddypress (I’ve tried but it was a bit complicated).

    #260227
    kida18
    Participant

    Hey there,

    I’m no expert, just a buddypress user like you, but you should precise what you want to change and where, for people to understand and help you.
    What element should have a different color? And where? On the members directory? In profiles?everywhere? etc
    Good luck

    #260221
    Paul Wong-Gibbs
    Keymaster

    Reported problems

    Extended Profiles – Field visibility option missing from registration form.
    Confirmed and being fixed for BP 2.7.1: #7298

    Extended Profiles – “years” missing from “Date Selector” field type.
    Workaround: edit the field, and reselect the “absolute” range option, customising the date range as required (default is from 1956 to 2026 for most servers).

    Confirmed and being fixed for BP 2.7.1: #7300

    Backwards incompatible function signature change for groups_get_group
    Confirmed and being fixed for BP 2.7.1: #7302

    Changes to loading deprecated code causing fatal errors.
    For certain very old themes, and for sites that use the Sites component.
    Confirmed and being fixed for BP 2.7.1: #7307

    #260218
    Paul Wong-Gibbs
    Keymaster

    I remember looking at Mailgun before when someone asked about it. Looking at its code very quickly, it has an option to send via its API or not. You’ll need to disable its “useAPI” option (otherwise, it redeclares the wp_mail function, which will force BuddyPress to send plain-text only emails). Another consequence of doing this is that Mailgun configures PHPMailer to send via SMTP, and some web hosts/servers block external SMTP requests.

    If that has no affect, I think you’re going to have to do debugging inside the bp_send_email function. Specifically, I’d start looking at the return value of this line: $status = $delivery->bp_email( $email );

    With luck, PHPMailer will give you an error message with some clues in.

    #260216
    Paul Wong-Gibbs
    Keymaster

    > I have fixed the error I was getting of email_missing by adding information into the taxonomy tables manually. There is no documentation about this which is odd.

    I don’t think it’s explicitly documented outside of the PHP – but it is hard to find, at the best of time – but this guide https://codex.buddypress.org/emails/custom-emails/ does mention it uses a custom taxonomy, so I wouldn’t call it “undocumented”. “Very badly documented”, maybe 😀

    #260214
    Paul Wong-Gibbs
    Keymaster

    Assuming everything is working as it is, I don’t know why it would show more users than you have, either. Have you tried going to Tools > BuddyPress, and running “Repair total members count” as a workaround for now?

    ico33
    Participant

    I mean: is it enough to create a file bp.custom.php and upload it in the right folder? or do I have in some way “say to buddypress that there is that file”? It’s enough to create it (because I don’t have that file) and upload it?

    sven1988xyz
    Participant

    Or is there maybe a way to sync the members of a Buddypress Group with for example the plugin “Groups”? So the group admin is able to change user role in this group in the backend?

    #260179
    Venutius
    Moderator

    BuddyPress does not come with a default image for groups, this must be getting added by something else, could it me your theme?

    #260172
    Paul Wong-Gibbs
    Keymaster
    #260157
    phucitol
    Participant

    @tizianopitisci

    did you find a solution to this, or do you have a link to the buddypress trac where it was reported?

    #260156
    Hugo Ashmore
    Participant

    It sounds like a template issue, there do need to be template revisions, additional template function tags to make this process work as detailed in the codex page here:

    Template Updates 2.7

    Custom themes may well not have updated their templates.

    Registering the new types can be done in theme functions files but then are locked to that theme or site.

    #260152
    Venutius
    Moderator

    If you are pretty new to BuddyPress you might be interested in my website, set up to help people get the most out of BuddyPress – BuddyPress User

    #260133
    Paul Wong-Gibbs
    Keymaster

    dbDelta is a WordPress function, @danbp, it’s not bbPress specific. It’s used to update the schema of a MySQL database. The bigger question is how did something trigger the BuddyPress installation methods yet not make sure the relevant WordPress function was loaded.


    @nhatnnt1
    What version number of WordPress are you using?

    #260125
    mayschje
    Participant

    In your filter functions, why not check for page_id or title – if not available, then just return

    Well, ask the WP/BP page lifecycle 😉 Making a hook dependent on a variable that in some stages of the page lifecycle does not exist leads to that some hooks are never fired (e. g. bp_members_directory_order_options or bp_pre_user_query, etc.).

    Thanks again for your replies and the offer to help out with the code. I solved the issue yesterday by implementing the custom page independent from BuddyPress as it was a faster, cleaner and more reliable solution.

    🙂

    #260124
    Matt2012
    Participant

    I spent a lot of time on a similar issue and the only thing that worked was using this format.

    date(“Y-m-d 00:00:00”)

    In other words must have h:i:s but they must be zeros. That seems like a bug to me but thats the only thing that worked with a buddypress date field whilst using xprofile_set_field_data

    #260120
    danbp
    Participant

    Add the code to bp-custom.php

    bp-custom.php

    Read also here, might help for test

    Group Types option display

    #260119

    In reply to: Bp custom Menu

    danbp
    Participant

    Such snippet is usually working when added to bp-custom.php

    bp-custom.php

    #260084
    livingflame
    Participant

    Custom Menu with Bubbles RESOLVED here:

    Bp custom Menu

    #260082
    eKnizky
    Participant

    Iam using buddypress and I dont need block users.
    I have menu with notify. It takes me about 15 min.
    Search activities by Date is what I have never want.

    Less talking more teaching.

Viewing 25 results - 8,976 through 9,000 (of 69,046 total)
Skip to toolbar