Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 3,001 through 3,025 (of 22,650 total)
  • Author
    Search Results
  • #272383
    Varun Dubey
    Participant

    @markleeuw user is getting logout after password change that’s why you are getting 404 error page. Try to debug with the default WordPress theme and only BuddyPress plugin, might be some plugin is creating conflict.

    #272372
    Varun Dubey
    Participant

    Hi @anas9279 You can download po and mo files from the following link and save inside
    /wp-content/languages/plugins/
    https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/ar/default

    #272342
    Venutius
    Moderator

    Hi Glenn, welcome aboard.

    I’m pretty new to BuddyPress myself, at least on the in-depth side of things but I’ve been a user for a few years now. Just recently started writing plugins. I know what you mean regarding integration, I guess that’s what you get with a private system, less features but better integrated.

    I’ve just created a plugin that I hope will take a step in the right direction integration wise. It’s called BP Post Status and it integrates WordPress posts with BP, allowing posts to be shared in groups and to friends. It’s also got a neat group homepage feature. If you intend to give your members the ability to blog it’s worth taking a look at. Still got a few teething problems though, nothing major, just my lack of experience shining through 🙂

    #272330
    michaellanfield
    Participant

    1. How to do this?

    2. This is not done with a plugin. I just added a new field under Profile Field in Users in WordPress dashboard. How to do this?

    #272329
    michaellanfield
    Participant
    #272323
    Varun Dubey
    Participant

    @grwebs Your register page seems working fine http://grhs88.glenrocknews.today/register/
    If that’s still an issue, make sure you have mapped the pages correctly inside the WordPress Dashboard
    Setting >> BuddyPress >> Pages

    #272313
    sayfrndship
    Participant

    some how i found that
    underneath this code

    if ( !empty( $account_details[‘errors’]->errors[‘user_name’] ) )
    $bp->signup->errors[‘signup_username’] = $account_details[‘errors’]->errors[‘user_name’][0];

    add_action( ‘bp_’ . $fieldname . ‘_errors’, create_function( ”, ‘echo apply_filters(\’bp_members_signup_error_message\’, “<div class=\”error\”>” . stripslashes( \” . addslashes( $error_message ) . ‘\’ ) . “</div>” );’ ) );

    it was showing error,
    wordpress really suchks. wp is just for kids not for professionals

    #272311
    James Revillini
    Participant

    MY PREVIOUS POST IS MISSING SO I’M REPOSTING AND HOPING THIS ISN’T JUST LAG…

    OK I found a more targeted way to fix this. Short answer, I added this code add_filter( 'bp_get_activity_content_body', 'stripslashes_deep' );

    HOW I added it is kind of important, I think. I’m running a plugin called Code Snippets https://wordpress.org/plugins/code-snippets/

    By creating a snippet with just the code above, it takes care of removing those backslashes from comments on activity before it is displayed on the front end. If you apply the fix with this plugin, you can also select “run on front end” in the snippet editor for efficiency/performance.

    If you wanted to fix it in your child theme (I don’t know why you’d only want the fix to be theme dependent, but that’s up to you …) then I believe this code would go into your functions.php (untested):

    add_action('plugins_loaded', 'jrevillini_buddypress_get_activty_content_body_stripslashes' );
    function jrevillini_buddypress_get_activty_content_body_stripslashes () {
    add_filter( 'bp_get_activity_content_body', 'stripslashes_deep' );
    }

    Now I know that stripslashes is already applied to bp_get_activity_content_body by buddypress itself because I found it listed in this document, line 00079: https://drive.google.com/file/d/0B2NrrKAXLm0JQ01GT1ZGQlVOMkE/view (so my code *seems* redundant)

    The only thing I can assume at this point is that the code built into buddypress to attach the filter is running too early for all output possibilities at priority 5. By simply adding it into a code snippet which is running as a plugin at the default priority, it seems to do the job before output on the member activity endpoint.

    It should be noted that even without my fix, the same activity post will appear fine at some endpoints and not others.
    The ones that I found that already worked:
    * within a discussion e.g. /members/NAME/activity/73/#acomment-74
    * on /member/NAME *as a reply* but *not* as an activity post

    #272295
    Varun Dubey
    Participant

    @kriskl You can try https://wordpress.org/plugins/inactive-user-deleter/
    Make sure you have created a full database backup before trying the plugin

    Varun Dubey
    Participant

    @axcelluloid You can filter inside BuddyPress Strings, it’s not inside BuddyPress codes
    You can also search via Find in folder approach for BuddyPress plugin
    https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/en-gb/default

    By Default, BuddyPress only need account activation via email to start using the site.
    “Please upload your profile photo to start using this site.” must be coming from your theme or any 3rd party code.

    Varun Dubey
    Participant

    @axcelluloid Please try to debug at your site using default WordPress theme and keeping BuddyPress plugin only at your site. Inside your site, it must be some custom code or 3rd party plugin which is adding those warnings.

    #272272

    In reply to: GDPR compliance

    Varun Dubey
    Participant

    @jgflores
    As per my understanding

    — BuddyPress does not save any data related to IP address inside cookies.
    — All the profile fields which you have created for your users are kept inside your WordPress database only, not linked to any 3rd party application. If you are using Akismet plugin for spam protection for BuddyPress, they will check logged in member IP address to cross check with their spammer’s database log, again that’s not the BuddyPress thing.

    #272262

    In reply to: Exclusive network

    Varun Dubey
    Participant

    @cartessius it will be a combination of the plugins, using BuddyPress cusotmization to build up relation will need lots of customization, but MLM plugin like https://wordpress.org/plugins/affiliate-mlm-party-plan/

    Binary MLM


    will create a relation between the user and can display theme tree structure.

    For BuddyPress, they will be an independent member with their social profile and you can easily display their parent or children user info at their profile easily via minor code edits.

    For Assigning them rank, you can use any gamification plugin like mycred, badgeos and you can also automate these rank based on their activities.

    #272260

    In reply to: Registration Form

    Varun Dubey
    Participant

    @stl314 You can try https://wordpress.org/plugins/social-articles/ it will allow your members to add blogs.

    Varun Dubey
    Participant

    @normancates You can make a suggestion for it as a feature request at following link https://buddypress.trac.wordpress.org/report

    #272255
    Varun Dubey
    Participant
    #272253
    Varun Dubey
    Participant

    @orero It will suggest using Gravity form user registration add-on, it will give you WordPress user meta and BuddyPress xprofile fields mapping option as well as gravity form fields.
    https://www.gravityforms.com/add-ons/user-registration/, it will take care of all user and field validation as well.

    As a free option, you can check https://wordpress.org/plugins/frontend-registration-contact-form-7/

    #272250
    Varun Dubey
    Participant

    @datenfresser Try to test if your server can send emails sometimes its disable at the server end, in most of cases server itself create an issue. Try https://wordpress.org/plugins/check-email/ to check email sending.

    #272248

    In reply to: Forums

    Varun Dubey
    Participant
    #272246
    Varun Dubey
    Participant

    @normancates, BuddyPress has an only primary field as Name, rest are user-defined.
    With BuddyPress, you are also allowed to create additional First Name & Last Name fields, and it will need some custom codes like pasted by @krioteh.

    You can try https://wordpress.org/plugins/bp2wp-full-sync/, hopefully, it will help.

    Varun Dubey
    Participant

    @normancates you can check for https://wordpress.org/plugins/bp2wp-full-sync/ plugin, it will allow mapping your xprofile fields with WordPress User Fields.

    #272239
    Norman Cates
    Participant

    That’s awesome.

    Why is this not a standard part of Buddypress? (Rhetorical question)

    IMO, any fields should be designated (or able to be designated) as linked to the WP profile information.

    THis is a CONSTANT source of confusion for me and any users. Because some plugins use the WordPress profile info, and some the Buddypress info.

    I get that they probably need to do that. But at least let us synchronise the data.

    Including display name options…

    Please, BP / WP developers, slam an interface on this and let us keep our data consistent.

    Cheers,
    Norm

    #272236

    In reply to: Assign Members Page

    baccoeur
    Participant

    Hi

    I have figure it out where the issue is i have checked this 3 components
    PLease see screenshot
    https://prnt.sc/j7k2k1

    So i can now assign my member page
    http://prntscr.com/j7k7uf

    So can you please give easy way instrutions or tutorial?
    On How can i make this Please!

    1.Create Buddypress Community
    *Users can create and update profiles, including the use of profile photos. Site administrators can easily set up the parameters of the user profiles.

    *Users can befriend one another. The site owner can decide what special abilities friends have with regard to one another.

    *Users can send private messages. BuddyBoss comes with a robust private messaging system, similar to that found on Facebook. Users can choose whether or not to receive an email notification when someone sends them a message.

    *Users can form and join groups. Groups can be used for a wide range of functions within the website. Administrators can choose to let their users create and join groups of common interest.

    *Users can follow activity streams. BuddyPress activity streams provide a quick digest of the recent activity going on within a site or with regard to a particular user.

    *Users can create blogs. Capitalizing on the full functionality of WordPress, the most popular blogging platform in the world, BuddyPress gives administrators and users a full-featured online publishing platform.

    *Users can participate in forum discussions. BuddyPress is fully integrated with bbPress, a slick forum system.

    2. Active Login portal with Facebook or Google login credentials.
    3. Active User generated material through BuddyForms or other methods.

    Please advice thank you!

    #272229

    In reply to: BP vs WP user roles

    Paul Wong-Gibbs
    Keymaster

    BuddyPress does not use WordPress user roles or capabilities. Technically, there is a bp_moderate capability, but we map that to roles that have manage_options capability (by default), or Network Admins, in multisite.

    Even so, some parts, including the Profile Fields admin screen in wp-admin, require the manage_options capability.

    So, basically, add the bp_moderate capability to all your custom roles, and if that doesn’t work, they’ll need the manage_options role — which, warning, gives them a lot of WordPress admin power as well.

    No ways around this at the moment.

    #272220

    In reply to: Exclusive network

    cartessius
    Participant

    @vapvarun
    Thank you for your reply.

    Can you please elaborate more how the plugin can be used to create the hierarchical network which works on invitation basis? The mentioned plugin contains interesting features – I also need to define ranks (for example “national director” or “regional director” etc).

    Are there any other plugins which could be used? Somebody mentioned using this plugin for invitations: https://wordpress.org/plugins/invite-anyone/#description

    It would be very helpful if you could send me an example so I can see how this works in praxis.

    Thank you!

Viewing 25 results - 3,001 through 3,025 (of 22,650 total)
Skip to toolbar