Search Results for 'buddypress'
-
AuthorSearch Results
-
July 22, 2014 at 3:57 pm #185422
godavid33
Participantfound the problem. At somepoint I remove the containing <div id=”buddypress”> element. When I added it back everything started functioning normally.
July 22, 2014 at 3:22 pm #185418David Cavins
KeymasterI solved this by adding the following filter. It removes “group-button” from the button wrapper (only on request membership buttons) so that buddypress.js will ignore the click.
add_filter( 'bp_get_group_join_button','request_membership_redirect' ); /** * Change group "Request membership" button behavior-- always redirect to request membership pane, no AJAX requests. * */ public function request_membership_redirect( $button ) { // To prevent buddypress.js from acting on the request membership button click, we'll need to remove the class .group-button from the button wrapper. See buddypress.js line 1252. if ( $button[ 'id' ] == 'request_membership' ) $button[ 'wrapper_class' ] = str_replace( 'group-button', '', $button[ 'wrapper_class' ] ); return $button; }July 22, 2014 at 12:59 pm #185413In reply to: "Read more" not working on group activities
Doremdou
ParticipantHi @danbp thank you for your answer ๐
Should I open a ticket and describe the problem with my specific theme?
Won’t they tell me to ask the theme developper for help as this is a buddypress website?
I see it has something to do with theme and buddypress conflict/compatibility somewhat, but I am not sure I will be clear enough to explain the problem
Sorry I don’t really understand all of this ^^Well I thought of another fix for my problem, is this possible to disable the “load more” button and activate pagination for activities?
I saw something like that in (old?) code the other day:
” <?php /* Show pagination if JS is not enabled, since the “Load More” link will do nothing */ ?> ”is this still used and how can I de/activate it? ๐
Thank you very muchJuly 22, 2014 at 11:56 am #185412danbp
ParticipantHi @jaybee08,
try this:
function my_custom_button() { // your button here echo ' <br/><div class="mcb"><a href="#" title="">blabla</a><div> '; } add_filter( 'bp_before_member_header_meta', 'my_custom_button' );Add the function to your child theme’s functions.php or to bp-custom.php
July 22, 2014 at 9:24 am #185406laxmanvel
ParticipantHi Mercime,
Thanks alot for your great thoughts..
once again thanks. but i already used RT media plugin for media and gallary but that is want it for pro version.
I’m newbie in wordpress development so how will i customize it.
media gallary only shows on the admin top bar but i want audio,video and photo upload and view on page.!
Please help me.!
Love you Buddypress Support.! ๐
Buddypress is great ever.
Regards,
LaxmanvelJuly 21, 2014 at 11:55 pm #185387In reply to: [Resolved] Create Group goes to a blank page
@mercime
ParticipantDo not cache BP pages. https://buddypress.org/support/topic/the-best-cacheing-solution-for-bp/
July 21, 2014 at 11:15 pm #185385In reply to: Buddpress courseware
@mercime
Participant@suyashgulati Do also post at the BuddyPress Courseware support forums https://wordpress.org/support/plugin/buddypress-courseware
July 21, 2014 at 10:37 pm #185384In reply to: A urgency when a user rigister
@mercime
ParticipantJuly 21, 2014 at 10:27 pm #185383In reply to: Duplicate Activity.
@mercime
Participant@noyzen do also post in the BuddyPress Activity Privacy support forums https://wordpress.org/support/plugin/buddypress-activity-privacy
July 21, 2014 at 8:36 pm #185379In reply to: [Resolved] How to reduce database query?
@mercime
ParticipantJuly 21, 2014 at 8:16 pm #185376In reply to: [Resolved] Need help for setting up Buddypress Site
@mercime
ParticipantI have wordpress installed in its own directory with .htaccess- and index.php copied in the root
@pazens BuddyPress does not work on installations where you give WordPress its own directory. https://codex.buddypress.org/getting-started/before-installing/before-installing/July 21, 2014 at 7:33 pm #185374@mercime
Participant@laxmanvel you’d need a media/gallery plugin. free -> https://wordpress.org/support/plugin/buddypress-media
–
–July 21, 2014 at 7:23 pm #185372In reply to: members pages not showing
@mercime
Participant@rukiax make sure that the Pages are assigned in admin menu Settings > BuddyPress > Pages because it doesn’t seem like it https://codex.buddypress.org/getting-started/configure-components/
July 21, 2014 at 7:21 pm #185371In reply to: i want a simple pic as Default avatar.
@mercime
Participant@noyzen I noticed that all avatars I see in your site are uploaded by the users. Mystery man avatar comes from gravatar.com. So at this point, I can only surmise that gravatar.com is either blocked by firewall or IP in you area. You can instead create your own default avatar for those who do not upload their own -> https://codex.buddypress.org/getting-started/guides/customizing-buddypress-avatars/#how-to-change-the-default-buddypress-avatar
July 21, 2014 at 5:00 pm #185367In reply to: [Resolved] Pages Hang and Timeout But Not All
@mercime
Participant@meshmarketer Do not cache BP pages. Check out caching solutions https://buddypress.org/support/topic/the-best-cacheing-solution-for-bp/
July 21, 2014 at 4:46 pm #185364In reply to: i want a simple pic as Default avatar.
@mercime
Participant>> i get a broken image when i select โmystery manโ for people who donโt have avatars
@noyzen That happens to me when I work on dev site when offline. This is not a BuddyPress issue, but rather a WP issue. If you deactivate BP, do the mystery man avatars show up? Furthermore, has this happened just recently or has it been the case since you set up WordPress?July 21, 2014 at 3:53 pm #185361In reply to: listings.php
@mercime
Participant@infoknutsford-softwarecouk Welcome to BuddyPress ๐ I have not used that directory plugin, sorry. Please also post at the plugin’s support forum as well.
July 21, 2014 at 3:49 pm #185360In reply to: Error in Inbox/Outbox
July 21, 2014 at 3:48 pm #185359In reply to: [Resolved] Remove RSS Feeds
onesheep
ParticipantSo just to follow up on this. The site needs to be totally private, especially the discussions that happen using BuddyPress – nothing should be available outside of a login.
RSS is publicly exposed and therefore breaks this, all you need to do is know the simple url …/feed and you get access to everything, bot or human. That is quite a security flaw for private conversations.
So this plugin turns that off and gives anyone not logged in a 404 or any redirect you want.
July 21, 2014 at 2:01 pm #185354In reply to: [Resolved] Create Group goes to a blank page
meshmarketer
ParticipantI’m having the same issues. Not sure why BuddyPress would have such a problem with Varnish. What do they recommend instead?
July 21, 2014 at 1:19 pm #185352In reply to: "Read more" not working on group activities
danbp
Participanthi @doremdou,
BP is a few steps away from better js handling, wich can be the cause of your current trouble.
https://buddypress.trac.wordpress.org/ticket/5735Maybe open a ticket and describe the problem ? ๐
July 21, 2014 at 12:27 pm #185351In reply to: [Resolved] Enabling Forum
danbp
ParticipantJuly 21, 2014 at 12:24 pm #185350In reply to: [Resolved] Accept site Terms and Conditions
danbp
Participanthi @chakadizulu,
read here:
https://buddypress.org/support/topic/terms-of-use-plugin-for-buddy-press/
https://buddypress.org/support/topic/adding-terms-of-service-to-registration/
devs opinion: https://buddypress.trac.wordpress.org/ticket/4747or you can give this one a try ?
https://wordpress.org/plugins/auto-terms-of-service-and-privacy-policy/
July 21, 2014 at 11:56 am #185348In reply to: members pages not showing
danbp
Participanthi @rukiax
have you tried to activate another theme ? You’re actually using bp-default, and BP 2.x doesn’t use it by default.
You have probably missed a setting somewhere, because the profile link is blank:
http://daklub.tk/members/rukia/
When going to
http://daklub.tk/members/
wich normally shows the members directory, we go to the forum (accordingly your breadcrumb)
Home โบ Forums โบ MembersIn any case, you have to create a page called members, for internal purpose only. If this page doesn’t exist you can’t see memebers directory and profiles correctly.
I suggest you to deactivate BP & bbPress, than activate Twenty Fourteen, redo your BP settings and permalinks and finally reactivate bbPress and set it as site wide forum.
Forget bp-default, or if you absolutely want it, read here the chapter about legacybbP is now 2.5, but you can also read here:
https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/using-bbpress-2-2-with-buddypress/July 21, 2014 at 7:08 am #185342In reply to: listings.php
Pamela
ParticipantSorry my First time with BuddyPress. It is the directory plugin – directory/ui-front/buddypress/members/single/directory/listings.php plus a couple of listings in directory/ui-front/general
-
AuthorSearch Results