Search Results for 'theme'
-
AuthorSearch Results
-
December 17, 2011 at 8:59 pm #126541
In reply to: Users can“t update profile
@mercime
ParticipantNotes accumulated on this issue, so far:
– happens to sites hosted on IIS server – resolved by a) moving Linux server; b) re-uploading BuddyPress plugin folder manually
– happens when username has space/s between – resolved by removing spaces in username in database and installing restrict username plugin
– happens to old themes which need to be updated – resolved by changing to bp-default theme or an updated BP child theme or BP-compatible theme
– happens when one disables extended profiles – resolved by enabling extended profilesDecember 17, 2011 at 7:34 pm #126538In reply to: Disable All Notifications
hgpt
MemberOkay I found a way around this. I used the code supplied via one post, the one that said you should place the code in the functions.php file of your theme which would make all new registered users notifications setting turned off. Only problem was then… when I cut the ability for users to updated there profile setting it also allowed them to change the notification settings. Which would allow users to turn them back on.
So I headed to the BuddyPress plugin files and started searching. Looking for files with the names “Settings” in them I opened them all up and started searching for anything mentioning “Notifications” settings. Here are the two pieces of code that I found in the files and removed them. Went to my test user account, then to settings, and the ability to update/change my “Notifications” settings from their could no longer be seen. Worked… so here are the 2 pieces of code to look for an remove.
First:
`// Add Notifications nav item
$sub_nav[] = array(
‘name’ => __( ‘Notifications’, ‘buddypress’ ),
‘slug’ => ‘notifications’,
‘parent_url’ => $settings_link,
‘parent_slug’ => $this->slug,
‘screen_function’ => ‘bp_core_screen_notification_settings’,
‘position’ => 20,
‘user_has_access’ => bp_core_can_edit_settings()
);`Second:
`/** Notifications *************************************************************/function bp_core_screen_notification_settings() {
global $bp;if ( bp_action_variables() ) {
bp_do_404();
return;
}if ( isset( $_POST ) ) {
check_admin_referer(‘bp_settings_notifications’);if ( isset( $_POST ) ) {
foreach ( (array)$_POST as $key => $value ) {
if ( $meta_key = bp_get_user_meta_key( $key ) )
bp_update_user_meta( (int)$bp->displayed_user->id, $meta_key, $value );
}
}bp_core_add_message( __( ‘Changes saved.’, ‘buddypress’ ), ‘success’ );
do_action( ‘bp_core_notification_settings_after_save’ );
}bp_core_load_template( apply_filters( ‘bp_core_screen_notification_settings’, ‘members/single/settings/notifications’ ) );
}`December 17, 2011 at 5:38 pm #126536In reply to: Auto generating blank member profiles
animeshtripathi
MemberLove your theme man. Your advice worked perfectly.
December 17, 2011 at 5:17 pm #126534In reply to: activity box don’t work with freshlife theme
Ibrahim
Memberhelp help help !!!!
December 17, 2011 at 3:36 pm #126530In reply to: Auto generating blank member profiles
animeshtripathi
MemberOh! I just realised that you’re the one who made the BP mobile theme I’m using!!!
Damn, you’re an expert. My BP mobile homepage is currently blank, how do I fix this? (other pages are working properly)December 17, 2011 at 7:14 am #126516In reply to: Profile – Edit – Not Working
MikeTime360
MemberMercime, Thank you for responding. I am using Suffusion (child) theme. After I cleared the cache, I still have problem.
I have been testing the username question. I can EDIT with the admin. I can EDIT with a single name username created inside WP. But then I could NOT edit with a different single name username. I just created a username with a space (WP put a hyphen in th space) and I was able to EDIT.
Appreciate your thoughts.
-Mike
P.S. Thanks for the Google Search idea. I would not have thought of that.
December 17, 2011 at 6:34 am #126513In reply to: Profile – Edit – Not Working
@mercime
ParticipantYou can search via Google as in “BuddyPress.org yourKeywords”
What theme are you using? If you change to bp-default theme and clear cache, is the issue corrected?
Is this issue happening in all members’ profile edit pages or only those who have space/s in their usernames?
December 16, 2011 at 7:54 pm #126501In reply to: Don’t Inherit BP-Default CSS Child Theme
bollocks187
MemberAll, can we start this again for my clarity. This is what I do to get started playing with Buddypress.
1) Create under WP themes a folder e.g. bbexample
2) Go to WP plugins find, buddypress folder, bp_themes folder and then select the bp_default folder
3) Select and copy ALL the contents in the bp_default folder. The Codex talks about certain things but I copy everything, so I can play with the PHP files in some of the subfolders.
4) Go back to bbexample theme folder under WP content (which is currently empty)
5) Paste everything you copied in 3)
6) Now you have a populated theme with lots of stuff in the folder. Yeah baby !
7) First open the style.css in bbexample
Replace ALL the contents with the following:/*
Theme Name: bbexample
Theme URI: http://blahblah
Description: My theme for BuddyPress.
Version: 1.0
Author: PJ Bollocks
Author URI: http://blahblah.org/
Template: bp-default
Tags: buddypress, two-column, grey, dark
*//***
* The following imported file is my personal copy of the bp_default style sheet and is located in my theme area
*/
@import url( _inc/css/default.css );/**
* Any other additional CSS style information can be placed below:
**/
Save the style.css9) Open the functions.php file to load up your theme styles and essentially kick out the bp_default theme.
10) Replace the contents inside the php delimeters with the following as stated by previous BB players:
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {
// Bump this when changes are made to bust cache
$version = ‘20111102’;
// Register main stylesheet
wp_register_style( ‘bbexample’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );
// Enqueue main stylesheet
wp_enqueue_style( ‘bbexample’ );
}
add_action( ‘wp_print_styles’, ‘bp_dtheme_enqueue_styles’ );
endif;11) Now you have a fully functional BuddyPress compatible theme (based on bb_default), but this is now yours to edit and play with as you see fit.
12) Load the theme and check it out. It looks and performs identical to bp-default and it should since it is your copy.
13) To Edit the CSS then you open the file under bbexample/_inc/default.css
14) You can “Modify” the Theme layout, adding widgets etc, changing the page layouts and modifying some of the PHP display contents by finding the right file under bbexample folders.
Warning: disclaimer: I am a hack and Luv it
December 16, 2011 at 7:24 pm #126498In reply to: activity box don’t work with freshlife theme
Ibrahim
Memberbuddypress with my freshlife Template
December 16, 2011 at 7:12 pm #126496In reply to: Do Not Understand BuddyPress
therockhr
ParticipantHi @boonebgorges , is the theme you use at http://commons.gc.cuny.edu/ one you made or was it made by WooThemes? Thanks!
December 16, 2011 at 6:34 pm #126494In reply to: activity box don’t work with freshlife theme
bollocks187
MemberYour problem or BuddyPress ?
December 16, 2011 at 6:17 pm #126492In reply to: activity box don’t work with freshlife theme
Ibrahim
Memberthank you

but i read some topic about this issue The problem was conflict in the JavaScript codesDecember 16, 2011 at 6:04 pm #126490In reply to: activity box don’t work with freshlife theme
bollocks187
MemberI just found something, for BuddyPress web site activity, If you go to http://www.google.com and search for : buddypress.org bollocks187 I can then read my activity thread. I think there is a BUG on Activity threads in BuddyPress itself which has not been fixed. That is strange imo. Even for The BuddyPress website one would think that one of the programmers would write a PHP function which response to you clicks on “Activity” to do the Google search with your name so you do not have to do the search yourself.
A solution would be
December 16, 2011 at 5:42 pm #126488In reply to: activity box don’t work with freshlife theme
bollocks187
MemberAces is on he should be able to answer and solve the problem
December 16, 2011 at 5:41 pm #126487In reply to: activity box don’t work with freshlife theme
bollocks187
MemberI have hijacked this thread. The reason is when I try and LOOK at my “activity” as a signed on member to THIS web site BuddyPress – I have nothing in the activity section.
When I try and post in my area it keeps on coming back with “try again” – lol epic failure.
So I do not think its just your theme.
December 16, 2011 at 5:40 pm #126486In reply to: activity box don’t work with freshlife theme
Ibrahim
MemberI have seen topic talking about this problem
but i lost it
December 16, 2011 at 5:37 pm #126485In reply to: activity box don’t work with freshlife theme
bollocks187
MemberI’m here but I cannot post
December 16, 2011 at 5:29 pm #126483In reply to: activity box don’t work with freshlife theme
Ibrahim
Memberanybody here !!!
December 16, 2011 at 4:50 pm #126478In reply to: Buddypress WIDGET THEME
dj10bear
Memberok thanks. sorry for some reason i did not see the original post i made, so i made a new one. i also i did not get a notification about your response to this post thru buddypress.org – just FYI.
any ideas on the menu? thanks
pLDecember 16, 2011 at 1:13 pm #126463In reply to: Newbie: membership integration and other stuff
Yuliono
Memberdear Charly, and other noobs like me.. mind this:
1. upgrading wordpress version with non wordpress-standard theme on it is bad.
2. upgrading wordpress version with non wordpress-standard theme which has it’s own widgets on it is worse, you need to rearrange module’s positions.
3. upgrading wordpress version with non wordpress-standard theme on it AND you have buddypress on it is even worse, see by yourself if you dare.
4. upgrading wordpress version with non wordpress-standard theme which has it’s own widgets on it AND you have buddypress on it with buddypress skin is the worst, makes u want to stop using wordpress anymore.. ever!well, wordpress is good, but a noob is a noob. i messed up my site because of it, lol..
December 16, 2011 at 3:30 am #126452In reply to: Getting Started
@mercime
ParticipantIdeally, you should create a test site with the same server environment you have now along with the plugins and theme. Then install BuddyPress etc. and do the BP Compatibility process then some exploration and testing of other BP plugins.
Now, if you are adventurous, you can always back up your database and server files, then proceed with the BuddyPress installation and then the BP Template Pack plugin, etc.. If anything goes awry , you can always revert your installation to what it was before with your back ups.
December 16, 2011 at 1:04 am #126447Hammy Havoc
ParticipantDid anybody figure this out? Using Quantum.
December 16, 2011 at 12:28 am #126442In reply to: Getting Started
Larry LaSalle
Member@mercime – Thank you! My Evolve theme is already active – it’s an existing site that has been up for 6 months. Am I still OK to proceed?
December 15, 2011 at 10:13 pm #126431In reply to: Sidebar down of BuddyPress page! HELP, Please…
Xevo
Participantstyle.css in your themes root folder.
December 15, 2011 at 6:48 pm #126373In reply to: Can’t edit child theme files
miguelcortereal
ParticipantThanks mercime.
No child theme for now, I got it.
-
AuthorSearch Results