Search Results for 'buddypress'
-
AuthorSearch Results
-
November 30, 2013 at 12:02 am #174982
In reply to: No Activation email
@mercime
Participant@soccercoach12345 WP/BP versions? Where are you hosted? Have you checked if activation emails are sent and received if you deactivated BuddyPress?
November 29, 2013 at 11:45 pm #174980In reply to: Group mods bug in Beta 1.9
@mercime
Participant@macpresss I agree in the sense that any additional role for the Group Moderator should be configurable by Site/Group Admins.You can submit a ticket to enhance Mod role at https://buddypress.trac.wordpress.org/
November 29, 2013 at 10:05 pm #174976In reply to: Guys….. What is the point of including filters if…
Paul Wong-Gibbs
KeymasterI figured you were referring to the Activity table 🙂
Basically, we thought the way we do it now was a good solution several years ago. We were particularly concerned with how large the Activities DB table(s) might get, as we expect them (and probably still do) to be the tables with the largest amount of stored data as every other component adds stuff to the activity stream. If I remember correctly, the idea was that storing the entire string would be the quickest approach — and with the state of BuddyPress’ code base all those years ago, it was probably the right decision.
Several years later, the shortcomings are now fairly obvious — can’t filter it easily, if you change how the string is constructed – only new items have that new format, the old items keep their old format, can’t translate it very easily.
This is likely to be changed in a near-future release to a more dynamically constructed string of text, and the ticket @modemlooper linked to is a good place to keep an eye out if you’d like to help us build it.
November 29, 2013 at 9:58 pm #174975In reply to: cant translate timestamp
Paul Wong-Gibbs
KeymasterHi. Which theme are you using, what versions of WordPress and BuddyPress are you using, and where did you download the translation file from? Thanks.
November 29, 2013 at 11:05 am #174957In reply to: Activity Stream on Page
Henry
MemberHi @finchkelsey
Have you tried posting your requirements in the BP Jobs Forum? If you’re looking for a BP developer available for hire then that is a good place to start
November 29, 2013 at 2:02 am #174951In reply to: Warning message under groups>group one>Members
brucedongcai@gmail.com
ParticipantHello Hugo,
1) you are right, it is fine with working theme.
2) what is the meaning of this warning message? is there a Buddypress patch for this?happy thanksgiving!
November 29, 2013 at 12:12 am #174948In reply to: Activity Stream on Page
Henry
MemberYou can copy the activity loop into your homepage template
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?> <?php while ( bp_activities() ) : bp_the_activity(); ?> <?php locate_template( array( 'activity/entry.php' ), true, false ); ?> <?php endwhile; ?> <?php endif; ?>See https://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/ for more information on the activity loop.
November 28, 2013 at 9:47 pm #174946In reply to: WP installed in non-root directory
@mercime
Participant@bigtreesjoe check out information posted at https://codex.buddypress.org/getting-started/before-installing/before-installing/#buddypress-installations
November 28, 2013 at 5:21 pm #174944In reply to: Using BP_DEFAULT_COMPONENT to select a plugin tab
Hugo Ashmore
Participant@macpresss Thanks for the Codex contribution, I have however moved it for the moment to the user submitted guides under getting started as the components section is really descriptions of the standard default BP settings.
In reality we do have a page in progress here https://codex.buddypress.org/developer/filters-reference/ which is designed to list filters and defines in one place due to the large number of these.
November 28, 2013 at 4:24 pm #174939In reply to: [Resolved] Remove Activity tab from Groups
Shmoo
ParticipantYeah I was afraid of that too..
I think I’ve seen some Filter a few days ago to remove a menu-tab. This way you can remove lets say the activity link from popping up on the navigation menu’s.
Try Google at this: BuddyPress + remove + item + PHP_code_that_prints_the_menu()
November 28, 2013 at 4:19 pm #174937In reply to: Using BP_DEFAULT_COMPONENT to select a plugin tab
Shmoo
ParticipantHahaha.. I was looking for the same thing yesterday so I made a Codex-page for this question.
You have to add that code to the config.php file.
November 28, 2013 at 1:33 pm #174935In reply to: [Resolved] Remove Activity tab from Groups
iheartwine
ParticipantThanks Shmoo. My community is based mainly on WP Events manager for groups, BBPress and Buddypress links. I don’t need activity at all (but just like I said, BP Links uses it for comments, so I had to turn it on). So basically I want to get rid of it in both places – in groups and profiles.
When I will remove activity-loop there is still the link in navigation tabs :/
November 28, 2013 at 1:23 pm #174934In reply to: [Resolved] Remove Activity tab from Groups
Shmoo
ParticipantWhat are you gonna do with your Groups without Activity system it’s the ‘comments’ part of a group.
Just to make sure where do you want to delete the activity from showing up.
example.org/groups/test-group/ * here */
example.org/members/profile/ * here */?
You can always remove the activity-loop from the template structure.
When BuddyPress doesn’t past the activity-loop it will not show up on your site of course.November 28, 2013 at 11:00 am #174929In reply to: Warning message under groups>group one>Members
Hugo Ashmore
ParticipantAnd what results if you switch to a known working theme?
https://buddypress.org/support/topic/basic-troubleshooting-tips/This sounds like a theme issue due to reference to ‘CustomHeadersAndFooters::loop_start()’
November 28, 2013 at 10:20 am #174927kostasze
Participantalso, I reinstall buddypress as modemlooper mentioned. Thank you!
November 28, 2013 at 10:15 am #174924@mercime
ParticipantNothing happen after deleting some group codex in function.php.
@kostasze something’s getting lost in translation. Let’s start with: WP/BP versions? What theme are you using? Why are you removing the group codes from your theme’s functions.php file? Did you do as modemlooper mentioned above?Rename wp-content/plugins to plugins-off and then try to access your admin.
This will disable all plugins and let you back into site. Once back into site, rename folder back to plugins. If you deleted anything from the BuddyPress folder, go to plugins page in admin and delete and reinstall BuddyPress.
Never remove or delete anything out of the BuddyPress plugin folder.November 28, 2013 at 9:53 am #174923kostasze
ParticipantI achieved to get access in dashboard but the site is still blank. Should I reinstall Buddypress plugin? Will I lose smothing with this from my data?
November 28, 2013 at 4:09 am #174915kostasze
ParticipantFirst, as I remember I unchecked Groups from the dashboard. Then, I got the blanc page in my site. After this, in my themes/huddle I deleted Groups folder. Then I read this one
https://buddypress.org/support/topic/resolved-help-my-whole-website-has-gone-blank/
and I was trying to delete anyhting about Groups in function.php.I tried to rename the plugins but it said rename failed. Is it possible to lose my members,my date and to have to rebuilt my site?November 28, 2013 at 3:46 am #174914In reply to: Guys….. What is the point of including filters if…
modemlooper
ModeratorThere is a bit of discussion on this in a trac ticket https://buddypress.trac.wordpress.org/ticket/3856
November 28, 2013 at 3:40 am #174913modemlooper
ModeratorI’m confused. Did you delete a folder out of the BuddyPress plugin or did you just uncheck groups from settings or both?
Rename wp-content/plugins to plugins-off and then try to access your admin.
This will disable all plugins and let you back into site. Once back into site, rename folder back to plugins. If you deleted anything from the BuddyPress folder, go to plugins page in admin and delete and reinstall BuddyPress.
Never remove or delete anything out of the BuddyPress plugin folder.
November 28, 2013 at 3:35 am #174912Yukon Cornelius
ParticipantHi, I found this thread on my travels and it worked a treat, so i thought i’d share. Just stop discouraging search engines under settings>reading, then post a new reply or topic n the forum and it will now show. Don’t ask me why.
November 28, 2013 at 3:34 am #174911Yukon Cornelius
ParticipantHi, I found this thread on my travels and it worked a treat, so i thought i’d share. Just stop discouraging search engines under settings>reading, then post a new reply or topic n the forum and it will now show. Don’t ask me why.
November 28, 2013 at 2:34 am #174910kostasze
ParticipantI turned off Groups from Buddypress settings in Dashboard and then nothing, blank page, I have members and data in the site please help me!
November 28, 2013 at 2:00 am #174908In reply to: Block user (free alternative?)
modemlooper
Moderatoryou should put any code that is not theme related into bp-custom.php https://codex.buddypress.org/plugindev/bp-custom-php/
It was basically line 106-141 but it won’t work if you cut and paste. You will need php knowledge to make it work.
That function will just block a message from getting sent for non friends. You would need to edit it for only certain users.
It would make a great plugin to allow users to block specific users from getting messaged.
November 27, 2013 at 6:00 pm #174898In reply to: registration
@mercime
Participant@mayur-hotkar Create a new blank Page titled “Register” or “Join” or whatever you choose to name your registration page. Create another new blank page titled “Activate” or “Confirm”, etc. Then go to Settings > BuddyPress > Pages and assign the new pages you created to respective Registration element.
-
AuthorSearch Results