Search Results for 'buddypress'
-
AuthorSearch Results
-
September 24, 2014 at 6:14 pm #201007
In reply to: Font size increase in Groups description
danbp
Participantthis is the original CSS of the group description: (bp-templates/bp-legacy/buddypress/css/buddypress.css)
#buddypress div#item-header div#item-meta { font-size: 80%; color: #aaa; overflow: hidden; margin: 15px 0 5px 0; padding-bottom: 10px; }By default (for security reason), the group description field is filtered and doesn’t accept any html tags.
You have 2 solutions:
Only the site admin can create groups, and you can evtl. remove the filter.
Users are allowed to create groups and in this case, you let the filter active and you modify the CSS.Add to your child theme:
#buddypress div#item-header div#item-meta { font-size: 100% !important; /*or any other size*/ }Filter : see bp_groups_filter_kses function in bp-groups/bp-groups-filters.php
September 24, 2014 at 5:42 pm #201006In reply to: Users able to login without account activation
r-a-y
KeymasterSwitch your theme to a WP default theme like Twenty Twelve. Now, try duplicating your issue.
If you can duplicate your issue, then it’s a problem with your theme. Probably a rogue code snippet.
If you’re still experiencing problems, next, disable all other plugins except BuddyPress and try to duplicate your issue again.
Also, check your /wp-content/plugins/bp-custom.php file if you have one.
September 24, 2014 at 5:06 pm #201004In reply to: [Resolved] Translation for Spanish
r-a-y
Keymasterivanguinea – If you look at the Spanish translation on translate.wordpress.org, there are still some strings that haven’t been translated:
https://translate.wordpress.org/projects/buddypress/dev/es/default?filters[status]=untranslatedYou can help by translating these strings. If you decide to help and are not sure how to add your contributions, let us know and we’ll point you in the right direction.
September 24, 2014 at 4:07 pm #201000In reply to: Create a social matchup network
Henry Wright
ModeratorHi @manag99
This can definitely be implemented with BuddyPress but you’ll need to use plugins and or custom code because what you need to happen doesn’t happen out-of-the-box. Try searching the WordPress Plugin Directory for individual plugins and then try them out on a test install.
September 24, 2014 at 2:42 pm #200995In reply to: Bug. Duplicate Buddypress Profile Menu
wayne alex
ParticipantHi @mercime,
I have changed to the Twenty Fourteen Theme and deactivated all plugins except buddypress, with the twenty fourteen theme everything works fine and there is no duplicate Buddypress profile menus with all plugins activated, I am using the bp-social child theme from wpmudev, even when all plugins are deactivated except buddypress the issue is still there with this customized child theme. Also when i switch to the parent theme bp-social there is also no duplicate menu with all plugins activated.
Really need some help with this one!
Thanks,
Wayne,
September 24, 2014 at 2:09 pm #200993shanebp
ModeratorFrom what I recall, BP uses the bp_xprofile_data table to store the display name, field_id = 1, for each user.
There is a BP setting for syncing BP and WP profiles.
Some info on what that does:
https://buddypress.org/support/topic/please-help-me-understand-a-wordpressbp-feature/#post-97470Re profile edit handling code: Look at function save() in class BP_XProfile_ProfileData in bp-xprofile\bp-xprofile-classes.php
September 24, 2014 at 6:45 am #200797In reply to: Private Message Sent-to dropdown broken
danbp
ParticipantSeptember 24, 2014 at 4:08 am #200790In reply to: URL Activation in Member Profile
anstey
ParticipantFYI: Using latest version of Buddypress (2.1)
September 24, 2014 at 3:54 am #200788In reply to: Styling BuddyPress
shpitzyl
ParticipantIn your child theme directory, create a folder named “js”. Copy the buddypress.js into that folder and make all the changes inside that file.
If you are using buddypress 2.1 you will have to rename the file to buddypress.min.js (when buddypress 2.1.1 will be released you will probably have to rename it back to buddypress.js because it is 2.1 bug).
Hope it helps.
September 24, 2014 at 3:14 am #200787In reply to: Styling BuddyPress
jessicana
ParticipantI don’t think this is a theme related issue.
Today I added the BuddyPress Activity Privacy plugin and for some reason post update becomes better styled but I still have the same problem. I am willing to resolve it no matter what.
I have a question, how can I create a new buddypress.js file in a way similar to the functions.php file in a child theme. Can I do this (if yes. How?) or I have to make direct adjustments on that file and keep updating it with every release? I made direct adjustments on that file anyway and it didn’t solve the problem. Is there any other file related to the post update button?
Thanks
September 24, 2014 at 12:14 am #200785In reply to: Bug. Duplicate Buddypress Profile Menu
@mercime
Participant@wayne-alex We would not be able to access screenshots in your local host. It could either be a theme issue or could be a plugin conflict. To determine which is causing the duplication, change to the Twenty Fourteen theme and deactivate all plugins except BuddyPress and see if issue is resolved.
September 23, 2014 at 11:05 pm #200781In reply to: blog post mail notification error
islandcastaway
ParticipantGreetings, I too also am NOT using activity streams.
When publishing a post I get:
Fatal error: Call to undefined function bp_activity_update_meta() in /wp-content/plugins/buddypress/bp-blogs/bp-blogs-functions.php on line 537
The post still gets published.
I added a “custom function”:
function bp_activity_update_meta() {}
and it seams to fix the problem.
Cheerz
September 23, 2014 at 8:46 pm #200770r-a-y
KeymasterThanks for reporting, @qobalt.
Looking into it.
Update
This fix should work:
https://buddypress.trac.wordpress.org/attachment/ticket/5900/5900.01.patchSeptember 23, 2014 at 8:04 pm #200761In reply to: How to downgrade to 2.0.3?
r-a-y
Keymaster@scaffies – I split your post because you replied to a 2-year old thread.
Your issues are probably related to a change we made to optimize our javascript, which broke bp-default themes.
See my response to a similar thread:
https://buddypress.org/support/topic/bp-2-1-javascript-issues/If you want to downgrade, view this thread:
https://buddypress.org/support/topic/buddypress-2-0-3-download-needed-please-help/September 23, 2014 at 8:01 pm #200759In reply to: BP 2.1 – Javascript issues
r-a-y
Keymaster@androidforlife46 – I split your reply from the main 2.1 thread because your issues should have been placed in a new topic.
As for your issue, I’m guessing you are using a bp-default deriviative for your theme. There was an issue with javascript breaking on these themes.
For an interim fix, see:
https://buddypress.trac.wordpress.org/attachment/ticket/5889/5889.01.patchIf you’re using a bp-default theme, you should use this fix instead:
https://github.com/buddypress/BP-Default/commit/619efe8527847266c961fa43775eade42c7ff70dSeptember 23, 2014 at 7:53 pm #200757In reply to: Group creation settings blank
kesmomo
ParticipantThank you for the advice.
They disabled it and now buddypress groups worked perfectly!!!September 23, 2014 at 2:26 pm #200469In reply to: Create a group
jessicana
ParticipantI tried this solution but it limits the whole website to use only one menu. For me the menus are as follow:
Logged out users: Home//Resources//Blog//Sign in// Register (Horizontal Masthead)
Logged in users: Log out//and the complete buddypress menu (Vertical masthead) for buddypres.Buddypress menu is not included in the first menu and it has it’s own menu and the solution above doesn’t help create more than logged in and logged out menus.
Thanks!
September 23, 2014 at 1:20 pm #200461In reply to: [Resolved] @mentions suggestions panel doesn't open
Qobalt
Participant@amalsh i had the same problem, and solved it.
If you’re using bp-legacy in your child theme to modify the look of the activity post form,
you must have a file called post-form.php in /yourtheme/buddypress/activity/post-form.phpTo make the @mentions panel appear, simply add the
class="bp-suggestions"to the textarea at line 30September 23, 2014 at 7:41 am #200322In reply to: Can't create Buddypress child theme
Iryna_B
ParticipantHi @r-a-y,
Unfortunately I wasn’t successful in overwriting a template.
I wanted to make some changes using this tutorial http://premium.wpmudev.org/blog/how-to-create-a-custom-buddypress-members-directory/.
I created buddypress folder in my child theme folder, uploaded members folder with members-loop.php in it and uploaded css folder with buddypress.css. Made changes according to tutorial, then uploaded to server, but nothing changed:( What am I doing wrong?September 23, 2014 at 1:34 am #200316In reply to: Can't create Buddypress child theme
Iryna_B
ParticipantThank you for your answer!
So let me get this clear, in order to make changes to any of BuddyPress components, I have to create a buddypress folder in my child theme folder and then upload there any files that I want to change from “wp-content/plugins/buddypress/bp-templates/bp-legacy/”? Correct or no?September 22, 2014 at 11:31 pm #200310In reply to: [Resolved] Full Width Layout with "Reddle"-themen
1a-spielwiese
ParticipantIt’s resolved now; the child-theme was activated only for the network-level, but not for the root-blog-level. Activating it for the root-blog-level as well, it works:
https://buddypress.org/support/topic/buddypress-2-1-bp-language/page/2/#post-200308
Thank you, @shpitzyl (https://buddypress.org/support/topic/buddypress-2-1-bp-language/page/2/#post-200062).
September 22, 2014 at 10:24 pm #200116Stephen Edgar
ModeratorThe code I posted will stop all email activity notifications, though I haven’t tested it 😉
I’m not sure how BuddyPress does all of what it does for these notifications, kind of strange that it is still processing older entries and sending notifications though.
My advice (up until now) has always been don’t import your forums into bbPress with BuddyPress activated for this very reason, though if it starts processing a backlog of notifications for ‘old content’ once activated then this is not ideal behaviour either.
September 22, 2014 at 9:34 pm #199815In reply to: [Resolved] Full Width Layout with "Reddle"-themen
1a-spielwiese
ParticipantPlease, make an effort to read more carefully the answers you receive and avoid asking for the same thing in multiple topics ! 👿
@mercime: functions1st:
The file name is functions.php
@mercime wrote ‘functions‘!It was @shpitzyl (https://buddypress.org/support/topic/buddypress-2-1-bp-language/page/2/#post-199810), who wrote ‘function’ (without ‘s’).
‘Please, make an effort to read more carefully’ 😉
2nd:
I guess, different users follow different topics. 🙂
September 22, 2014 at 8:45 pm #199812In reply to: [Resolved] Full Width Layout with "Reddle"-themen
1a-spielwiese
ParticipantLet’s double-check that you have all the necessary materials:
– theme folder e.g.reddle-child
–style.cssfile inreddle-childtheme folder
–function<strong>s</strong>.phpfile inreddle-childtheme folder
–buddypress.phpfile inreddle-childtheme folderShould it be ‘function.php’ [singular] or ‘functions.php’ [plural]?
Cfr. https://buddypress.org/support/topic/buddypress-2-1-bp-language/page/2/#post-199810:
‘You need to put this code in function.php in your child theme.’
September 22, 2014 at 7:33 pm #199808In reply to: Creating a new profile -“field type”
1a-spielwiese
Participant@danbp / https://buddypress.org/support/topic/creating-a-new-profile-field-type/#post-198965:
‘Maybe nice, but it’s a commonly admited bad idea to let users style your site.’
As I alreday said elsewhere, I would prefer anyway to place the profiles within the subdomain-blogs and not in root-blog.
Then it would be not “style my site” (by my users), but “style their [my users] own site” (by themselves).
‘If you want italics for some field title’
No, what I imagined what not a field title, rather a book or movie title, e.g.:
Favorite movie [= Field title]
Mädchen in Uniform by Leontine Sagan [= user content within that field]
Favorite Book [= Field title]
Tractatus Logico-Philosophicus by Ludwig Wittgenstein [= user content within that field]
-
AuthorSearch Results