Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,526 through 16,550 (of 73,981 total)
  • Author
    Search Results
  • #246432
    ikanaspencer
    Participant

    Twenty Fifteen Theme and only BuddyPress activated and I still get that message.

    … Disable BuddyPress the error is gone. Custom Taxonomy and Post types were made via the functions.php, as of my testing with the Twenty Fifteen these customizations were not enabled at all. Now I think I did forget to mention this is a multisite setup with only 1 site currently.

    Can you give me some clues of what hooks might have been used? I can do some investigating.

    #246427

    In reply to: Custom Hook Help

    Henry Wright
    Moderator

    Take a look at the source where the hook appears. See here. You should see do_action( 'bp_after_registration_confirmed' );.

    This invokes all functions hooked to bp_after_registration_confirmed. So for example:

    function test() {
        // The code here will be run.
    }
    add_action( 'bp_after_registration_confirmed', 'test' );

    In this particular case, nothing is passed to test(). So to answer your question:

    how do I retrieve registration data from the hook?

    If an argument is supplied to do_action() like this: do_action( 'bp_after_registration_confirmed', $user_id );, then that argument is passed to your custom function. You can receive that argument like this:

    function test( $user_id ) {
        // Do something with $user_id here.
    }
    add_action( 'bp_after_registration_confirmed', 'test' );

    So the short answer is if you want to use $user_id in your custom function, then bp_after_registration_confirmed isn’t the right hook to use, because it comes with no arguments. This isn’t always the case because sometimes you may have request variables available but I won’t get into that.

    Hope this helps!

    #246426
    jessicana
    Participant

    mercime and @hnla I would appreciate any insights from your part as I need to finish my project and buddypress groups page is reading the home page customized styles.

    Thanks

    #246416

    In reply to: Custom Hook Help

    Henry Wright
    Moderator

    Can someone confirm if this code will ever be overwritten by an update to WordPress or BuddyPress?

    Updating WordPress or BuddyPress won’t overwrite anything you have added to your theme, but updating your theme will do. The way around this is to create a Child Theme.

    #246414

    In reply to: Custom Hook Help

    happymunkee
    Participant

    Thanks for your responses. Plugging in the same code into functions.php inside the theme itself seems to resolve the problem. I put the snippet in wp-content/themes/klein/functions.php. Can someone confirm if this code will ever be overwritten by an update to WordPress or BuddyPress? I know updating BP will overwrite the register.php page.

    #246412

    In reply to: Activity Stream

    dhscratch
    Participant

    Thanks @venutius, but I’m really hoping to get a solution that maintains full functionality of buddypress native activity stream page (e.g., ability to @users and toggle between mentions, friends, groups)… really would love to know how to access and edit the html structure of buddypress pages I guess…

    Thanks again!

    #246408
    shanebp
    Moderator

    How are you creating the custom taxonomy pages?

    re: ‘We get this annoying error’ – yes it is annoying.
    It also indicates that something is calling BuddyPress or a WP user function too early in the load process – usually via a hook.
    Unfortunately, many themes and plugins do that and there is no warning – but BP will issue the warning.
    Tracking down the culprit can be difficult.

    That warning notice will not appear if you are only using WP and BP with a standard WP theme like 2015.

    #246401

    In reply to: Front-end Dashboard

    Mrdanielclarke
    Participant

    Hi danbp,

    Apologies, maybe I wasn’t clear initially.
    I have Buddypress and yes my users can already change the profile picture from the front end, as well as upload files, etc.

    On my site, users can update their profile, change their avatar, upload various types of files, etc. as well as post on 2 other pages. I want a front-end dashboard where the user can make all the changes from there, so they don’t have to navigate around the site for different changes.

    Hope that makes more sense.

    Thanks

    #246396

    In reply to: Front-end Dashboard

    danbp
    Participant

    If you use BuddyPress, each user can change/modify his profile picture on frontend !

    Try yoursite/members/username/profile/change-avatar/

    To share files, you have some plugins like BuddyDrive which comes also with a frontend editor.

    #246395
    danbp
    Participant

    BuddyPress Templaters are @mercime and @hnla.

    #246394
    danbp
    Participant

    Hi,

    if you’re comfortable with php, see here:

    bp_modify_page_title

    Here, an example:
    https://buddypress.org/support/topic/how-to-change-tags-order/
    Another use case here:
    https://buddypress.org/support/topic/how-to-get-notification-count-code/

    Hope this help !

    #246389
    jessicana
    Participant

    Hello

    Could you please tell me where are the styles of:
    http://mydomain.com/groups/any-group name/ are coming from and how to change it?

    Thanks

    #246381

    In reply to: Deafult Group page

    Venutius
    Moderator
    #246377

    In reply to: Deafult Group page

    Venutius
    Moderator

    You might want to look at BuddyPress Group Extras. This allows you to create and extra page and set it as the landing page.

    #246375
    mushroominternet
    Participant

    I have a Buddypress installation on a WP multi-site. Everythings working great but the Groups. I currently have 8 groups, however when I try to create a new one something strange is going on.

    Once I’ve choosen a group name and description the next step seems to be missing (See image below)
    http://i0.simplest-image-hosting.net/picture/group-fail.png

    After I click Finish I get taken to this screen confirming ‘Are you sure you want to do this?’ (See image below)
    Are you sure message

    The starnge thing is that once I click try again the group gets added but seems to remove another group in it’s place. This means everytime I try to add a new group one get’s removed. The groups are all in the database but for some reason Buddypress only ever shows 8 groups.

    I’m running a custom built theme built on top of the default 2012 theme. I have tried disabling all plugins but Buddypress, and reverting to the default theme with no luck. I have also uninstalled Buddypress and reinstalled it but that didn’t work either.

    Any help would be greatly appreciated.

    r-a-y
    Keymaster

    Puffyjoe’s example should work in BuddyPress 2.4.0.

    BP 2.4.0 will pass all activity update form data, so you can save custom activity data a little bit easier.

    If you want to test, v2.4.0 is currently in release candidate status. Read the announcement post here:

    BuddyPress 2.4.0 Release Candidate 1

    r-a-y
    Keymaster

    It’s a little bit of both.

    Please post a ticket on Trac as I experienced a similar issue just this week. (Not emoji-related, but still!)

    Update – There is already a ticket:
    https://buddypress.trac.wordpress.org/ticket/6346#comment:16

    #246354
    danbp
    Participant

    Hi,

    this can be done by template overload and a child-theme.

    #246351
    danbp
    Participant

    BuddyPress doesn’t handle the register process, it only show it and add some custom field via xprofile component.
    Search on WP’s Plugin Repository or “wordpress age verification” with google. 😉

    #246349
    danbp
    Participant

    Are you sure that the translation exist ? Have you a buddypress-xx_XX.mo file ? Where xx_XX is the iso of your language (eg en_US).

    mo is a compiled format and the only file that php need to translate your strings.

    To get such file, you need to use a language compilator like poEdit. Changing strings in only buddypress-xx_XX.po has no effect on the translation. This format is a simple text format intended to be used by the translator.

    And the buddypress.pot (note the final T) is also a text format file which contains the list of all strings you can translate.

    Where do you add your copy and which language do you use ?

    #246348
    danbp
    Participant

    Have you correctly set up group forums ? Please read here(if you read french), ensure anything is correct and apply what i explained above.

    Main reference is here

    Installing Group and Sitewide Forums

    #246347

    In reply to: Karmas and Credits

    danbp
    Participant

    Yes i understand what you want to do, but you’re on a BuddyPress help forum. Your questions are not related to BuddyPress but to myCred. For such custom usage, please user the myCred help support.

    #246342
    Lacod
    Participant

    Thanks

    But for me, on the “parent forum” choice, there’s only forums, there is any buddypress group ?

    #246335
    Henry Wright
    Moderator
    karlosdpm
    Participant

    Do you know a wordpress o buddy press function i can use to grab all current wp user avatars and assign them to the corresponding buddypress profile? After that, I am planning to have the users change the avatar only from buddypress profile not from front end registration form.

    Please help,
    thank you!

Viewing 25 results - 16,526 through 16,550 (of 73,981 total)
Skip to toolbar