Search Results for 'theme'
-
AuthorSearch Results
-
February 11, 2016 at 3:48 pm #249758
In 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:44 pm #249681Topic: Buddypress issue
in forum How-to & Troubleshootingjhvalet
ParticipantHi! I am having an issue with Buddypress. I noticed there were some repair issues listed in the “Tools” section so, I clicked repair on a few of them and ended up getting kicked out of the admin panel. I can upload BP with no problems but, as soon as I activate it I get kicked out. I spent a few hours troubleshooting with my hosting company and they have determined it is a problem with Buddypress. I have tried several different versions of BP and have the same problem. I have also changed the theme and used Twenty Twelve, Twenty Thirteen, etc. and have the same problem. I can access the front end of my site just not the admin panel. You can see on the front end that BP is installed. I currently have no plugins active because we wanted to make sure it was indeed BP. I am running WP version 4.4.1 and X Theme. As I said before it doesn’t matter what theme or version of BP I use I still have the same problem. Any help is greatly appreciated. Thanks!
Jody
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.
February 6, 2016 at 12:21 pm #249533In reply to: “Walled Garden” mode
skunkgrunt
ParticipantI agree that this should be a function in buddypress core. A standard checkbox to make a site private. If selected, a standard set of pages are automatically added as viewable by logged out/unregistered users (about us, privacy policy, terms of service, etc.), and able to be unchecked by the admin as necessary.
You know what, while we’re at it, Theme My Login plugin functionality should be added to core as well. The ability to customize the login for branding, and customizing the registration page; eg. viewable/required fields, to make it more site specific should be included as well.
February 6, 2016 at 10:42 am #249525In reply to: White Website with buddypress active Plugin
dennition
ParticipantHi,
thanks for your tip. I deleted the theme and all required plugins (composer inclusive) and installed it again. Now i`m activating als plugins one by one with the wp_debug on. until know all is fine.
buddyforms and buddyforms members still shows a lot of Notices with Undefined index. Can this be normal with some plugins? i think when i turn wp_debug on off the website works (and i don’t see the notices).
February 4, 2016 at 11:07 pm #249485In reply to: buttons on profile – don’t do anything
shanebp
Moderator“Profile” is the parent tab.
“View” is a subnav tab for the parent tab.
If you are looking at your own profile, you should also see a subnav tab for ‘Edit’.Try switching momentarily to a WP theme like 2013 to see how it looks there.
-
AuthorSearch Results