Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 28,376 through 28,400 (of 69,108 total)
  • Author
    Search Results
  • #139543

    No prob Cal ( @mastermind12). Just remember to store the code below away because you will need to reapply it the next time, and every time, you upgrade BuddyPress. Once you have your own theme, you can put this in a style sheet called `style.css` in your themes directory and you will always hide the “bubble”.

    `/* removes the activity bubble from buddypress */
    ul#members-list span.activity {
    display:none !important;
    }`

    #139541

    No @mastermind12 — those 2 style sheet (.css) files are not coming into play on your Member’s Directory page.

    Paste it to the bottom of `/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css` although you will need to repeat this paste each and every time you upgrade the BuddyPress plugin.

    adminRimma
    Participant

    To clarify my post above, I do not have buddypress showing in the toolbar on the left under settings on the subdomain and when i network activate it, do not see profile fields…

    i have declared the root blog as advised…

    shanebp
    Moderator

    You’ll want to start here:
    https://codex.buddypress.org/developer-docs/group-extension-api/

    It’s quite powerful and I’ve used it to do the kind of expansion you describe.

    adminRimma
    Participant

    I have the same problem! Installed BP 1.6.1 within WordPress 3.4.1 Multisite, subdomain setup; activated on network first, ran setup wizard…then deactived on network and activated on root blog id=3 (subdomain i want it on)…went to subdomain and activated it just there….no settings show up in toolbar and uder settings I get “you do not have sufficient permissions to access this page”.

    also, during running the setup wizard, i get no buddypress on left menu — so i cannot access components to set up some custom fields…

    please help!!!
    am dead in the water like shaneholloman…

    #139533
    Tim Hyde
    Participant

    I had similar issues with a plugin I developed – all fixed now. Your best contacting plugin developers as there do seem to be a few significant changes to core in 1.6.

    Blank pages are often due to a plugin/theme throwing an error. The plugin maybe using stuff that’s changed (especially if accessing data structures like the $bp object directly) and is simply throwing an error. Use WordPress in debug mode and check the log file.

    #139530
    9087877
    Inactive

    @frank13 That is correct. I have 2 installs of BP 1.6.1 on my localhost and I have not had any issues but these are also clean installs.

    #139529

    So @shawn38 if I understand your comment back to me correctly — 1.5.6 does not provide the Field Description text box, but 1.6.* does?

    Side note: I read bad, bad things about 1.6 so I am avoiding upgrading at this time.

    #139528

    Ok @mastermind12. Then the css I gave you should work.

    Can you post back the exact file you added the code too including its path.

    Can you also post back a copy of what you added please.

    It will help me/us properly troubleshoot.

    #139527
    9087877
    Inactive

    Actually that is standard for buddypress 1.5.6. It does have the field description box in the name field in the latest and greatest version though! :-)

    #139525

    @mastermind12

    If you are referring too the activity bubble on the Members Directory page, then do this:

    add the following line of code to the `style.css` document in your themes directory:

    `ul#members-list span.activity {
    display:none !important;
    }`

    if you are referring too a different activity bubble, then let us know which one exactly.

    #139522

    18 Active Plugins Network Wide in WP 3.4.1
    `Akismet
    Better Delete Revision
    BP Group Documents
    BP Profile Search
    BuddyPress
    BuddyPress Docs
    BuddyPress Global Unified search
    Buddypress Sitewide activity widget
    Email Users
    [Homegrown] Authenticated Users
    [Homegrown] New User Notification
    [Homegrown] Remove Menu Items From Groups & Discussions Pages
    [Homegrown] Remove Username Character Limit
    Quick Page/Post Redirect DEV
    Shortcode Exec PHP
    TDLC Birthdays
    WP DB Optimizer
    WP Smush.it`
    have 14 In-active Plugins in WordPress

    8 Active Plugins in BuddyPress 1.5.6
    `All-in-One Event Calendar by Timely
    bbPress
    Breadcrumbs Everywhere
    BuddyPress Group Email Subscription
    BuddyPress Template Pack
    Dynamic Widgets
    Hyper Cache
    NextGEN Gallery`
    have 6 In-active Plugins in BuddyPress

    #139521

    We have slightly over 200 members.

    #139520

    We have done the following to help our BuddyPress along:

    (1) Added this code to wp-config.php
    `/**
    * source: http://wpdude.com/wordpress-performance-tuning-tips
    */

    define(‘ENABLE_CACHE’, true);`

    (2) Followed Michael Eisenwasser’s suggestions located at http://www.buddyboss.com/buddypress-speed-and-performance/

    (3) installed and run “Optimize Database” plugin

    (4) installed and run “Hyper Cache” plugin

    (5) installed and run “Better Delete Revision” plugin

    aces
    Participant

    You could create an empty text file called /wp-content/plugins/walled-garden.php, paste the following into it, then activate the plugin:
    `
    <?php
    /*
    Plugin Name: Buddypress Walled Garden
    Plugin URI: http://www.example.com/
    Description: A brief description of the Plugin.
    Version: 0.1
    Author: http://www.example.com/
    Author URI: http://www.example.com/
    License: A “Slug” license name e.g. GPL2
    */

    function sh_walled_garden()
    {
    global $bp;

    // if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )

    if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) )
    return;

    if( ! bp_is_blog_page() && ! is_user_logged_in() )

    bp_core_redirect( bp_get_signup_page() );
    }

    add_action( ‘bp_init’, ‘sh_walled_garden’ );

    function bp_remove_feeds() {
    remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
    remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
    }
    add_action(‘init’, ‘bp_remove_feeds’);

    ?>`
    Tested in bp 1.6.1

    The plugin should not have spaces, blank lines, or anything else before “ and use a simple text editor ( like this ) rather than a wordprocessor….

    – – –

    To have a different menu for logged in users is slightly more complicated.

    You need to find the template bit that shows the menu.

    In the current bp-default theme header.php file is the following
    `
    false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>
    `
    which can be replaced by
    `
    <?php
    if ( is_user_logged_in() ) {
    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ” ) );
    } else {
    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => ” ) );
    }
    ?>
    `
    Then create the secondary menu in the wordpress menu admin…..

    Please backup files and database before trying this out in case there are complications. It would be better to try out on a test/dev site first …..

    SeFi
    Member

    @shawn38 Thanks but I’m already using a theme for my client and I can’t change it…

    @BooneGorges As for shawn38 I’m already using a theme and I’m not a really good programmer so what you’re refering to is to difficult for me :(

    Can’t I find a plugin to do that ? No one ever thought of doing it ?

    Thanks a lot guys !

    #139517

    Thanks @shawn38.

    I am running WP 3.4.1 and BP 1.5.6

    In my installation there is no `Profile Fields` in the Dashboard > Users navigation path.

    The manner in which I get to `Profile Fields` is Dashboard > Buddy Press > Profile Fields

    The page ends up being “Extended Profile Fields” and under the “Base (Primary)” tab and I click the Edit button for Name (Primary) (Required) there is no Field Description box like there is on all the other profile fields.

    Do you think I have a faulty or incomplete install going on here?

    Appreciate your help…

    #139512
    9087877
    Inactive

    Go to Dashboard/Settings/BuddyPress/Settings at the top un-check Show the Toolbar for logged out users.

    #139509

    In reply to: BuddyPress 1.6.1

    bruce-s
    Participant

    I had to deactivate all other BP related plugins to upgrade to 1.6.1 – then the upgrade went smoothly and I reactivated all the other BP plugins – so far so good…

    kooba
    Participant

    I’ve gone trough all the steps once again and it worked out ;D Thank You very much….btw, can You recommend any website with tutorial videos on configuring/using buddypress??

    #139505

    @mastermind12, put .time-since{display:none ! important;} at the bottom of your style.cc and clear the cache.

    regards

    kooba
    Participant

    @mercime ok, done…but I must have done it wrong as it is not working ;/ can You take a look please?

    kooba
    Participant

    @mercime Thank You very much for your help, I’m going to check it straight away and let You know if it worked out…

    #139500
    Jonathan
    Member

    Thanks Boone, I’ll have a look at your idea.

    FYI, I’ve submitted a ticket. https://buddypress.trac.wordpress.org/ticket/4436

    #139498

    In reply to: Everything posts twice

    I found that global.js was loading twice for me.
    once at buddypress>_inc>global.js and once at theme>includes>js>global.js
    I dont recall putting my global.js file in my theme but I can be flighty sometimes :)

Viewing 25 results - 28,376 through 28,400 (of 69,108 total)
Skip to toolbar