Search Results for 'theme'
-
AuthorSearch Results
-
April 28, 2017 at 12:33 am #265655
In reply to: Disable Alphabetical
Brajesh Singh
ParticipantDo you want to remove the “Alphabetical” in the Order By dropdown?
If you are using a BuddyPress specific theme, please look into yourtheme/buddypress/members/index.php and you will see the code there for this option. Just remove that.
if you are not using a BuddyPress specific theme or your theme does not have this file, you can copy index.php file from plugins/buddypress/bp-templates/bp-legacy/buddypress/members directory and put it in yourtheme/buddypress/members directory.
then you can modify the file to remove the dropdown option.
Hope that helps.
Regards
BrajeshApril 27, 2017 at 2:09 pm #265647In reply to: Solved – Customize the login page of wordpress
Henry Wright
ModeratorCheck out the article on Page Templates.
April 26, 2017 at 9:26 pm #265635In reply to: buddypress shortcodes
shanebp
Moderatorafaik, there aren’t any in BP.
There is support for shortcodes that you or others write for plugins and themes.April 25, 2017 at 11:27 am #265613In reply to: Solved – Customize the login page of wordpress
Henry Wright
ModeratorIf you’re having problems with Theme My Login, try Customizing the Login Form instead.
April 25, 2017 at 8:43 am #265611danbp
ParticipantSorry for you, but you have to debug.
Also, activate a default Twenty theme and deactivate all plugins exxcept BP.
WP+BP should work correctly with a Twenty theme before activating any other plugin or custom theme.If you use some custom code in your theme (or child theme), deactivate it provisory. Same thing if you use bp-custom.php
https://codex.wordpress.org/Debugging_in_WordPress
Search also the forum as they are many related topics for debuging BP.
April 25, 2017 at 7:18 am #265610lalitavalon
ParticipantI useed the same website with diffrent link on local host it is working fine there is no issue.
But I actaully try to set up the same website again on local differnt link and try to install the buddypress plugin getting errors and not able to uninstall.
Still if you want some information please find below:Theme -custom theme
php version 7.0.9
Install type single
List of plugins:Advanced Custom Fields
Advanced Custom Fields: Date and Time Picker
Advanced Custom Fields: Repeater Field
All In One SEO PackBreadcrumb NavXT
BuddyPress
CaptchaContact Form 7
Dephue Data Design Hide Update Notifications – Developer Edition
Limit Login Attempts
Lockdown WP Admin
Login With Ajax
Restrict Categories
Visualizer: Charts and Graphs
WP-Mail-SMTP
WPFront User Role EditorHost Type: Local
April 25, 2017 at 7:13 am #265608danbp
ParticipantHi,
WP’s toolbar is not part of BP, and not part of your theme. This bar belongs to WP.
I suggest that you don’t remove(or deactivate) the whole bar, but only remove any menu item belonging to WP, except the “howdy” menu where BP install his sub-menu items.
To do this, you have to use some custom functions related to wp_admin_bar class.
Use
$wp_admin_bar->add_nodeor$wp_admin_bar->remove_nodeCodex reference:
https://codex.wordpress.org/Function_Reference/remove_node…and a little tutorial, in case of!
April 25, 2017 at 6:58 am #265607danbp
ParticipantHi,
please provide more details about your install. For now it is just impossible to help.
Used theme ?
Php version ?
Install type ? (single, network)
List of plugins ?
Hoster and plan, server type ?You can also read here before posting.
Thank you for comprehension.
April 24, 2017 at 4:44 pm #265588In reply to: Group header file problems
lawlyet
ParticipantThis error is showing up to many websites. A google search for “PHP Warning: Creating default object from empty value in /wp-content/plugins/buddypress/bp-groups/classes/class-bp-groups-member.php on line 1170” returns almost 5500 results…
And if you search for “PHP Warning: Creating default object from empty value in class-bp-groups-member.php on line” (removing line number and the path of the file from the results, you get some something like 337000 results.
My site is also showing this message, and I already removed all plugins and themes, running the latest version of WP, BP and BBPress with Twenty Seventeen template.
I guess it may be a problem with php, or maybe with chrome and chromium… Maybe it is time to start working on this issue.
I already added the following in my functions.php:
/* Remove errors if any */
error_reporting(E_ERROR | E_PARSE);
/* End remove Errors */it’s not the ideal. there is also the better option to add some lines in your wp-config.php, to do a proper debug and get it in a log file, instead of showing it in the site.
April 24, 2017 at 12:18 am #265572Henry Wright
ModeratorThat page is made up of template parts but you would start by editing your-child-theme/buddypress/members/single/index.php. If the file doesn’t exist you will need to create it. For more information check out the Template Hierarchy article
Ref https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
April 23, 2017 at 6:09 am #265567Marc
ParticipantHi Jeff,
Sorry I don’t remember, but keep in mind that wp-login and the password reset function of WordPress doesn’t get translated by WPML. The only way around is to use another login and password reset mechanism (that is compatible with WPML), most premium themes have that and certain plugins have it as well.
Best,
MarcApril 19, 2017 at 5:54 pm #265490In reply to: Solved – Customize the login page of wordpress
Henry Wright
ModeratorThe Theme My Login plugin will let you do this. I’ve used it successfully with BP many times.
April 19, 2017 at 12:12 am #265477gorviekin
ParticipantIf i can just disable the BuddyPress Members page/profile (where you see cover photo, feed etc) and have it load the default (/user/username) that theme is currently using instead.
April 15, 2017 at 3:24 pm #265436In reply to: Repairing Installation
metalhead
ParticipantI copied a fresh compose.php over to my child-theme and all is good now. Thanks very much!
April 15, 2017 at 3:11 pm #265435In reply to: Show registered users email on check email page?
threwthenevr
ParticipantJust a quick update.
I’ve been searching nonstop threw documentation/Codex and I came up with this code,global $wpdb; /* lets retrieve the email of users who signed up $wpdb */ function get_user_by( ‘email’,‘null’ ) $user_email = $wpdb->wpjm_signups (‘user_email’); if ($signups) { echo "sent to " . $user_email ; } else { echo "email not listed."; } //Creating a shortcode to display signup email add_shortcode( 'user_email');I placed it in my themes functions.php file but had to delete it due to the 500 error.
Am I on the right track?
April 15, 2017 at 1:56 pm #265434In reply to: Repairing Installation
shanebp
ModeratorHave you customized any BP templates?
Either in the plugin or in your child theme?Look at this file, it’s the one you should be using.
buddypress\bp-templates\bp-legacy\buddypress\members\single\messages\compose.phpAre you using the BP Default theme? You shouldn’t.
It may be a theme conflict – test by momentarily switching to a WP theme like 2015.
April 14, 2017 at 10:15 am #265423jordan11
ParticipantSolved it myself. Was copying from from bp-themes when it should have been bp-templates. the bp-templates/bp-legacy sounded like they were old files
April 13, 2017 at 7:56 pm #265407In reply to: Customizing Member Header
shanebp
ModeratorYes, it’s called a template overload.
April 12, 2017 at 3:10 am #265378Topic: XProfile Fields Limit or Max
in forum How-to & Troubleshootingbradleyrf
ParticipantHey folks,
I’m running into the “are you sure you want to do this?” message when I try to add another value to an xprofile field. Is there some kind of limit or PHP value that value that might need updating? Or maybe a WP memory limit? I can delete a value and add it back but then when I try to add an additional one I get the message again. I have over 500 values for this field currently.I’ve deactivated all plugins, except Buddypress of course, tried the default theme. There are no errors in the errors logs.
Thanks for any and all assistance!
WP 4.7.3 and BP 2.8.2
April 10, 2017 at 6:50 pm #265356In reply to: Issues with dots
Henry Wright
ModeratorYour theme’s CSS is displaying list items with bullets. Try making use of
list-style-type: none;.Ref https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type
April 10, 2017 at 12:16 pm #265353In reply to: BuddyPress Newsletter relaunched
Slava Abakumov
Moderator#BuddyPress Newsletter #28 – BP template hierarchy explained, new plugins and a Woffice theme
April 9, 2017 at 1:15 am #265339In reply to: New posts not working all of a sudden
skunkyvibes
Participantnot sure if this is related – but I’m using the Divi theme, and anytime I try to edit+save (or preview) a page… I land on a 404 error page
Very strange. Not stoked.
April 6, 2017 at 12:48 pm #265293In reply to: How to disable the member (directory) page?
danbp
ParticipantHi,
“member” is a core component of BuddyPress and can’t be disabled. You need the “member” slug (or what ever you may use as custom slug) in the wp environment, for example to fire profiles, messages and so on.
You want to obfuscate or forbid the member directory. That’s ok. Let’s make it simple and stupid! One possibility would be to add a restriction on the directory template. For example, you could allow only the site admin to access that part. Other roles will get a message instead (or nothing at all, or a redirection…).
If i’m right, the directory template is in bp-legacy/buddypress/members/index.php
Condition you could use:if ( !is_super_admin() ) { echo 'This page is not public'; } else { // here the template content }To use this solution you need to use a child theme.
There are many other ways to accomplish what you want. Here the most simple(imo), but you can go to overcomplicated and very sophisticated too.April 5, 2017 at 8:43 pm #265278In reply to: BP CSS not loaded in header
r-a-y
KeymasterReading this may help:
Also of relevance:
https://buddypress.org/support/topic/css-causing-cover-image-to-disappear/April 5, 2017 at 6:46 am #265256In reply to: How do i change the text My Buddy Groups
danbp
ParticipantHi,
My Buddy Groups is not a string used in BuddyPress, and explain why you don’t find it (at least in BuddyPress).
could it be that you use some group plugin ? Or a BP specific theme ?
Search there, plugin or theme have usually their own language file. -
AuthorSearch Results