Search Results for 'buddypress'
-
AuthorSearch Results
-
February 11, 2016 at 4:42 pm #249765
In reply to: Make Group Home the Forum
Andrew Tibbetts
ParticipantFound the solution!
So, in/buddypress/bp-groups/bp-groups-loader.phpif found that it’s checking for a “front” template along with Activity Streams being disabled.
So, I just created an emptyfront.phpfile in my overloads/buddypress/groups/single/folder and, boom!February 11, 2016 at 3:58 pm #249760David Cavins
KeymasterI suspect that BP is trying to use the new cover-header-specific member and group header template files. You can disable them until you have a chance to retheme for cover headers by visiting wp-admin > Settings > BuddyPress > Settings and unchecking the check boxes for group and user cover images:
Allow registered members to upload cover images
Allow customizable cover images for groupsFebruary 11, 2016 at 12:17 pm #249752In reply to: Can´t upload avatars and proflie covers
Anonymous User
InactiveOh sorry, you can use the bp-custom.php file to put these filters: https://codex.buddypress.org/themes/bp-custom-php/
February 11, 2016 at 8:03 am #249747In reply to: Can´t upload avatars and proflie covers
Leg3ndAry
ParticipantWordpress Version: 4.3.1
Theme: Enfold
Plugins with media:Better bbPress Signature
EWWW Image Optimizer
W3 Total CacheThere are more plugins but they are only for bbpress.
I also installed the Buddypress Beta, but the bug is still there.And thank you already for your time 🙂
February 11, 2016 at 4:33 am #249742In reply to: Request: Add multi-line, plaintext field
johnywhy
Participantthe basic php filter code was share with me, needed for this. Now i’m investigating how to put a ‘Rich Text’ checkbox on the fields editor.
Feel free to help over here
https://wordpress.org/support/topic/how-to-add-textarea-field-to-buddypress-xprofile-custom-fields-typethx!
February 10, 2016 at 11:44 pm #249741In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participantthank you very much!
your solution is slightly different from this other one, which helps me learn.
https://wordpress.org/support/topic/how-to-add-textarea-field-to-buddypress-xprofile-custom-fields-type?replies=5#post-8009134thx!
February 10, 2016 at 11:13 pm #249739In reply to: Can´t upload avatars and proflie covers
christopherwayne
ParticipantAny solution to this problem? I have the same problem on my site buddypress, but only with profile pictures.
February 10, 2016 at 9:50 pm #249735In reply to: Make Group Home the Forum
shanebp
ModeratorYou could try creating a template overload of
buddypress\bp-templates\bp-legacy\buddypress\groups\single\home.phpAnd replace
<?php bp_get_options_nav(); ?>with whatever you want.
Before you do, grab the current nav output and then tweak it as you wish.February 10, 2016 at 9:35 pm #249734In reply to: Error Posting Comments
Manoj Chacko
Participant@mercime do you have any updates, should I put this under the buddypress bugs
February 10, 2016 at 8:50 pm #249733In reply to: Registration Site is blank and link problems
sure45
Participantyes , i install it through wordpress, when i see such problem ,so i download new buddypress 2.4.3 ,then unzip to check ,so i found these 2 folder are missing , then i post here for my problem , it works as an admin , when i checking it from other brower ,probelm is still same after upadting the permalink structure.
I am also using wocoomerce and S2 membership plugin ,but buddypress registaion and activation is missing
February 10, 2016 at 8:44 pm #249731In reply to: Registration Site is blank and link problems
yinjang
ParticipantWhy don’t you install it through WordPress?
Dashboard -> Plugins -> Install -> search for Buddypress and then install it.
Then go to Settings -> Buddypress -> Sites and you can change the site fore registration and activation, it can be, that the sites don’t exist, so you need to create them and link them to it.February 10, 2016 at 8:42 pm #249730In reply to: Registration Site is blank and link problems
sure45
ParticipantI have download new buddypress 2.4.3 and unzip ,it , i found registaion and activate folder and php files is missing , so nothing found in register and activate.
what to do,some one help me in instalation of buddypress
i am using theme JBSTFebruary 10, 2016 at 8:17 pm #249725In reply to: Displaying message
shanebp
ModeratorUse the filter in
function bp_has_message_threads
Found inbuddypress\bp-messages\bp-messages-template.phpapply_filters( 'bp_has_message_threads', $messages_template->has_threads(), $messages_template, $r );And remove the messages you don’t want to appear.
February 10, 2016 at 8:11 pm #249724In reply to: Filter members for a Team Page
shanebp
ModeratorYou’ll need an identifier re team members. A profile field could work.
You don’t say where the Team Page appears.
Unless you are explicitedly using the bp-default theme, always use files from
\buddypress\bp-templates\bp-legacy\buddypress\
in your child theme.If you have a conditional, you could edit
members-loop.php
Something like:<?php $is_team_page = true; // something that returns a boolean if ( $is_team_page ) $include = '&include=1,2,3,4'; else $include = ''; ?> <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . $include ) ) : ?>More info:
https://codex.buddypress.org/developer/loops-reference/the-members-loop/February 10, 2016 at 5:52 pm #249719In reply to: after Plugin activation all users marked as Spam
calvin
ParticipantNot too sure what is going on cos I have never experience this in all my buddypress installation even with the one installed after i had 1000 members.
But you may want to have a look at this previous topic, may help you https://buddypress.org/support/topic/not-a-spammer-but-marked-as-a-spammer/
February 10, 2016 at 4:16 pm #249713In reply to: Few Issues
David Cavins
KeymasterThat’s quite a laundry list.
1) https://premium.wpmudev.org/blog/limit-access-to-your-wordpress-dashboard/
2) http://wptavern.com/wordpress-tip-disable-the-toolbar-on-a-per-user-role-basis
3) Can’t help there.
4) Check out “Edit activity” plugin here: http://www.buddyboss.com/free-buddypress-plugins/February 10, 2016 at 3:24 am #249701In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participantnote, i also edited the .po file, and generated a new .mo from that
you can download my zip here:
https://www.dropbox.com/s/nx0ox3weg5khlpi/buddypress-xprofile-custom-fields-type-JW-TEXTAREA.zip?dl=0i noticed modernizr.js mentions ‘textarea’. Not sure what it’s doing, but i don’t think this is the cause:
‘ var c = a.html5 || {},
d = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,
e = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,
f, g = “_html5shiv”,
h = 0,
i = {},
j;
(function() {
try {
var a = b.createElement(“a”);
a.innerHTML = “<xyz></xyz>”, f = “hidden” in a, j = a.childNodes.length == 1 || function() {
b.createElement(“a”);
var a = b.createDocumentFragment();
return typeof a.cloneNode == “undefined” || typeof a.createDocumentFragment == “undefined” || typeof a.createElement == “undefined”
}()
} catch (c) {
f = !0, j = !0
}’February 10, 2016 at 2:38 am #249700In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participanthmm, ok, taking a different approach. i’m inspecting donmik’s files in ‘buddypress-xprofile-custom-fields-type’. Hope that’s ok, donmik!
i found ‘datepicker’ in:
bp-xprofile-custom-fields-type.php
classes\Bxcft_Field_Type_Datepicker.php
lang\buddypress-xprofile-custom-fields-type.pot
lang\en_US.mo
lang\en_US.po(ignoring the non-english files for the moment).
i simply duplicated all the ‘datepicker’ code-chunks in these files, and replaced ‘datepicker’ with ‘textarea’.
also duplicated the file ‘classes\Bxcft_Field_Type_Datepicker.php’, renamed it ‘Bxcft_Field_Type_Textarea.php’, and removed any date-specific code i found there.
and so on and so forth.
then i zipped it, uploaded to wordpress, activate, and added my new Textarea field to a form.
i actually got no errors, and actually got a text field on my registration form!
unfortunately, it’s only a one-line textbox, not a multiline textarea.
hrm. In inspector, the displayed field is:
<input type="string">so something in donmik’s code, or BP, or WP, is causing this to render as an <input> rather than <textarea>
….
February 9, 2016 at 11:54 pm #249697In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participanti found ‘multiselectbox’ in the following files:
buddypress.pot
buddypress.pot
buddypress.pot
buddypress.pot
bp-members\admin\css\admin-rtl.css
bp-members\admin\css\admin-rtl.min.css
bp-members\admin\css\admin.css
bp-members\admin\css\admin.min.css
bp-themes\bp-default\functions.php
bp-themes\bp-default\functions.php
bp-themes\bp-default\functions.php
bp-themes\bp-default\functions.php
bp-themes\bp-default\members\single\profile\edit.php
bp-themes\bp-default\registration\register.php
bp-xprofile\bp-xprofile-classes.php
bp-xprofile\bp-xprofile-functions.php
bp-xprofile\bp-xprofile-template.php
bp-xprofile\bp-xprofile-template.php
bp-xprofile\admin\js\admin.js
bp-xprofile\admin\js\admin.min.js
bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
bp-xprofile\classes\class-bp-xprofile-field-type.php
bp-xprofile\classes\class-bp-xprofile-field-type.php
bp-xprofile\classes\class-bp-xprofile-field-type.phpi welcome any suggestions on which of these i actually need to edit, at minimum, to create a new field-type.
thx!
February 9, 2016 at 10:29 pm #249696In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participantthx for that! css will be our quick-and-dirty fallback. But not a long-term solution.
it would be cool to develop a proper control. i’m guessing this is part of the recipe for displaying on the user-profile page:
bp_profile_field_data()
but would be awesome if someone can share the full recipe to develop a custom field.
i’m looking here for clues-
and also searching the buddypress install for ‘multiselectbox’– just to see how that one gets handled 🙂
thx!
February 9, 2016 at 9:42 pm #249694In reply to: Registration Page is Blank
calvin
ParticipantJust a suggestion.
Have you tried removing register.php (please save a copy before removing) file from your theme (so that it will revert back to the original register.php in buddypress? Or replace the file with the original register.php file from buddypress in your child theme?
(register.php can be found in your theme buddypress/members folder)
If it shows the regi form than you will need to recheck and recode the register.php file.
The best solution may still be to contact your theme developer to check on this issue since you can confirm it is a theme issue.
February 9, 2016 at 7:37 pm #249680In reply to: Forum help
jhvalet
ParticipantThanks for the reply! You couldn’t find any links because my post never gets posted. I have not repeatedly tried to post it – I waited 2 days between each post and there is only 1 link in my post and that is to my web site. I really need help with my issue and both my hosting company and wordpress.org’s support forum have told me to post on buddypress.
February 9, 2016 at 7:20 pm #249677In reply to: Few Issues
February 9, 2016 at 7:18 pm #249675In reply to: Few Issues
February 9, 2016 at 7:18 pm #249674shanebp
ModeratorTo prevent activity items being created for new registers and friendships, add this to your theme/functions.php or bp-custom.php
remove_action( 'bp_core_activated_user', 'bp_core_new_user_activity' ); remove_action( 'bp_register_activity_actions', 'friends_register_activity_actions' ); -
AuthorSearch Results