Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 2,676 through 2,700 (of 22,741 total)
  • Author
    Search Results
  • #276025
    intrelis
    Participant

    Hi,

    I was wondering if there are more styles for BuddyPress plugin, aside from the “legacy” and “nouveau”? I cannot seem to find anything on the internet, aside from complete WordPress themes with BuddyPRess in mind. I already have a WordPress theme for my website, I am only trying to use BuddyPRess alongside it and was hoping to find a style that could be close so that I can tweak it without having to create it from scratch.

    Thanks.

    #276008
    josh.grisdale
    Participant

    Hello,

    I know that I can change a User’s Display Name via WordPress Hooks.

    ie this changes a user’s display name to be their user id on registration:

    function update_names( $user_id ) {
    	$data = get_userdata( $user_id );
    	$username = $data->user_login;
    	wp_update_user( 
    		array (
    			'ID' => $user_id, 
    			'display_name' => $username,
    		) 
    	);
    }
    add_action( 'user_register', 'update_names' );

    I have a XProfile field called “Display Name” (field_id is “1”). What I want to do is:

    When a User goes to their Profile Edit page and changes the field, when they click “Save Changes” the system will change ‘display_name’ to the text they entered.

    How do I edit the code that fires on profile update?

    Thanks

    #275996
    Prashant Singh
    Participant
    #275981
    wallacelin
    Participant

    Hello, I’m using BuddyPress 3.1.0, bbPress 2.5.14 and the BuddyBoss theme 2.4.6 to create an online community/support forum site.

    I want to create a landing page and followed this guide by WPMUDEV but realized halfway through it is outdated! I couldn’t find any up-to-date forum threads, guides, or articles regarding this.

    I ran into trouble once I actually need to create my own register.php. I was able to locate the file in /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php, but I’m not sure how I can best edit it to fit within my custom landing page seen here. The login form is a widget, to be replaced with the registration form. I want to place the login form in the green upper-right corner.

    Can anyone point me to the right direction as to how I can have the registration form and login form show up? Any help would be appreciated!

    #275961
    Prashant Singh
    Participant

    I think you are looking for solutions that work with blog post only, which is a kind of custom work that needs to be done there.

    But for reference, you can see this plugin https://wordpress.org/plugins/bp-activity-comment-notifier/ that works with activity post comments and it notifies all the users if a comment is made.

    Thanks

    #275949
    Prashant Singh
    Participant
    #275946
    Prashant Singh
    Participant
    #275941
    shubh14
    Participant

    This is a bug. I’m getting this error when I deactivate the activity component from the settings. I have submitted a ticket here

    #275935
    raneeshct
    Participant

    This is not the solution I am looking for. Let me explain what I clearly needs.

    I have an existing WordPress website with a few posts. I have installed BuddyPress plugin. Now let’s assume I have two users A and B registered in the website and consider a post with Title “Hello All”

    1. User A made a comment on the post “Hello All”
    2. User B made a reply comment to the User A’s comment

    it is expected to show a notification on User A profile under notification tab on site such us User B replied to your comment. Unfortunately this is not happening on the website. To cross check whether it is a theme issue, I have changed the theme to default themes of WordPress and notification is not yet showing. Please help. Looking forward to an immediate response.

    Here is the website URL https://beanstalkminds.com/

    #275934
    daynewilliams
    Participant

    Thanks for the reply Shane.

    From what I understand this can only work using the multi-site feature? So if I had 2 different installations of WordPress for each website and wanted to have the BuddyPress accounts shared between the two websites – it would not work?

    #275926
    Prashant Singh
    Participant

    I am not sure if you are creating blog posts or activity. BuddyPress sends notification for these updates https://codex.buddypress.org/administrator-guide/notifications/

    If it is a blog post then you have to go with this code to get notification https://wordpress.stackexchange.com/questions/263950/new-post-notifications-for-users-buddypress

    #275925
    Prashant Singh
    Participant

    Please check this link https://gschoppe.com/wordpress/buddypress-auto-pad-avatars/

    If this can help, it will be great.

    Thanks

    #275924

    In reply to: Accessing Profile Page

    Prashant Singh
    Participant

    Hi,

    Please check this link https://codex.buddypress.org/getting-started/buddypress-links-in-wordpress-menus/

    You can easily get BuddyPress menus on your site.

    Thanks

    #275917

    In reply to: Profile fields

    Prashant Singh
    Participant

    Please check this plugin https://wordpress.org/plugins/bp-xprofile-custom-field-types/.

    They are already adding profile fields with select2 js support, mentioned in the features as well.

    Thanks

    guilhermefr
    Participant

    Thank you for your reply @prashantvatsh!

    I’ve installed the plugin from the link you provided and it worked as intended.

    I then used this code snippet here so that group members automatically subscribe to group forum as they join the group.

    I also had to install this plugin here to manage group members e-mail subscriptions. I set the default to “no e-mail messages” for all groups, so if the group members want also to be informed through e-mail about forum messages, they can configure that as they want.

    grosso2020
    Participant

    Hello!
    I want to output a user comment counter to wordpress posts.
    I use this code

    
    <?php
    $user_id = bp_displayed_user_id();
    $args = array('user_id', 'count' => true);
    $comments = get_comments($args);
    echo $comments
    ?>
    

    But he deduces for some reason the total number of comments to all posts
    How do I display the number of user comments?
    Thanks!

    #275893
    shubh14
    Participant

    Hi,

    I am getting the 400 error when I type in a username to send a private message. The exact error is: Failed to load resource: the server responded with a status of 400 () /wp-admin/admin-ajax.php?action=bp_get_suggestions&term=arun&type=members

    Screenshot of the console

    Wordpress: 4.9.8
    Buddypress: 3.1.0
    Theme: Nouveau

    #275890
    topherjamesknoll
    Participant

    When a user uploads an image for their profile photo or cover image they have the option to crop the image. But the crop feature doesn’t let them adjust where to crop the image and it’s automatically cropped to the small upper-left corner of the image which is rarely interesting 😀

    Hmm… I really want users to be able to upload a picture of themselves.

    Here’s what I’ve tried: Other browsers, disabling all other plugins, updating WordPress and Buddypress

    Is there some code I should change or a plugin that would help?

    THANKS!!!

    stevengnk88
    Participant

    Hi guys,
    I have a wordpress forum with wpforo and buddypress. I tried Wp-Ulike and Activity Reaction for BP (https://github.com/WPPlugins/activity-reactions-for-buddypress) plugin for “like function” just like Facebook.
    But I noticed the plugin conflict with mycred and wpforo for Notifications. The notifications that relate to “like function” from WP-Ulike or Activity Reaction were show Blank on title and description.
    It made me feel a bit awkward, because it kept sending empty messages whenever someone reacted on buddypress activity-stream.
    So I want to remove (exclude) all those notification from buddypress notifications.
    I define component_name and component_action from myphpadmin of the plugin are ‘reaction’ and ‘ai_reaction_bp
    So how to do that?

    #275885
    raneeshct
    Participant

    Please advice on the following,

    1. I have made a test post in my WordPress website and made a comment.
    2. Using another user I have replied to the comment made earlier.
    3. Once checking Notifications tab in my profile, it still shows “no notification found”

    Tried the same with different theme but it still shows “zero” notification.

    #275882
    thedark52
    Participant

    Hi,
    i’m using Customify as theme for my website. I noticed that BuddyPress creates erors in the customization menu for this theme. I have no way to modify the settings, because the drop-down menu with the various settings appear as text.

    If you want, you can see some screen on this link: https://imgur.com/a/XfYx9Ag
    The menu in question should be like this: https://imgur.com/a/BEpQMPq

    PS: The same error is found throughout the customization menu

    Software Informations:
    Wordpress version 4.9.6-it_IT
    BuddyPress version 3.1.0
    Using Customify as Theme

    #275865
    pecosdave
    Participant

    Well, wiped the www directory, gave it a clean database, removed the two default plugins and only installed Buddy Press, same error on group acceptance. As far as WordPress/BuddyPress is concerned that should have been a brand new system.

    At least now I know it’s likely a system level issue, OR I’m the canary in the coal mine since I’m running new everything and the working hosts haven’t been updated yet.

    #275864
    pecosdave
    Participant

    My “wipe” is just of the www directory. Messing with Nginx and getting PHP working on it isn’t something I want to duplicate unless I have to. Even if I move to some genuine metal I intend to copy my /etc/config directories over to the other system. I’m just going to copy the www directory to somewhere else, delete, and do WordPress and the plugins from scratch. Now that I have a solid idea of what I want and how to get there I should be able to do it more “cleanly” and see if that makes a difference. I must have installed and removed 100 plugins, who knows what kind of mess that left.

    I haven’t decided on hosting yet – I may host it from my own cable access at home. I used to do a lot of my own hosting, but modern ISPs tend to make it more difficult. I have a buddy offering me some server space, I don’t know if it will be on a VMWare host (likely knowing him) or if I’m going to get some actual metal in a rack – also likely with him. If he host it I’m getting a minimum 2GB link.

    That VVV link you gave me might be just what I need. The “What do you get” section has a list of things that seem to be important, I might just make sure I have them all. Obviously I have some of them, but the ones I don’t might be the difference between “member added” and “page expired”.

    #275851
    shanebp
    Moderator

    You can switch to a WP theme like 2016 or 2017 – iow. ‘safe’.
    All plugins should work with a WP theme.
    So momentarily switching to a WP theme will provide hints re whether the issue is in your theme or a plugin.

    Your issues are too specific to your setup for you to get more then general suggestions here.

    Try to get some specifics: Debugging_in_WordPress

    pecosdave
    Participant

    First of all, I can’t give you a link, I’m building this on a VM and fixing it before deploying it, it’s only accessible on the host machine at the moment, not even other machines on the local LAN can see it at the moment.

    Wordpress Version 4.9.8
    Buddypress Version 3.1.0
    Ubuntu 18.04.1 LTS (GNU/Linux 4.15.0-32-generic x86_64)
    nginx version: nginx/1.14.0 (Ubuntu)
    PHP7.2
    Custom CommunityVersion: 2.1.2

    I’m a veteran IT guy. I’ve dabbled in web off and on over the years, but I don’t qualify as a proper webmaster, I’m attempting to create a private FaceBook replacement to try to get my family off of that platform.

    I’ve been quite happy with what I’ve seen so far, but I’m beginning to wonder if I’m missing a library, framework, or something similar in my Linux install that I need. I’ve been looking for the problems I’m experiencing in various forums and searches but not finding the same errors. (I don’t ask for help until I’ve done my basics) Save for the errors outlined below I’m about ready to roll this thing out.

    I’ve duplicated these problems on multiple themes, so I really don’t think they’re theme related, but if you can suggest a “safe” theme I’ll check.

    First of all – Groups.

    Groups are working – mostly. When I create a group another user can request to join the group, the failure happens when I click accept or reject in both cases I get a message saying the link has expired. As an admin I can add other users to the groups, but the ability of users to create and add/reject on their own is broken. Any search I do for this problem usually has a bunch of results having to do with installing themes and nothing to do with groups.

    Plugin:

    Plugin Problem – BP Better Messages. This plugin is unusable – but has great reviews and the BuddyPress name attached to it. It looks like it’s going to work, but I am unable to create new threads. It pulls up the other users messaging page, but no message types at all can be created. Also, no one else seems to be reporting this issue, which is why I’m leaning towards a missing library or framework.

    Final Problem – an annoyance:

    The notification counter – it stays at 1 and I can’t seem to “view” the last item on the notifier, on any user.

Viewing 25 results - 2,676 through 2,700 (of 22,741 total)
Skip to toolbar