Search Results for 'theme'
-
AuthorSearch Results
-
January 26, 2016 at 9:19 pm #249172
Slava Abakumov
ModeratorPlace this code in bp-custom.php or
functions.phpof your theme.if ( ! is_super_admin() ) { add_filter( 'show_admin_bar', '__return_false' ); }January 26, 2016 at 1:00 pm #249145peter-hamilton
ParticipantI had same problem during my first go on BuddPree/Wordpress, found problem to be my theme which left no space in members header to show default links for this.
Did what @danbp mentioned and got it fixed with css.
Good luck
January 26, 2016 at 8:59 am #249137danbp
ParticipantHi,
this will be a custom work on your site admin and concerns principaly wordPress.
Read here how to do add a custom column on user’s list.Here the function reference you’ll need to use.
Something like this you have to add to bp-custom.php or your child-theme functions.php
function andrea_columns( $output, $column_name, $user_id ) { /* do something*/ } add_action( 'manage_users_custom_column', 'andrea_columns', 10, 3 );January 26, 2016 at 8:45 am #249134danbp
ParticipantHi,
have you activated Private message option in BuddyPress settings ?
have you the same issue when you use one of the Twenty something theme ?January 26, 2016 at 8:37 am #249132danbp
ParticipantHi,
to modify the group directory sort order, you need a child-theme and a template overload of
groups/index.phpCopy this file from
bp-templates/bp-legacy/buddypress/groups/index.phpto child, to get the following path:
wp-content/themes/your-child-theme/buddypress/groups/index.phpIn this copy, modify the html of the selector you’ll find at line 82~86 so the alpha. sort is in first position instead of latest.
January 26, 2016 at 8:30 am #249130In reply to: Need some help with registration page
Slava Abakumov
ModeratorI don’t see my fix in the source code of the
/registerpage.
Does your theme have/members/or/buddypress/directory? If yes, please give me content of the file/members/register.phpor/buddypress/members/register.php.
If there is no such file, – give me the content of a file (and its name) where you put the code I gave you. You can use http://pastebin.com/ to post there code from file (and post here in a forum only links to those files from pastebin).January 26, 2016 at 8:16 am #249128In reply to: where is edit this?
danbp
ParticipantJanuary 26, 2016 at 6:34 am #249124In reply to: Buddypress and Restricting Page Access
Dennis Alund
Participant+1 for this thread
See this FAQ on WooThemes Memberships regarding the issues that you can run into if you purchase a membership plugin and try to restrict access to e.g. Groups or Members directory.
January 25, 2016 at 9:13 pm #249106In reply to: Need some help with registration page
Slava Abakumov
ModeratorThe problem is with your theme.
The quickest fix is this:function the7_bp_register_fix(){ echo '<div style="clear:both"></div>'; } add_action('bp_custom_signup_steps', 'the7_bp_register_fix', 999999);Place this code into either bp-custom.php or functions.php of your (child) theme.
Ideally – contact your theme author and ask him/her/them to test the theme with BP.
January 24, 2016 at 4:16 pm #249066In reply to: Profile Photo not showing in activity ?
shanebp
ModeratorIf you want somebody to examine your site, you need to provide a user / pw.
Your issue may be related to your theme.
To confirm, try switching momentarily to a WP theme like 2013 and see if the problem persists.January 23, 2016 at 4:55 pm #249045In reply to: BP pages trigger 404
mervinpearce
ParticipantCreated two WordPress sites with buddy press. I am using a Bossbuddy theme and it is just annoying that a register will trigger a 404. This problem is scattered all over the postings. Is there a single source for solving this??
It goes to http://webaddress/register
January 23, 2016 at 2:07 pm #249037In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
ModeratorWhat’s the content of your theme
/members/single/profile.phpfile?January 23, 2016 at 1:57 pm #249033In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
ModeratorWhat’s the content of your theme
/members/single/profile/profile-loop.phpfile?January 23, 2016 at 1:03 pm #249032In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participantand i try to add line to the child theme but nothing happened
January 23, 2016 at 1:01 pm #249031In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participantnot working ..
/* Theme Name: Sweetdate (shared on themelot.net) Description: More than a WordPress dating theme Author: SeventhQueen Author URI: http://themeforest.net/user/SeventhQueen Version: 2.9.2 Tags: dating, clean, responsive, creative, minimal, modern, landing page, social Text Domain: kleo_framework License: GNU General Public License License URI: license.txt */ @import url("assets/styles/app.css"); /* * DO NOT EDIT THIS FILE * * If you want to edit/add styles you need to enable the child theme and add your custom styles there. */ #buddypress .profile h4{display:none !important}January 23, 2016 at 12:59 pm #249030In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
Moderatorinto
style.cssof your theme. Also try this:
#buddypress .profile h4{display:none !important}January 23, 2016 at 12:34 pm #249028In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participant/wp-content/themes/[your-theme]/members/index.phpthis work to deleteid="members-all"but here/wp-content/themes/[your-theme]/members/single/profile/profile-loop.phpi delete h4 text and nothing happenedJanuary 23, 2016 at 12:07 pm #249027In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
ModeratorYou have
/membersdirectory.
/wp-content/themes/[your-theme]/members/single/profile/profile-loop.php
and
/wp-content/themes/[your-theme]/members/index.phpHave you tried CSS solution?
January 23, 2016 at 12:02 pm #249025In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participanti dont have budyppress in my theme only have in plugin.
January 22, 2016 at 10:46 pm #249018In reply to: Cannot create groups
Slava Abakumov
ModeratorThere can be some plugins that make this happen. Try deactivating all of them (except BuddyPress) one by one to see which might cause it.
You could have written some code inbp-custom.phpfile or in your theme’sfunctions.php– check those files as well.Also, groups can’t be added to forums – they are different components. Although groups can have own forums.
January 22, 2016 at 10:40 pm #249017In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
ModeratorOR
You can add these styles to your theme css file:
#members-all{display:none} #buddypress .profile h4{display:none}January 22, 2016 at 10:38 pm #249016In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
Moderator“Tab Base”
To delete
Baseand all other fields groups names in user profile:
1. find in your theme file/buddypress/members/single/profile/profile-loop.php
2. Delete in that file: this line:<h4><?php bp_the_profile_group_name(); ?></h4>If you don’t have such file in your theme, than copy this file:
/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php
into your theme here:
/wp-content/themes/[your-theme]/buddypress/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php
and remove the line that I wrote above (withh4).Members Directory – All Members
1. find in your theme file
/buddypress/members/index.php
2. Delete in that file the line with this text:id="members-all"If you don’t have such file in your theme – do the same thing as written above but for
index.phpfile.You should understand, that this will break ability to filter results on members directory page.
January 22, 2016 at 11:57 am #248979In reply to: Textarea Profile Field?
Slava Abakumov
ModeratorTry this:
function remove_wysiwyg($enabled, $field_id) { // change this field_id to the one you need to have ordinary textarea if ( $field_id == 22 ) return false; return $enabled; } add_filter( 'bp_xprofile_is_richtext_enabled_for_field', 'remove_wysiwyg', 10, 2 );Place the code in bp-custom.php.
January 20, 2016 at 10:30 pm #248934Rionoskae
ParticipantIn the past – I’ve used the following code in my functions.php to resolve this issue:
/**BuddyPress**/ add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' ); remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ ); remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );I’ve also tried following the advice in this thread, with no luck.
https://buddypress.org/support/topic/use-standard-wordpress-registration/The only changes i’ve made since implimenting the above fix was to make updates to wordpress and my plugins. I suspect, the buddypress plugin update in particular to be the cause here but I cannot be sure. I’ve spent several hours trying to troubleshoot this and i’m about ready to pull my hair out here… Any advice / help would be greatly appreciated.
Helpful information:
- Site is a subdomain
- was using the wordpress registration page in earlier versions of (wordpress/buddypress) just fine.
- tried disabling/updating all plugins
- Tried googling the issue already – no luck
- the code in functions.php was added under the child theme, so updates would not over-write it
January 20, 2016 at 2:12 pm #248911In reply to: Error Posting Comments
Manoj Chacko
ParticipantI did check the theme before with twenty fifteen and the error was still there, we currently using a studiopress theme. But I checked it again with twenty fifteen and the issue remains.
1. Which version of WordPress are you running?
WordPress 4.3.22. Did you install WordPress as a directory or subdomain install?
Directory3. If a directory install, is it in root or in a subdirectory?
Root4. Did you upgrade from a previous version of WordPress? If so, from which version?
Yes, don’t remember which version it was 4.2.* I think5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes6. Which version of BP are you running?
BuddyPress 2.4.3.7. Did you upgraded from a previous version of BP? If so, from which version?
yes, I think it was buddypress 2.2.*8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes,
Akismet; BuddyPress; BuddyPress Docs; BuddyPress Group Email Subscription; BuddyPress Sitewide Activity Widget; CustomPress; Google Analytics +
ImageInject; Jetpack by WordPress.com; More Privacy Options; Multisite Plugin Manager; New Blog Templates; Site Categories; TinyMCE Advanced
Ultimate Branding; User Role Editor; WordPress Importer; WP Author Slug; WPMU DEV Dashboard; WPMU Ldap Authentication;9. Are you using the standard WordPress theme or customized theme?
Studiopress theme (Tested with twenty 15 as well)10. Have you modified the core files in any way?
No
11. Do you have any custom functions in bp-custom.php?
No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
BBpress Version 2.5.813. Please provide a list of any errors in your server’s log files.
Under the windows event viewer is an error
“Faulting application name: httpd.exe, version: 2.4.16.0, time stamp: 0x55a22a64
Faulting module name: php5ts.dll, version: 5.6.12.0, time stamp: 0x55c3b699”
Happens whenever this error occurs.
Nothing related within the apache logs That I can see.14. Which company provides your hosting?
University Hosted (Temple University)
15. Is your server running Windows, or if Linux; Apache, nginx or something else?
Windows running Xampp -
AuthorSearch Results