Search Results for 'buddypress'
-
AuthorSearch Results
-
October 31, 2017 at 4:09 pm #268742
In reply to: How does BuddyPress connect to my site?
Peter Hardy-vanDoorn
ParticipantHi. I wonder if you’re getting a little confused as to what Super Socializer and BuddyPress actually do? Although they both allow people to have an account on your site, they’re not really the same thing.
Super Socializer allows you to cross-post your own blog posts onto Facebook, etc, and to then amalgamate any comments back to the original blog post. But the important thing to note is that it’s only really about your blog posts.
BuddyPress (with bbPress) allows you to have people create forum posts and send each other messages, completely independently of any blog posts you may make.
Of course, Super Socializer would also be of benefit to a BuddyPress install as it would allow users to set up and log in to a BuddyPress account using their Facebook login.
I’ve never used Super Socializer, btw.
Hope that helps
Peter
October 31, 2017 at 1:20 pm #268740shanebp
ModeratorCreate a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.phpAnd then remove this code from the overload:
<?php if ( bp_get_member_latest_update() ) : ?> <span class="update"> <?php bp_member_latest_update(); ?></span> <?php endif; ?>October 30, 2017 at 4:22 pm #268726In reply to: Memberships And Taking Payment
Peter Hardy-vanDoorn
ParticipantI can recommend the WooCommerce WooMembers bundle – allows you to limit access to the site and take monthly subscription payments: https://woocommerce.com/products/woomembers-bundle/
It mostly works with BuddyPress (in that you can limit access to most pages and bbPress forum posts) but they do have work to do to make it fully protect a BP install, but it is on their radar.
Hope that helps
October 30, 2017 at 3:47 pm #268725In reply to: Paid Membership Pro and Buuddypress – Registration
willallen83
ParticipantI struggled with this for weeks. It never worked out well for me.
I used the Register Helper add-on plugin to add custom fields to the PMPro registration. I tried the above mentioned fixes, but nothing I tried let the PMPro registration process communicate with the BuddyPress (basically, I wanted one registration page to fill out the BuddyPress profile AND the necissary PMPro info).
Whichever way I tried it, they remained seperate. Of course, the PMPro registration process did add the user to BuddyPress, but with an empty profile, regardless of the custom fields that I added.FINALLY, after MANY hours of working with this, I tried s2Member. This plugin is much more involved to configure, BUT it works perfectly AND integrates well with MailChimp. So now, I not only have integration with BuddyPress (specifically the profile, although the display is a bit off), but also with Mailchimp. And, this means that I can have different mail-lists or mail-list groups within Mailchimp! Perfect 🙂
Basically, what I am saying is that if you want a better integration, go with s2Member.
Note: I did not pay the $300 / year for paid membership pro support (too expensive for me), maybe they would have been able to help me resolve this issue. I did scour the forum and glean every bit of info I could to solve this without paying, but to no avail. BUT, with s2Member, it is free AND only $80 one time for the Pro version of the plugin.
Good luck!
And, if anyone sees this and has a solution, please add. As people (I assume because I was) are still looking for a solution.
October 28, 2017 at 10:40 pm #268708In reply to: Gallery from users images posted to a specific group
johnsimoneau
ParticipantHere is more specific details. Ignore the $200 if it requires more then 2 hrs of work…
Buddypress Custom Queries to Feed Justified Image Grid Plugin
October 27, 2017 at 3:04 pm #268697In reply to: Lost all bbpress roles
shanebp
ModeratorThese are the BuddyPress forums.
The bbPress forums are here.October 26, 2017 at 8:04 pm #268689In reply to: Buddypress .po file location
valuser
Participanthi,
try putting the po annd mo files into wp-content/languages/plugins/
please have a look at
October 26, 2017 at 2:25 pm #268687In reply to: Serious trouble as ADMIN
khappamj
Participantproblem found and it was in the “Analitycs” plugin so,
there is another analitycs plugin which works properly with Yoast SEO and Buddypress?October 26, 2017 at 6:47 am #268679In reply to: Memberships And Taking Payment
mattadin
ParticipantI ended up using Paid Membership Pro and BuddyPress. However, if you’re only semi-passionate about your idea, or don’t have much time to build your site, I would reconsider your attempt. A very basic site without much customization would be relatively simple, but to build anything that is appealing at the front end and provides a simple user experience is far from it. In addition to the two plugins above, I’ve had to add BP Redirect To Profile, Theme My Login, Disable User Login, Remove Dashboard Access, Restrict User Access, SiteOrigin CSS, SiteOrigin Widgets Bundle and WP Maintenance Mode just to name a few.
Then there is getting all plugins to operate happily with each other, which for me has included communicating with WP support to re-establish my sites VaultPress connection, believed to have been broken by PMPro, preventing the traditional BP/WP Login which would allow members to join without paying and much more.
I don’t want to deter you from trying, but if you’re still relatively new to WP and coding, you’ll need to be prepared to invest A LOT of hours.
October 25, 2017 at 8:07 pm #268672In reply to: Two different themes possible?
David Cavins
KeymasterBuddyPress uses a theme compatibility layer, meaning it uses its own templates that are designed to drop into any theme. You can overload all kinds of template parts for BuddyPress:
However, there are plugins (I’ve not tested) that you could maybe get to work if you have two themes in mind: https://wordpress.org/plugins/jonradio-multiple-themes/
Best,
-David
October 25, 2017 at 7:48 pm #268670In reply to: Profile Page as Member Dashboard
David Cavins
KeymasterThere’s no way to do that via shortcode as far as I know, but lots of ways to do it via theme. You could apply a page template to the “members” page to modify what is output. You could also overload the template at
/buddypress/members/single/home. Read more about the template hierarchy:October 25, 2017 at 7:40 pm #268669David Cavins
KeymasterThis is the codex article I was thinking of:
October 25, 2017 at 7:39 pm #268668In reply to: Change Profile URL to WP Default Author URL
David Cavins
KeymasterSure, you can add a filter on the
bp_get_member_permalinkhook and do whatever you wish. The BP member profile is much richer than the the authors page, though–if you’re not using the member profile fully, are you sure you need BuddyPress for your site?For the second question, use the shortcut link: https://mysite.org/members/me which will redirect users to their profile.
Best,
-David
October 25, 2017 at 7:34 pm #268667David Cavins
KeymasterYou can save extra things manually on the
bp_core_signup_userhook:
https://buddypress.trac.wordpress.org/browser/tags/2.9.1/src/bp-members/bp-members-functions.php#L1900But I imagine that the simpler answer would be to use Profile Fields. If you add profile fields to the base group, then they appear on the registration form and are saved at signup. https://codex.buddypress.org/administrator-guide/extended-profiles/
Best,
-David
October 25, 2017 at 1:49 pm #268661Max
ParticipantHi moefahmy,
Just registered my first WordPress.org account since over hundreds of sites I’ve built in the past, hehe. I’m facing exact the same issue as you have. I seriously thought that BuddyPress would support features like this. In the wp-admin > Groups > Single Group, there’s even an option that says: ‘Who can invite others to this group?’, WHY is this option available but not ‘Which usertype can post to this group? e.g. Administrators, Moderators, Subscribers etc.’.
Is there a plugin that anyone in this community is aware of which handles above feature? I really need a feature to assign posting permissions to users or userlevels…
October 25, 2017 at 8:30 am #268659In reply to: Wiki within Each Group
wlaurito
ParticipantHey! I am using the plugin: BuddyPress Docs. You can create Wikis and upload docs inside the groups.
https://wordpress.org/plugins/buddypress-docs/“Part wiki, part document editing, part shared dropbox, “
It is working, but I would be interested too if there is a better solution..
October 24, 2017 at 7:27 am #268638In reply to: How to create member sitemap.xml
xmginc
ParticipantAnd, for anyone interested, here are other Buddypress specific functions it has – very impressed btw:
1. control the Buddypress member profile page meta title such as %%bp_user_full_name%% | %%sitename%% or whatever you prefer
2. also allows you to edit the Buddypress member profile meta description as well
3. include Groups in sitemaps
4. includes Profiles in sitemaps (as noted in previous post)(Just wanted to share this in case you wanted to know in advance as this plugin is only available to paid WPMU Dev subscribers. This is in addition to all the other standard seo related features but listing Buddypress specific features above in case you wanted to know)
October 24, 2017 at 7:03 am #268637In reply to: How to create member sitemap.xml
xmginc
ParticipantFor anyone interested, switching to WMPU Dev’s Smartcrawl has allowed us to automatically add all members to the sitemap. It also allows you to exclude specific roles in case you have Admins you’d like to exclude from the sitemap. While Yoast has been our goto plugin, Smartcrawl appears to hold it’s own – especially when it comes to Buddypress. Here’s a link for more info.
However, if anyone knows how @mugwumpman was able to create the members-sitemap.xml and work with Yoast, would still be great to know – thx!
October 23, 2017 at 5:41 pm #268630In reply to: Make friend field visible only to account owner
David Cavins
KeymasterHi @paksunny-
#1 can be accomplished by adding this code to you
bp-custom.phpfile (or wherever you keep your customizations): https://gist.github.com/dcavins/c65f3856dd6ed5be37eef115ab09405a#2 Try this plugin: https://wordpress.org/plugins/buddypress-private-message-for-friends-only/
-David
October 22, 2017 at 3:41 pm #268611In reply to: Profile fields to appear in directory
shanebp
ModeratorPlease use the
codebutton when sharing code.This is the relevant file:
\buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.phpSome themes bundle their own version of BP files.
To find out if you’re in the correct file, try:
echo 'testing...<br>'; $test = bp_get_member_profile_data( 'field=la-empresa' ); var_dump( $test );If you don’t see ‘testing…’, you’re in the wrong file.
If you do, but don’t see the profile data, then there is an issue with that field or perhaps the value does not exist.October 21, 2017 at 11:41 pm #268603In reply to: Searching menu link file
shanebp
ModeratorDid you look in the documentation?
October 21, 2017 at 8:06 pm #268599Arize Nnonyelu
ParticipantNext time try hiring an expert or consult a more experienced developer in private to sort out some issues.
Without being told the people that started this Buddypress has tried a lot. I don’t think they need this sort of discouragement.
please nobody should regard this topic.
October 21, 2017 at 11:21 am #268598In reply to: the @userid is @[@@@@@@@] rusian language wp site
ekatsa
Participanthi everyone, I found solution for this problem by using default cover plugin “BuddyPress Cover”
If anyone has the problem this is a solutionOctober 19, 2017 at 8:14 pm #268579In reply to: No cover image option in buddypress settings
David Cavins
KeymasterLooking at the source code, both items make a call to the function
bp_is_active(). For profile cover images, the check is
if ( bp_is_active( 'xprofile', 'cover_image' ) ) {)For groups,
if ( bp_is_active( 'groups', 'cover_image' ) ) {}.In both cases, the default is true, so I’d guess that your theme or another plugin is filtering that value, using one of these filter hooks:
bp_is_profile_cover_image_active
bp_is_groups_cover_image_active
bp_is_activeYou can quickly check by using something standard like twentythirteen as your theme and deactivating all plugins other than BuddyPress.
October 18, 2017 at 6:13 pm #268561In reply to: Empty activity tab in user profile
kelvinnm
ParticipantHugo,
is tracking on on your site checked? Settings >> BuddyPress Settings >> Site Tracking make sure it is checked.
-
AuthorSearch Results