Search Results for 'buddypress'
-
AuthorSearch Results
-
February 27, 2014 at 11:38 pm #179022
In reply to: Only show one type of member on members page
BuddyBoss
Participant@ginnybee This plugin should do the trick: https://wordpress.org/plugins/buddypress-user-account-type-lite/
February 27, 2014 at 11:32 pm #179019In reply to: Disable the BP registration
BuddyBoss
ParticipantThis resource might help: http://premium.wpmudev.org/blog/force-user-registrations-to-your-own-buddypress-registration-page/
February 27, 2014 at 10:16 pm #179016In reply to: [Resolved] How to Display Group Creation Date?
shanebp
ModeratorIf you’re on a group page use:
bp_group_date_created()See buddypress\bp-groups\bp-groups-template.php for the particulars re that function.
February 27, 2014 at 10:08 pm #179015shanebp
ModeratorIn your theme, create an over-ride this file:
buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.phpRead this re over-riding files:
Add your shortcodes by using:
https://codex.wordpress.org/Function_Reference/do_shortcodeFebruary 27, 2014 at 5:02 pm #178992In reply to: Disable the BP registration
aces
ParticipantHave you tried wrapping it in a function and and using an action as suggested in
https://gist.github.com/r-a-y/5578432 ?Did you find this discussion about the issue:
February 27, 2014 at 4:54 pm #178989In reply to: [Resolved] Disabling BP Registration
aces
Participantsee other topic: https://buddypress.org/support/topic/disable-the-bp-registration/
February 27, 2014 at 12:07 pm #178976In reply to: [Resolved] BuddyPress Toolbar everywhere?
BBIndikator
ParticipantIt´s really this complicated ?
I mean the BuddyPress-Menu in the admin bar below the Avatar. It´s possible to show it everywhere ?
February 26, 2014 at 10:50 pm #178955In reply to: Message to all users
Rabatman
ParticipantIt doesn’t work with the newest version of buddypress and wordpress
February 26, 2014 at 6:40 pm #178945In reply to: No need for Members, Register, or Activate?
Henry Wright
Moderator…can I just create those pages to satisfy BuddyPress and then just make them private?
You can. In fact, if you’re sure you’ll never need them you can perform a 301 permanent redirect to ensure they never show. For example:
function redirect_pages() { if ( bp_is_register_page() || bp_is_activation_page() || bp_is_members_component() ) { wp_redirect( home_url(), 301 ); exit(); } } add_action( 'template_redirect', 'redirect_pages' );If for some reason you find you do in fact need the activation page, then remove
|| bp_is_activation_page()from the above code.February 26, 2014 at 5:36 pm #178941bermudacloud
Participant1 Year 5 Months later I see that this isn’t automatic with the BP default theme-
I don’t believe that I’m missing something.
Please can you guys at buddypress.org make this happen?
Thank you
Mark M.
February 26, 2014 at 2:45 pm #178926In reply to: Including avatar url into Postgres sql query
shanebp
Moderatorbp_loggedin_user_avatar will echo the url
bp_get_loggedin_user_avatar will return the url
See buddypress\bp-members\bp-members-template.php
February 26, 2014 at 3:16 am #178917Zane
ParticipantThere is a plugin for this but you have to download it directly from the site (it is not in the wordpress plugin directory. At least it wasn’t via my searches).
I can’t believe that activity notifications on comments is not a core functionality. I have submitted a feature request for this.
February 25, 2014 at 10:54 pm #178907In reply to: Add activity form and loop on my home page
CBWill
ParticipantAny luck with adding the buddypress-activity-plus icons with the buddypress activity shortcode plugin?
Thanks!
February 25, 2014 at 10:16 pm #178905In reply to: Buddypress Like Back End Errors
BuddyBoss
ParticipantSounds like javascript is not loading properly in your admin.
BuddyPress is pretty thoroughly tested and doesn’t normally cause that kind of error. So I would have to assume BuddyPress Like is the cause. Especially if you only get the error with that plugin activated. I would ask the developer of BuddyPress Like directly.
February 25, 2014 at 10:02 pm #178900In reply to: Stop BuddyPress SPAM
BuddyBoss
ParticipantI have used Bad Behavior. It’s ok.
I found the best solution so far has been BuddyPress Security Check.
https://wordpress.org/plugins/bp-security-check/It knocked out the majority of spam for me, and I’ve tested many spam plugins. You’ll still get some spammers, but hopefully less.
Most spammers leave links in forums. BuddyPress could really use a method to block new users who post links pending approval.
This plugin puts users in moderation on signup:
https://wordpress.org/plugins/bp-registration-options/But that still requires you to manually activate everyone…
February 25, 2014 at 9:58 pm #178898In reply to: Embedding in buddypress
BuddyBoss
ParticipantNot sure why that doesn’t work. You might want to download this plugin (which supposedly works with BuddyPress) and investigate their code to see how they’re doing it.
February 25, 2014 at 9:55 pm #178897In reply to: Conditional profile fields?
BuddyBoss
ParticipantThere actually is a plugin that accomplishes this (the initial request) to some extent. See:
https://wordpress.org/plugins/buddypress-user-account-type-lite/This would be a really great core feature. It would allow you to have member types with different profile data collected based on the first condition.
Some examples:
- teacher/student
- employer/applicant
- man/woman
- manager/employee
- etc.
February 25, 2014 at 9:50 pm #178896In reply to: Where is the group's directory page?
BuddyBoss
ParticipantRight, and to anyone else reading this, you also have to install bbPress first and make sure to adjust your forum settings to allow BuddyPress groups to have forums.
February 25, 2014 at 9:48 pm #178895In reply to: Automatically create BP user
BuddyBoss
ParticipantA membership plugin is generally used to determine user roles and capabilities (and to charge users for access). All WordPress users should be automatically also BuddyPress users. One hiccup is if they have not ever logged in they may not display on the front end in the main BuddyPress members directory. I believe it only shows users if they have some activity, such as a login or register. If they predate BuddyPress activation they MAY need to do something before they appear in the Members directory, but rest assured they do have BuddyPress profiles that they can access with their existing WordPress login credentials.
February 25, 2014 at 7:50 pm #178894In reply to: Automatically create BP user
Henry Wright
Moderator@joshwinkles With BuddyPress installed, try going to
yoursite.com/members/usernamewhilst logged in as a WP user. If you can edit your profile, change your avatar etc then it works!February 25, 2014 at 7:27 pm #178892In reply to: Where is the group's directory page?
coachcs
ParticipantOk, I found the solution by myself.
You have to check on the box at Settings / BuddyPress / Components / User Groups and save settings.
After that you will find a new button named Groups in the left hand admin section.
February 25, 2014 at 7:03 pm #178890In reply to: Embedding in buddypress
Splendorito
ParticipantCan anyone see if it is something wrong with this code or test it who has more knowledge about buddypress?.
<?php wp_embed_register_handler('verold’, 'http://studio.verold.com/projects/([\w]+)/embed', 'wp_embed_handler_verold'); function wp_embed_handler_verold($matches, $attr, $url, $rawattr) { $embed = sprintf( '<iframe frameborder="0" width="600" height="400" src="http://studio.verold.com/projects/%1$s/embed"></iframe>', esc_attr($matches[1])); return apply_filters('embed_verold', $embed, $matches, $attr, $url, $rawattr); } ?>Best Regards
February 25, 2014 at 4:46 pm #178884In reply to: Group Activity Stream > Site Activity Stream
Zane
ParticipantMy request is a duplicate of another from a few months ago and can be ignored. Please reply to this request (an associated ticket has been opened and linked to in this other thread).
https://buddypress.org/support/topic/posts-to-private-groups-dont-show-up-in-activity-stream/
Thanks!
February 25, 2014 at 4:45 pm #178883Zane
ParticipantI have submitted a ticket for this request
February 24, 2014 at 11:59 pm #178853In reply to: Embedding in buddypress
Splendorito
ParticipantHi, thank you for answering!
Yes, i have tested those. They worked in bbpress for both Verold and Sketchfab. But buddypress seems not to like it. Any suggestions…?
-
AuthorSearch Results