Search Results for 'theme'
-
AuthorSearch Results
-
February 11, 2016 at 5:31 pm #249770
In reply to: Can´t upload avatars and proflie covers
Leg3ndAry
ParticipantI changed the theme to Twenty Fifteen, but the bug is still there:
February 11, 2016 at 4:49 pm #249767In reply to: Can´t upload avatars and proflie covers
Mathieu Viet
Moderator@christopherwayne found the problem was relative to the theme he is using. @leg3ndary can you switch theme to see if that’s also the case for you.
If the theme is problematic for the new avatar UI, can you tell me if the content of the page is loaded using Ajax ?
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 3:51 pm #249759In reply to: Mystery privacy
shanebp
ModeratorBy default, all BP pages are public.
Your feedback page is not a BP page, afaik.
Therefore something in your theme, plugins or custom code is setting that WordPress page to private.
I doubt it is related to .htacessFebruary 11, 2016 at 3:48 pm #249758In reply to: Members disappear
shanebp
ModeratorBP does not delete users automatically.
Perhaps something in your theme, plugins or some custom code is changing things.
Do the members appear in …wp-admin > Users ?
If so, something is hiding them on the front end.
If not, something is deleting your users – and it is not BP.February 11, 2016 at 12:17 pm #249752In reply to: Can´t upload avatars and proflie covers
Mathieu Viet
ModeratorOh 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 7:47 am #249746In reply to: Can´t upload avatars and proflie covers
Mathieu Viet
ModeratorHi,
thanks everyone for reporting this issue. Could you give us details about your configs ?
WordPress version?
Theme activated?
Plugins dealing with media activated?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: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 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 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 8:42 pm #249689In reply to: How To Get Plaintext Multiline Field?
calvin
ParticipantAfter adding the fields you want using xprofile, go to your regi page. If you are using google chrome, right click on the multiline box and inspect
you should find out the the id of the visual/text box something similar this ‘wp-field_664-editor-tools’ (yours should be a bit different cos field number is different)
you should also find out the id of the mce panel using the same method
After that you should be able to add the custom css to your theme stylesheet.
Example (hiding the item using css):
#wp-field_664-editor-tools {display:none;}You may need to double check on the edit profile page. if it still appears there, you can use the same method to hide it.
Hope this helps.February 9, 2016 at 8:12 pm #249683In reply to: How To Get Plaintext Multiline Field?
calvin
ParticipantOne way to do it is to hide it using custom css in your child theme/theme stylesheet.
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' );February 9, 2016 at 2:54 pm #249654In reply to: How could all activities for a user be deleted?
Leo
ParticipantI have found out the reason, it is because of the BuddyPress Like plugin.
Maybe it is because of a custom theme or whatever, but when you like and unlike the same activity, all your activities are removed.Just to be aware if anyone also has this issue.
Regards,
LeoFebruary 9, 2016 at 12:26 am #249635In reply to: CORRECTED support query
dlongm01
ParticipantThanks modemlooper. I’m a bit of newbie and, now you point it out that’s a simple and good test.
Really helpful and guess what: the link box styling works fine!!
Back to the theme developers! (I’m using XTheme).
Cheers
February 8, 2016 at 9:28 pm #249625In reply to: CORRECTED support query
modemlooper
ModeratorTry testing by switching to a WP default theme such as twentySixteen. Just to rule out the theme.
February 8, 2016 at 5:22 pm #249608In reply to: main menu padding
calvin
ParticipantI presume your theme may have settings on individual pages. Check whether your theme settings at members page is correct.
February 8, 2016 at 5:16 pm #249607In reply to: main menu padding
calvin
ParticipantGave a brief look comparing the two pages you provided. This is my input:
The problem lies with your header for the members page
which data-menu-type is null
Your main page data-menu-type=’simply’you need to set it to data-menu-type=’simply’ then you should have no issue.
on how to do that I think you need to study how to set it back to simply on members page, should be more of a theme issue rather than buddypress i think.February 8, 2016 at 4:31 pm #249602In reply to: How to disable BuddyPress register page
Slava Abakumov
ModeratorTry put this code into bp-custom.php or function.php of your theme:
remove_filter( 'register_url', 'bp_get_signup_page' );UPD: this solution doesn’t work.
This doesn’t work either:
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );February 8, 2016 at 3:07 pm #249592regvg
ParticipantHave the same problem: new wp install 442 + buddypress 2.5.8, first on theme 2016, then theme quest, both all the links in profile but no “add friend” button,
in bp settings all functions are enabled,
sending private messages works fine,
group owner invite people works, toochanging theme didn’t help.
Has anyone pls a suggestion?February 8, 2016 at 7:00 am #249574In reply to: Notify me of follow-up replies via email
CJBatson
ParticipantThanks for the reply!! Does that plugin work? I tried it and it didn’t work well with my theme. I was hoping there was a way to set it up within BuddyPress, using the BP notifications.
I actually thought that the older plugin “subscribe to comments” worked better but is not maintained any more, and I also had some issues with my theme.
What does BP use to put the checkbox down below this message?
February 7, 2016 at 10:49 pm #249569In reply to: Just a little advice please
Henry Wright
ModeratorMy approach is usually start by installing WordPress and then install and activate the BuddyPress plugin. From there the next step is to choose a theme. Here you will have both free and paid options. You’ll find some good free themes here. Once you’re done with your website’s look and feel, begin to add functionality such as an ecommerce plugin like WooCommerce.
February 7, 2016 at 6:58 pm #249560In reply to: How to redirect after registration?
shanebp
ModeratorYou can put it in your theme or child-theme functions.php or in bp-custom.php.
-
AuthorSearch Results
