Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 9,351 through 9,375 (of 22,677 total)
  • Author
    Search Results
  • #165626
    @mercime
    Participant

    @tudmak This is the file you should be adding the HTML/CSS to https://buddypress.trac.wordpress.org/browser/tags/1.7.2/bp-templates/bp-legacy/buddypress/members/single/member-header.php
    or you can use bp_before_member_header() or bp_after_member_header() to add the HTML and position the item where you want it in your stylesheet

    #165604
    bp-help
    Participant

    @synaptic
    BuddyPress Registration Options is similar to this idea but it only allows a user to fill out their profile and upload an avatar until the admin approves their account. It doesn’t allow posting to the activity stream however. IMHO if a user doesn’t take the time to fill out their profile then it is a good indicator that they are a spammer but I can see the value in your idea and would I would like to see this functionality in a plugin.
    https://wordpress.org/plugins/bp-registration-options/

    #165574

    In reply to: Remove profile links

    Yukon Cornelius
    Participant

    I was having the same problem, and it wouldn’t work for me with any of the suggested hacks in bp-custom.php

    I found a thread in the WordPress forum on the same topic which worked. Just put:

    remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9);

    in your theme functions.php

    Hope that helps.

    #165572
    devrap
    Participant

    I’m having this same issue, but on a newer version of BP (1.7.1). I’ve submitted a ticket to report this bug, https://buddypress.trac.wordpress.org/ticket/5046#ticket. The error doesn’t occur if *all* fields of the extended profile are filled out.

    #165564
    modemlooper
    Moderator

    You shouldn’t edit those files. You can add settings with a plugin. If you want that as a core feature then post on http://buddypress.trac.wordpress.org then submit a patch of working code.

    #165527

    In reply to: BP-Default fonts

    @mercime
    Participant
    #165523
    @mercime
    Participant

    @thecrow72 basically, BuddyPress uses the WP email functions for its registration process. Deactivate BuddyPress, bbPress and other plugins then check your WP registration/activation emails, etc. If it’s not working, then please resolve your issue at https://wordpress.org/support/forum/how-to-and-troubleshooting

    Before activating BuddyPress, read https://codex.buddypress.org/user/before-installing/

    Good luck!

    #165517
    @mercime
    Participant

    the plugin is “breaking” the layout because its using different content tags


    @millo
    it’s more like your theme is using proprietary templating system. BuddyPress is compatible with nearly all of the WordPress themes in the market.

    BuddyPress uses the page.php file to render BP components. Open up your theme’s page.php file and Save As > buddypress.php and ask your theme developer to change the respective proprietary tags to show the_title and the_content in source.

    After that’s done, upload buddypress.php file into your theme folder in server.

    #165506
    @mercime
    Participant

    @adamfratino Thank you for posting back about the cause of the bbPress avatar issue. Please post at plugin’s support forums about the bbPress avatars issue when BuddyPress and Social Login are activated. https://wordpress.org/support/plugin/oa-social-login

    #165500

    In reply to: email

    @mercime
    Participant
    #165498
    adamfratino
    Participant

    Wordpress 3.5.1, Buddypress 1.7.2, using Bonpress free theme from WPZOOM. I just realized there might be a conflict with WordPress Social Login, which is pulling avatar data from Facebook/Twitter when registering new members, or just when logging them back in with the social options.

    When I shut off WordPress Social Login, the Buddypress avatars show up in BBPress. When I turn social login back on, the original avatars from when the user signed up take over the BBPress avatars.

    #165490

    In reply to: [Resolved] Ajax?

    Cidade Sonho
    Participant

    Sorry but the logout of admin bar don´t do this issue.

    Only the logout of sidebar make this issue.

    I remove the logout button on sidebar in my two domain and now it´s working!

    sorry about the english

    cheers from Brazil, love BuddyPress. Keep Going on Excelent Work of WordPress

    #165468
    Famous
    Participant

    Thank you for making it a little more clear.
    Is there a place to read about how buddypress is supposed to function, or its intended use for each module, kinda like JetPack information?
    Are there any intentions to make the groups (notify group members of site activity) interactive in the near future?
    If not any time soon what is your best (weekly digest plugin or a post notification plugin for wordpress) recommendation?

    #165466
    Kingrammer
    Participant

    some more details if they will help,

    It’s a brand new install of wordpress and buddypress. a multisite install, subdomains.

    The only other plugin is Theme My Login. Custom Community Theme being used at the mo.

    Would someone give me a nudge? Thank you so much to anyone with suggestions. Learning Buddypress and reading through the Ofcom radio broadcasting guides at the same time are pickling my brain!1

    #165453
    ravibarnwal
    Participant

    groups_remove_member how to used in my plugin I am not able to used it.
    Please explain .
    I want to remove member from a group when new user registered.
    I have received group_id and user_id from database. then I want to remove all member from that group without group admin.
    I used function ‘groups_remove_member’ in my own plugin .
    I am new in wordpress and buddypress coding.
    My code is
    if (!function_exists(‘auto_join’)) {
    function update_auto_join_status($user_id) {
    global $wpdb, $bp;

    // get list of groups to auto-join.
    $group_list = $wpdb->get_results(“SELECT * FROM {$bp->groups->table_name} WHERE auto_join = 1″);

    foreach ($group_list as $group_auto_join) {
    $members_count = groups_get_groupmeta( $group_auto_join->id, ‘total_member_count’ );
    if($members_count < 5)
    {
    groups_accept_invite( $user_id, $group_auto_join->id );
    }
    else
    {
    group_auto_join_hidden_group($user_id, $group_auto_join->id);
    }
    }
    $wpdb->query(“UPDATE {$wpdb->users} SET auto_join_complete = 1 WHERE ID = {$user_id}”);
    }

    add_action( ‘user_register’, ‘auto_join’);
    }

    function group_auto_join_hidden_group($user_id, $group_id)
    {

    global $wpdb, $bp;
    $utn = $wpdb->users; // Create a shortcut variable for wordpress users table.
    $gmtn = $bp->groups->table_name . “_members”; // Create a shortcut variable for buddypress groups_members table.

    $mysql = “SELECT user_id FROM $gmtn WHERE group_id=$group_id”;
    $results = $wpdb->get_results( $mysql);
    foreach ( $results as $user) {
    groups_remove_member($user->user_id, $group_id);

    }

    }
    my auto join working well but I am not able to remove member
    Please help me what is wrong?

    darkintruder
    Participant

    @shiftyRZA i saw that u posted the issue here https://buddypress.trac.wordpress.org/ticket/4586#comment:7 again. Thanks! Boone answered and changed the milestone from 1.7 to 1.8. Does that mean, that the BP-Team is looking for the template-loading-delay solution and tries to come up with a fix until 1.8 is released?

    If so, is there any “dirty code” that might fix the problem locally until then? My problem is, that i’m close to releasing a business-site which can’t afford such phenomena in the admin area. So if the BP-Team is working on a fix, i’ll wait with my release until then. If there won’t be a fix in the next months, i’ll have to find other solutions for the features i wanna offer :-S

    Thanks again for your time … Much appreciated!

    marcoarena
    Participant

    Sorry, I just found a ticket is open here: https://bbpress.trac.wordpress.org/ticket/2279

    #165445
    Carvill
    Participant

    Has anyone been able to come up with a simple method for this?

    Really need a solution, I have discovered https://wordpress.org/plugins/limit-bio/ and about to test, but I am assuming it wont work!

    #165434
    Biggerplay
    Participant

    Uh? I just read about a 100 articles about how you can have forums from bbPress and group forums, the 2 themes that I’m trying to choose between mentions both…

    Theme1

    Theme2

    Is that what they do? they have installed bbPress separately ? What are the latest guides for achieving this?

    #165430
    aces
    Participant
    modemlooper
    Moderator

    $user_id = get this from WordPress;
    xprofile_get_field_data( $field, $user_id );

    The way you are getting members id is only good on member pages. If you are on a blog post you can get the author id, if you want logged in user id get that.

    #165403
    Henry
    Member

    Once you’ve confirmed it is a bug/security issue, you can raise a ticket at BuddyPress Trac. The development team will then take a look.

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

    #165400
    Michael
    Participant

    Hey Folks;

    Just bumping this back to the top. If anyone could assist, it would be help greatly. I’m bashing my head against he wall at this point. I could even give ftp access to the dev space and specifics if someone wanted to take a look – just really need to figure out what is going on post upgrade here.

    I created a page in the /blog path and now it goes to that page which is empty. There is no place to assign /blog to a page like there are in other buddypress instances. Perhaps since it’s a stock WordPress blog…. I’m grasping at straws pretty bad here.

    Any help is appreciated.

    Thanks;
    Michael

    #165384

    In reply to: Can't delete plugins

    @mercime
    Participant

    From the dashboard I can’t delete any plugins or themes … RSS Error: WP HTTP Error … I am unable to connect to download new plugins or themes from the dashboard …


    @akukskuks
    BuddyPress activation does not cause those issues. Deactivate BuddyPress. Are the issues still there in your install? If so, you have get WP working without issues first before activating BP again.

    How did you install WordPress, via webhost one-click WP install or manually? If you used webhost’s installation script, backup database to computer, then drop tables and start re-uploading WordPress manually via s/FTP. BP does not work well with one-click webhost scripts.

    @mercime
    Participant

    @tduschei you’re welcome. Marking this as resolved.
    Added those php tags to that page.

Viewing 25 results - 9,351 through 9,375 (of 22,677 total)
Skip to toolbar