Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,601 through 16,625 (of 31,071 total)
  • Author
    Search Results
  • #126541
    @mercime
    Participant

    Notes 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 profiles

    #126538
    hgpt
    Member

    Okay 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’ ) );
    }`

    #126536

    Love your theme man. Your advice worked perfectly.

    #126534
    Ibrahim
    Member

    help help help !!!!

    #126530

    Oh! I just realised that you’re the one who made the BP mobile theme I’m using!!! :O Damn, you’re an expert. My BP mobile homepage is currently blank, how do I fix this? (other pages are working properly)

    #126516
    MikeTime360
    Member

    Mercime, 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.

    #126513
    @mercime
    Participant

    You 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?

    #126501
    bollocks187
    Member

    All, 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

    8) 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:
    **/

    8) Save the style.css

    9) 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

    #126498
    Ibrahim
    Member

    buddypress with my freshlife Template

    #126496
    therockhr
    Participant

    Hi @boonebgorges , is the theme you use at http://commons.gc.cuny.edu/ one you made or was it made by WooThemes? Thanks!

    #126494
    bollocks187
    Member

    Your problem or BuddyPress ?

    #126492
    Ibrahim
    Member

    thank you :)
    but i read some topic about this issue The problem was conflict in the JavaScript codes

    #126490
    bollocks187
    Member

    I 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

    #126488
    bollocks187
    Member

    Aces is on he should be able to answer and solve the problem

    #126487
    bollocks187
    Member

    I 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.

    #126486
    Ibrahim
    Member

    I have seen topic talking about this problem
    but i lost it :(

    #126485
    bollocks187
    Member

    I’m here but I cannot post

    #126483
    Ibrahim
    Member

    anybody here !!!

    #126478
    dj10bear
    Member

    ok 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
    pL

    #126463
    Yuliono
    Member

    dear 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.. :D

    #126452

    In reply to: Getting Started

    @mercime
    Participant

    Ideally, 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.

    #126447
    Hammy Havoc
    Participant

    Did anybody figure this out? Using Quantum.

    #126442

    In reply to: Getting Started

    @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?

    #126431
    Xevo
    Participant

    style.css in your themes root folder.

    #126373
    miguelcortereal
    Participant

    Thanks mercime.

    No child theme for now, I got it.

Viewing 25 results - 16,601 through 16,625 (of 31,071 total)
Skip to toolbar