Search Results for 'wordpress'
-
AuthorSearch Results
-
August 21, 2018 at 8:08 am #275801
In reply to: filter user activity show only images
Prashant Singh
ParticipantAugust 21, 2018 at 7:59 am #275798In reply to: BuddyPress/Multsite Menu URLs
Prashant Singh
ParticipantHi, in Appearance > Menus You have to enable BuddyPress from screen options and then you can add BuddyPress links to the menu. Please check: https://codex.buddypress.org/getting-started/buddypress-links-in-wordpress-menus/
Thanks
August 21, 2018 at 7:01 am #275783In reply to: Buddypress Profile Error
Prashant Singh
ParticipantTry saving permalink and check again. If it is still not working please make wp-debug to true, https://codex.wordpress.org/WP_DEBUG, to see if there is any error.
Thanks
August 20, 2018 at 1:54 pm #275762In reply to: Embed an Activity stream like in Group & Profiles
Prashant Singh
ParticipantYou can try this plugin as well https://wordpress.org/plugins/shortcodes-for-buddypress/ and try shortcode
[activity-listing object = groups]August 20, 2018 at 1:15 pm #275756In reply to: Filtering Activity Feed
Prashant Singh
ParticipantYou have placed the code in parent theme’s functions.php which is not correct, because in future you will have an update of the theme and when you will update these changes will be lost. So you should always paste any new code in child theme’s functions.php. In case it is not working there and you are not able to get it why? then install this https://wordpress.org/plugins/code-snippets/ plugin and try adding code under snippets and see if it is working fine. Also before placing code with this plugin just remove it from your functions.php otherwise if the same code will be there on both places then it will generate a fatal error.
When I moved the code to the functions.php in the social-portfolio folder, it worked exactly as expected.
Thanks
August 20, 2018 at 1:01 pm #275755Prashant Singh
ParticipantYes, that is possible by removing the following capabilities from the role:
edit_users
create_users
delete_usersOnce it is removed from the role then users from that particular role will not be able to create/edit/delete users.
Please follow this link: https://codex.wordpress.org/Function_Reference/remove_cap
Thanks
August 20, 2018 at 12:32 pm #275754In reply to: Hide empty group types
Prashant Singh
ParticipantThis function returns all the registered group types so you have to write your own for this. https://wordpress.org/plugins/bp-create-group-type/ this plugin have option to let you choose which group type you want to show/hide.
Thanks
August 20, 2018 at 12:23 pm #275753In reply to: Redirect to member home?
Prashant Singh
ParticipantPlease try this plugin https://wordpress.org/plugins/bp-redirect-to-profile/
Thanks
August 17, 2018 at 8:33 am #275720In reply to: Hardware Requirements for Buddypress and WordPress
Prashant Singh
ParticipantHi,
It is mentioned here https://buddypress.org/about/requirements/ and this is for WordPress https://wordpress.org/about/requirements/
WordPress clearly stated that it’s ‘Not required, but recommended for better security’
Thanks
August 16, 2018 at 7:23 am #275696In reply to: Redirect to member home?
Prashant Singh
ParticipantPlease paste this code in your child theme’s functions.php file or you can use this plugin https://wordpress.org/plugins/code-snippets/ as well
add_filter( ‘bp_login_redirect’, ‘ps_redirect_to_profile’, 11, 3 );
function ps_redirect_to_profile( $redirect_to, $redirect_url, $user ){
if( empty( $redirect_to) )
$redirect_to = admin_url();//if the user is not site admin,redirect to his/her profile
if( isset( $user->ID) && ! is_super_admin( $user->ID ) )
return bp_core_get_user_domain( $user->ID );
else
return $redirect_to;}
It will redirect site admins to dashboard and other users to their profile.
Thanks
August 14, 2018 at 7:36 pm #275684In reply to: Redirect to member home?
meridioinc
Participant*Update*
Now it’s redirecting to the WordPress admin page for a user account. Not the super admin for the site, but just the account. Not sure I recall editing anything for this to happen.
August 14, 2018 at 9:43 am #275674In reply to: Problem with german “Umlaut” ä ü ö
casper99
ParticipantAugust 10, 2018 at 8:08 pm #275639In reply to: BuddyPress Menu Not Showing for Old Members
shanebp
Moderator“Show Toolbar when viewing site” is a WP setting.
Somebody probably has such a function.
But you should ask a larger audience – trywordpress.org/support/August 9, 2018 at 5:20 pm #275615In reply to: Bug in activation messages
r-a-y
KeymasterThis has already been reported as a bug here:
https://buddypress.trac.wordpress.org/ticket/7894August 7, 2018 at 10:33 pm #275578In reply to: “Cancel Friendship” button not working
r-a-y
KeymasterDo you both have the Activity component disabled?
If so, this is a bug. We’ve tentatively fixed this for the next release.
However, you can temporarily apply the changes by by adjusting these files:
https://buddypress.trac.wordpress.org/changeset/12185(Red means code removal, green means code addition)
August 7, 2018 at 4:55 pm #275569r-a-y
KeymasterThe bug needs to be reproduceable on a fresh install of WordPress and BuddyPress.
If you are able to replicate this bug there, then please list the steps it takes to duplicate the problem.
It’s possible that you are using a plugin or custom code to change certain things. If that is the case, you need to disable all BuddyPress-related plugins and code snippets and then trying to reactivate each one to pinpoint what is causing the problem.
August 4, 2018 at 5:03 pm #275546In reply to: Activity Load More Not Working
Aron Prins
ParticipantHey @nfxpert – @belle33 – @itsart,
If it is allowed for me to share my domain here, it is https://www.collectorplayingcards.com (running on BuddyBoss original theme (not Boss).
If you look in the header section you can see my little resetCookie function in action.
Like @r-a-y says, that is a “good enough” solution for now, or you could take him up on his trac ticket https://buddypress.trac.wordpress.org/attachment/ticket/7896/7896.01.patch 🙂
Hope this helps!
Cheers,
AronAugust 4, 2018 at 4:10 pm #275545In reply to: Can’t Post in Activity Stream
r-a-y
KeymasterI just saw another thread about this.
It looks like the bp-nouveau JS files are not being outputted in the footer.
You can check to see if the
buddypress-nouveauJS file is being properly registered and enqueued:
https://buddypress.trac.wordpress.org/browser/tags/3.1.0/src/bp-templates/bp-nouveau/buddypress-functions.php#L296
https://buddypress.trac.wordpress.org/browser/tags/3.1.0/src/bp-templates/bp-nouveau/buddypress-functions.php#L364Are you, by chance, filtering
'bp_nouveau_register_scripts'anywhere?August 3, 2018 at 4:33 pm #275544In reply to: Activity Ajax not returning results
r-a-y
KeymasterSounds like the same problem as this report:
Unfortunately, we have been unable to determine the cause. Maybe you can help?
If you are able to reproduce this problem on a fresh install of WordPress and BuddyPress, then please let us know so we can look into the problem.
August 2, 2018 at 8:17 pm #275536In reply to: Public Message Button Activation
Sean Nicholson
ParticipantHere is a video that shows what the issue is. Apologies for the third-grade video editing:
As shown in this video, the steps to recreate the issue are to:
1) Click on any community member
2) Click the “Public Message” button on their profile
3) On the activity feed page, place your cursor in the message box and type “Here I am typing”
4) Hover your mouse cursor over the “Post Update” button. Notice that it is still an arrow icon because you cannot click it.
5) Click the button. IT WILL NOT POST.
6) Click anywhere outside of the message box (e.g. white space off to the right).
7) Hover back over the “Post Update” button. Notice that it is STILL an arrow icon because you cannot click it.
8) Click the button. IT WILL NOT POST.
9) Click back in the message field.
10) Hover back over the “Post Update” button. The cursor changes to a hand icon because the button has now been activated.
11) Click the button. IT FINALLY POSTS.So, the user experience is that they type their message and then have to click somewhere outside of the message box, then click back inside the message box before they can send their message. Not a good user experience. It did this both on the Klein theme that I am using and the standard WordPress 2016 theme. Exact same experience.
Let me know if there are additional questions that I can clarify.
Thanks for any help demystifying why this is happening.
–Sean
August 2, 2018 at 5:22 pm #275535In reply to: Filter activity comment content prior to display?
r-a-y
KeymasterMaybe just “don’t use oembed except for Youtube” type of hacking?
BuddyPress just uses whatever oEmbed providers that WordPress uses.
You can disable oEmbed providers in WordPress with code:
https://codex.wordpress.org/Function_Reference/wp_oembed_remove_providerHope that helps somewhat. The rest is up to you.
August 1, 2018 at 12:40 am #275511In reply to: Public Message Button Activation
r-a-y
KeymasterFor me, it displays the hand icon and I’m able to submit the form after pressing on it. I’m testing with a WordPress default theme.
Try switching your theme temporarily to see if you can duplicate your problem.
July 31, 2018 at 9:54 pm #275507In reply to: Public Message Button Activation
r-a-y
KeymasterSounds like you’re using a plugin because when you hit the “Public Message” button, it should take you to the Site-wide Activity page with the @-username pre-populated. The submit button is also named “Post Update” and not “Send”.
Could also be something that your theme implemented. If so, try changing your theme to a WordPress default theme to see if the behavior is how I described.
July 31, 2018 at 9:25 pm #275506In reply to: Remove Account issue
r-a-y
KeymasterBuddyPress doesn’t handle user deletion. We use the WordPress user API to remove the account.
WordPress is in charge of removing data and they currently do not remove data from the
wp_signupstable when a user is deleted. Here’s a somewhat, related ticket:
https://core.trac.wordpress.org/ticket/43232July 30, 2018 at 9:55 pm #275495shanebp
ModeratorHow are you getting item_id ?
You probably already have the author ID in the same object or array that is providing the item_id, especially if you’re in a loop.You can always write a direct sql query: https://codex.wordpress.org/Class_Reference/wpdb
-
AuthorSearch Results