Search Results for 'buddypress'
-
AuthorSearch Results
-
September 16, 2017 at 1:52 pm #268081
In reply to: Users based on location
stunomatic
ParticipantThanks @shanebp for response. OK I played around and here is my code. Its working fine but with one issue i.e
If there is no value it echo’s all the members.
<?php $contrytoggle = get_field( "country_toggle" ); $contrypri = get_field( "select_country" ); ?> <?php echo $contrytoggle; ?> <?php if ( bp_has_members( my_custom_ids( $contrytoggle, $contrypri ) ) ) : ?> <ul> <?php while ( bp_members() ) : bp_the_member(); ?> <li> <div class="item-avatar"> <a href="<?php bp_member_permalink(); ?>"><?php bp_member_avatar(); ?></a> </div> <div class="item"> <div class="item-title"> <a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a> </div> </li> <?php endwhile; ?> </ul> <?php else: ?> <div id="message" class="info"> <p><?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p> </div> <?php endif; ?>September 15, 2017 at 2:31 pm #268073In reply to: Users based on location
shanebp
ModeratorYou’ll need to write some custom code.
Add a buddypress members loop on the template you use to show your posts.
Filter the members loop by their address.
If you write some code and run into issues, you may get some feedback on these forums.
Or you could post to the Jobs Board and hire a developer.
September 15, 2017 at 2:24 pm #268071In reply to: registration page styling
Aslan Guseinov
ParticipantHey, do a shortcode for registration form!
We will insert it in a full width page, and this would be it!
As I understand the page hierarchy, it can be all pages with sidebar or without.
Where is the third option?Will this help?
.registration #buddypress { width: 100% !important; } .page-id-64 div#right-sidebar { display: none; }September 15, 2017 at 10:47 am #268067In reply to: Avatar across multisite
Coach Afrane
ParticipantI found a simple solution.
After activating multisite I installed and network activated BuddyPress.
I also added this line to wp-config.php: define ( ‘BP_ROOT_BLOG’, 2 )It works perfect, just the way i wanted it.
Thanks, you all.
September 15, 2017 at 9:24 am #268063In reply to: Force Profile Picture
Brajesh Singh
ParticipantHi,
Do you have the BuddyPress Force Profile Photo plugin active? If yes, Please disable it.If no, you will need to consult your theme developer, as they might have added it.
Hope that helps.
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 15, 2017 at 3:49 am #268059In reply to: BuddyPress accounts connected between sites
Bradley Stevens
Participant@xmginc yep, so close. I just want users to get notifications and messages, and the same avatars and profile pictures network wide. That would expand the ability of buddypress tenfold.
Thanks for the info on WPMU. I hadn’t really heard of them, but this has my interest
September 14, 2017 at 11:49 pm #268058In reply to: BuddyPress accounts connected between sites
xmginc
ParticipantSo close isn’t it? This and scheduling could be an answer to a multi BuddyPress network on separate servers… WPMU offers 30 day free membership to check it out. They require a credit card to signup, but well worth it for all their other tools.
September 14, 2017 at 10:40 pm #268055In reply to: How to Edit Register Page?
xmginc
ParticipantI believe you could add the terms and a checkbox as a requirement as part of the BuddyPress Extended Profile. Instead of the text box you added for “terms of use”, you can remove that and add a single checkbox with the words “by registering…”. Hope this helps!
September 14, 2017 at 8:53 pm #268053In reply to: Multisite issue
xmginc
Participant@rjt1985, wondering if you are still having any issues or if you have found the specific reason it worked itself out.
We were experiencing a similar issue but could not find the reason. Our solution was to use GravityForms (developer version) instead by creating a custom registration form which also works directly with BuddyPress extended profiles.
September 14, 2017 at 4:33 pm #268047In reply to: Service Provider/Consumer Website?
shanebp
ModeratorWP, BuddyPress and WooCommerce could be used to create your site.
And they are all free, so set up a dev site and start experimenting.
You’ll need to write some custom code to handle the email restrictions.September 14, 2017 at 8:32 am #268039In reply to: Multiblog/Multisite avatar missing
bulld_digital
ParticipantI had the same issue, but there’s an easy fix. please see: https://buddypress.org/support/topic/avatar-across-multisite/
September 14, 2017 at 2:27 am #268036In reply to: Blank BuddyPress Pages
Fahmi Barnes
ParticipantFinally, someone reply!.
Peepso is too long has gone from my site before I decided use BuddyPress so it leave the shortcode on the page. And yes, I’m using Ultimate Member too but I just recently installed that plugin after BuddyPress has gone crazy over a month. And, “The best approach would be to wipe your install and start over from scratch.” you mean, starting my site from beginning? or disable Ultimate Member and reinstall BuddyPress?.
Thank youSeptember 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 13, 2017 at 11:13 pm #268034In reply to: Multiblog/Multisite avatar missing
xmginc
Participant(apologies for the double post – pls delete if possible thx)
September 13, 2017 at 7:03 pm #268022In reply to: BuddyPress accounts connected between sites
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 7:39 pm #267994In reply to: FIXED: Css styling problem after updating to 2.9.0
Aslan Guseinov
ParticipantAvatars in BuddyPress widgets are styled wrong, recently active members, members and who is online. You can see for yourself at https://glot.ee or in screenshots in first post. And yes i’m using child theme of DizzyMag from themeforest. I tried several installs fresh and old one with updates, all looks the same after updating to or just install 2.9.0 or 2.9.1.
September 11, 2017 at 12:58 pm #267992In reply to: FIXED: Css styling problem after updating to 2.9.0
metalhead
ParticipantWhich element(s) are styled wrong?
Are you using a Child Theme?
If not, you should create a child theme, apply changes to the css files in the child theme, and not typically have this problem ever again.
They said they changed the nchor tag in the new version. What kind of elements are displaying wrong?
September 11, 2017 at 12:06 pm #267991In reply to: CSS causing cover image to disappear.
awpt
ParticipantYes this answer solved me too. Thankyou!
September 11, 2017 at 9:14 am #267988In reply to: Buddypress paid membership
Peter Hardy-vanDoorn
ParticipantWell, you said that content needs to be fully public, so I guessed that full protection of BP’s content didn’t worry you.
Apart from that, the only thing really missing from the Woo bundle is account area integration, but there is another plugin that deals with that:
https://themekraft.com/products/woocommerce-buddypress-integration/
It’s meant more for the shop side of WooCommerce, but it seems to do the trick.
September 11, 2017 at 7:03 am #267984In reply to: FIXED: Css styling problem after updating to 2.9.0
Aslan Guseinov
ParticipantHi, thanks for the tip.
But what did you roll back?
I did roll back Buddypress via WP Rollback plugin, but that did not help.September 10, 2017 at 10:04 pm #267979In reply to: Default profile picture bug
FinlayDaG33k
ParticipantUPDATE: reinstalling Buddypress completely fixed it.
September 9, 2017 at 11:00 am #267974In reply to: Question about issue in my site
aladinDr
Participantit’s resolved after deleted buddypress and our themes … and reinstall theme , just our last developer he forget code !!!
-
AuthorSearch Results