Search Results for 'wordpress'
-
AuthorSearch Results
-
September 27, 2017 at 3:35 pm #268240
In reply to: URLs in messages being truncated
phucitol
ParticipantUpdate: The meta_value saved in wp_bp_messages_meta for meta_key _oembed-***** has the wrong URL saved in there so the problem is occurring before the data is saved. The fact that this same problem happened on my site as well as in this forum is interesting and leads me to believe the problem is somewhere in wordpress or buddypress core files.
September 26, 2017 at 9:29 pm #268230In reply to: Cannot upload profile picture
ftg17
Participant@mastershas Profile setting are set to allow individuals to upload profile pic, but still not working. Please click the link below. I use buddypress version 2.9.1
https://friendsthroughgrief.com/members/admin/profile/I change the theme and still is not working. I have added a code to take off the WP dashboard completely for all users except admin. I have seen screenshots of people having the ability with buddypress to upload a photo directly from their profile? My user profiles do not give me that option?
I have downloaded the following plugins in hope that it will help, but nothing has.
Custom User Profile Photo Version 0.5.3 | By VincentListrani
rtMedia for WordPress, BuddyPress and bbPress Version 4.4.3 | By rtCamp |
Transcoder Version 1.1.2 | By rtCamp
September 26, 2017 at 10:49 am #268218In reply to: Cannot upload profile picture
Shashi Kumar
Participant@ftg17 Did you check the Profile Settings Option? If not Login to WordPress dashboard using admin account and navigate to Setting >> Buddypress >> Options >> Profile Settings . Mark tick on allow user to upload profile photo. If you did this kindly change to the WordPress default theme and check if now you can update your profile pic.
September 25, 2017 at 10:06 pm #268213In reply to: member advanced search not working?
shanebp
ModeratorSeptember 23, 2017 at 8:31 pm #268186Shashi Kumar
Participant@whiteeagle1985 The author links that are shown in the post comes from the the function which is defined in the wordpress theme. Every theme has a redefine function to print the author link. The solution can be creating a child theme and redefine the function according to your need. I am not sure which theme you are using.
September 23, 2017 at 3:43 am #268176livingflame
ParticipantI understand you now.
You can try this: Link
September 22, 2017 at 12:32 pm #268166livingflame
ParticipantFunctions.php
// Limit the Access To WordPress Dashboard. Only Admin add_action( 'init', 'blockusers_init' ); function blockusers_init() { if ( is_admin() && !current_user_can( 'administrator' ) && !( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { wp_redirect( home_url() ); exit; } }// Limit the Access To WordPress Dashboard. Only Admin and Editor add_action( 'init', 'blockusers_init' ); function blockusers_init() { if ( is_admin() && !current_user_can( 'administrator' ) && !current_user_can( 'editor' ) && !( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { wp_redirect( home_url() ); exit; } }// BP Redirect To Profile function redirect_to_profile( $redirect_to_calculated, $redirect_url_specified, $user ) { if ( ! $user || is_wp_error( $user ) ) { return $redirect_to_calculated; } //If the redirect is not specified, assume it to be dashboard if ( empty( $redirect_to_calculated ) ) { $redirect_to_calculated = admin_url(); } // if the user is not site admin, redirect to his/her profile if ( ! is_super_admin( $user->ID ) ) { return bp_core_get_user_domain( $user->ID ); } else { //if site admin or not logged in, do not do anything much return $redirect_to_calculated; } } add_filter( 'login_redirect', 'redirect_to_profile', 100, 3 );// Exclude Admins from Directories and BP Widgets add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_users' ); function buddydev_exclude_users( $args ) { //do not exclude in admin if( is_admin() && ! defined( 'DOING_AJAX' ) ) { return $args; } $excluded = isset( $args['exclude'] )? $args['exclude'] : array(); if( !is_array( $excluded ) ) { $excluded = explode(',', $excluded ); } $user_ids = array( 1 ); //user ids $excluded = array_merge( $excluded, $user_ids ); $args['exclude'] = $excluded; return $args; }September 22, 2017 at 12:32 am #268164In reply to: Members who register other members
Henry Wright
ModeratorYou can’t do this by default on the front end in BuddyPress. You can of course do this in the WordPress admin area as an administrator.
September 16, 2017 at 6:48 pm #268087In reply to: How to Edit Register Page?
xmginc
ParticipantNote some steps could be missing here but hope this helps with the general direction 🙂
1. Look for “Users” in left sidebar of WordPress wp-admin area
2. Click “Profile Fields” and there should be a box which you might have named “Terms of Use” – NOTE: if you changed the “Name (Primary) (Required)” to your terms of use field, you should change this back as it syncs with the person’s name
3. Click the blue button “Add New Field” and name it “By registering to ThoseCrazyVegans.net, you agree to the <a href="/terms-of-use/">Terms of Use</a>” (the title accepts HTML at least for now)
4. Then, choose “Checkboxes” for the “Type” below it and type “Yes, I agree to the terms of use” and don’t check Default Value
5. You can also choose “requirement” as required
6. Choose “enforce field visibility”
7. Then click updateI use a different method for registering but hope this helps.
(Sorry having difficulties posting to the forum. Apologies for duplicate replies… Wish there was a way to delete)
September 16, 2017 at 9:57 am #268080In reply to: Include @ in username
axelmire
ParticipantI should also add that wordpress is configured for multisite.
September 15, 2017 at 6:00 pm #268075In reply to: Multisite issue with profile syncing
xmginc
ParticipantUPDATE: found possible solution (?) by going into profile fields section in both dashboards and clicking “edit” and “update” for the required name section. This then appears to have reset things. Now the name updates in both Extended Profile tab and the WordPress default Profile tab when making an edit in the member profile page.​
FYI: I have found several times now that there are strange quirks but I’m sure it is 99% user error (mine) but not everything is straightforward such as this above. To find this method took quite some time trying every standard option and the last was clicking every option over again…
September 15, 2017 at 6:47 am #268061Topic: Hide sub-groups from main page
in forum How-to & Troubleshootinglittleplum
ParticipantHi! I have a website with buddypress activated on it, and have just started setting up the forum.
I’d like to know how to hide the sub groups from showing on the main forum page, so that they are only visable once someone goes into each forum (state based mostly).I’m a VERY new wordpress user, so be gentle haha!
Thanks for any help with this,
Kathy xSeptember 14, 2017 at 6:58 am #268038In reply to: Buddypress Redirects
xmginc
ParticipantIf you simply looking to redirect people from 1 url to another, perhaps you could try the Redirection plugin?
September 13, 2017 at 11:20 pm #268035In reply to: Multiblog/Multisite avatar missing
xmginc
ParticipantUpdate: I have tried as many methods found in this Support Forum including bp-custom.php, functions.php, different wp-config.php options.
The one that worked for us is via a wp-config.php modification with code from @boonebgorges here: buddypress.trac.wordpress.org/ticket/4252
// This assumes that the blog in question is #1. If it's not, the path will // have blogs.dir in it define( 'BP_AVATAR_UPLOAD_PATH', '/var/www/html/example/wp-content/uploads' ); // Again, assuming you're coming from #1. To pull from a different blog, // it'll be example.com/secondaryblog/files or something like that define( 'BP_AVATAR_URL', 'http://example.com/wp-content/uploads' );Also wanted to share that if we add bp-custom.php and add various fixes suggested by others it results in a fatal error with a call to undefined bp_core… perhaps there is a different issue causing other fixes to not work for us… Open to try other suggestions but so far so good with fix above.
September 12, 2017 at 5:54 pm #268007In reply to: User account setup with BuddyPress
@mercime
Participant@mah184 I do not know how the “wordpress” stuff was supposed to be all gone” as BuddyPress is a plugin for WordPress. If by “Business Plan” you mean WordPress.com’s Business Plan, then please avail of the free support aka ‘real-time concierge support’ provided along with your plan. Aside from which, WordPress.com hosting is an entirely different scenario from a self-hosted solution which we usually help out in these forums, so the best support you’ll get is from WordPress.com. Good luck.
September 12, 2017 at 12:19 pm #268000In reply to: where do i get plugins for buddypress
Henry Wright
ModeratorHi @sarahshaik
Welcome to BuddyPress! You can get BuddyPress plugins from the WordPress repository: https://wordpress.org/plugins/
Take a look here for everything tagged BuddyPress: https://wordpress.org/plugins/tags/buddypress/
September 11, 2017 at 2:49 pm #267993In reply to: Login button in homepage
metalhead
ParticipantThis plugin puts a band aid on that issue.
September 7, 2017 at 8:32 pm #267943In reply to: Non-numeric value and header errors
r-a-y
KeymasterCan you ensure that line 207 in
bp-blogs/bp-blogs-functions.phpmatches the following?
https://buddypress.trac.wordpress.org/browser/tags/2.9.1/src/bp-blogs/bp-blogs-functions.php#L207If it doesn’t, can you let me know what line 207 is on your version of BuddyPress?
September 7, 2017 at 7:08 am #267922In reply to: Http 500 internal server error after incorrect login
lagristinab
ParticipantSo the problem is not about Buddypress but about WordPress?
September 6, 2017 at 7:22 pm #267910TxGirl
ParticipantThat is the same visibility options that already come with BuddyPress. I need to be able to add the option to choose that the profile is viewable by editors or other member group that comes with wordpress. I don’t want to hide them from being editable by the user, I want to hide them from being seen by other members on when they view another members profile but want them to be seen by more than just admin’s (i.e.) I also need to allow editor’s to be able to see them when viewing a member’s profile.
September 6, 2017 at 7:07 pm #267909In reply to: registration page styling
r-a-y
KeymasterThere is no BuddyPress “business”.
BuddyPress is what you make of it. Same as WordPress. WordPress provides you with a default theme and basic options, same with BuddyPress.
September 6, 2017 at 6:04 pm #267904In reply to: Avatar across multisite
deadlinkd
ParticipantFinally found a solution.
1) add define( ‘BP_ENABLE_MULTIBLOG’, true ) in wp-content/config.php
2) network activate buddypress
3) install rmiweb-multisite-avatar. It is a custom plugin for rmi.one website not available on wordpress repository. Can’t remember from where i grabbed it but i’ve uploaded it on my uptobox account => http://uptobox.com/543ii9u4ozoh
4) At first it wasn’t working for me on my subsite because the theme (skywarriorthemes.com/arcane/) had an issue with displaying avatar. But i’ve tried it with other 3rd party themes and wordpress default twenty seventeen and it works like a charm. So make sure that your theme is not creating some conflict too like mine did.
5) If you want to completely disable gravatar: https://wordpress.org/plugins/disable-user-gravatar/
6) Profit.Hope that helps.
September 6, 2017 at 1:46 pm #267900In reply to: registration page styling
zo1234
ParticipantI use the #1 selling wordpress theme Newspaper by tagdiv, and it’s mainly the User Profile & Registration page that can use some tweaking. Also I wish there was a way or easy way to add more user fields to the Member Directory – like a responsive and sortable table format.
I appreciate the work that is put in to Buddy Press, the versatility of it, and that it’s a free plugin, but I think it is being short-changed by not having a premium version that can make it look ‘prettier’. Not sure who’s in charge of the business operations, but should consider a premium add-on for UI/UX. People really would pay for it. Look at Ultimate Member. Buddy Press has a leg-up on them because you have more scale-ability with all the 3rd party add-ons, better performance, and larger user base.
I have had to paid a php guy to customize it, but I need more customizations. This is the only plugin stopping my site from blowing up. Do any of you BPers do custom work? I’ll pay for any custom work to get the layout moved around on User Profile (https://ibb.co/gNat1v) + sortable table Member Directory.
I’d go with Ultimate Member for looks alone, but it slows the crap out of my site and it doesn’t have some of the BP add-ons I want. If Buddy Press looked like UM or BuddyBoss, but kept the drop down menu user section (like Twitter), I’d be your first paying customer.
September 6, 2017 at 7:52 am #267896In reply to: Buddypress Messes Up My RSS Feed
sagraphics
ParticipantWe use RSS script merge tags in Mailchimp to pull our feed through from our wordpress site each week and automatically send out a newsletter to our subscribers:
https://templates.mailchimp.com/getting-started/merge-tags/rss-merge-tags/
This was working perfectly with a title, image and summary for each post, but when we enabled Buddypress with bbPress, each item on the newsletter would show the full text of the post rather than a summary. Once Buddypress was deactivated, the Mailchimp newsletter was given just the summary again for each post and worked perfectly.
September 5, 2017 at 11:17 pm #267893In reply to: Buddypress Messes Up My RSS Feed
r-a-y
KeymasterSince you provided very little information, I can only interpret your post from what you have written.
What is the “RSS feed to the newsletter”? Is this just a RSS feed to the main WordPress blog post RSS feed?
I have both BuddyPress and bbPress installed and these plugins do not affect the main blog post RSS feed (example.com/feed/).
-
AuthorSearch Results