Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,101 through 17,125 (of 32,678 total)
  • Author
    Search Results
  • #139647
    Paul Wong-Gibbs
    Keymaster

    If you think a parameter isn’t working as it should, please report a bug to BuddyPress.trac.WordPress.org.

    #139635
    Jackie Chan
    Participant

    Also so your aware, I’m running the latest wordpress & buddypress and use the default Buddypress theme

    c0rp53
    Member

    Hi, well… I wasn’t sure if I should post here or wordpress forums, anyway it seems to be a Buddypress issue so…

    I get this error in the footer when I go to any user’s profile and some plugins pages user related such as Achievements/My Achievements.

    Fatal error: Class ‘_WP_Editors’ not found in /home/pgandita/public_html/loksearte.org/wp-includes/js/tinymce/langs/wp-langs.php on line 548

    It is important to consider that it only happens with the spanish version of the site, english version works just fine.

    Wordpresss: 3.4.1
    Buddypress: 1.6.1
    A lot of plugins, but I already deactivated them and the error still persists

    So, what should I do?

    cereus
    Participant

    First: Big thanks to the developers and the community that make this software available.

    Running: WordPress 3.4.1, BuddyPress 1.6.1, Apache/2.2.22 (Ubuntu), fresh install

    Desired setup: I am at an institute with 5 groups. Some users are shared between the groups. I have made virtual hosts so each group has a separate domain (with separate directories) and there is one domain for the institute. I would like to have a private BuddyPress installation for the entire institute. Then I would also like to have private BuddyPress installations for each group of which members are selected from the institute membership.

    What I have managed so far:
    – Separate WordPress installations for each group.
    – These installations share the same database, but are distinguished by having different prefixes for the tables.
    – All share the same user table (like in this example: http://www.steelfrog.com/share-user-database-tables-between-two-wordpress-installations/)
    – Enable multisites on all the different installations of WordPress
    – I have successful division of users, if you aren’t a user on one site, you can’t login and edit.

    BuddyPress installations then show all users, not just users of the specific site.

    And now I have reached the end of my technical expertise. I suspect the next step would be to find out how BuddyPress determines users (use everyone in the user table?), and filter it so that only users of the site are displayed. And how do I determine if they are users of the site?

    Then to make the separate sites private, I would use something like http://wordpress.org/extend/plugins/buddypress-private-community/ for privacy, which as I can tell checks if the user is logged in. This is not sufficient, I need to check if the user is logged in, and also an accepted member of the site.

    I don’t really know what to do next and if it is a 2 hour job or a 2 month one (or longer…)

    Another approach I had previously tried (and failed with) was:
    – Install WordPress and enable multisite
    – Install Networks for WordPress
    – Create the different networks
    – Install BuddyPress multinetwork plugin
    – Install BuddyPress and activate on each subnetwork

    At this point each BuddyPress install added all current sites from all networks and all users from all existing networks. And I couldn’t get privacy to work at all.

    So if anyone has any knowledge or experience to add I would greatly appreciate the help. And maybe with my notes, someone else might get further than me because I’ve seen many people are interested in similar setups.

    Thanks,
    cereus

    #139606
    modemlooper
    Moderator

    Install this plugin https://wordpress.org/extend/plugins/buddypress-extended-settings

    Has option to turn off setting.

    @mercime just putting remove_theme_support doesn’t work. You have to add it to a certain action.

    marc birkett
    Member

    Hi!

    Thanks for the reply – this wasn’t in the theme so I have enqueue’d it in functions.php but no change. I then installed the default wordpress theme and no change there either….

    Any other suggestions?

    Thanks

    Marc

    #139577
    mrjarbenne
    Participant

    Have you every used Firebug before (it’s a Firefox addon). Install it and then you can inspect which class you are trying to hide.

    That code looks to be for a widget, not a menu.

    Once you figure out what you are trying to hide, download something like this so you don’t have to keep making the change everytime your theme updates https://wordpress.org/extend/plugins/safecss/

    Then put

    whateveryouarehiding {display: none;}

    to hide the menu.

    #139575
    mrjarbenne
    Participant

    You might want to look at something like this: https://wordpress.org/extend/plugins/buddypress-groupomatic/

    #139572
    @mercime
    Participant

    == I have to do more investigation as to whether I can use this plugin with my theme, or how to install it so it is compatible. ==

    @nwweavers we have “template-packed” a number of WP themes for BP compatibility https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes

    Not a repost. First post caused some sort of error and does not display on site.

    The problem: I am trying to display BP profile field data (like a person’s title) along with data like an author’s name on posts they write on the site. I’ve tried everything, spending about six hours now trying to do members loops and trying just about every suggestion I could find here and elsewhere.

    Can anyone help me figure out exactly how to display data from BP profile fields in WordPress posts?

    kristarella
    Participant

    I’m having this same problem; I don’t know how it started, but threads are getting assigned IDs for deleted threads where the recipients are still in the database (same problem that was found in this trac entry https://buddypress.trac.wordpress.org/ticket/3971)

    I don’t really want to hack the core to fix it, I’d rather just do a SQL query to delete any recipients for threads that don’t exist. Are there any caveats in doing this?

    Ooh, I just discovered that all the old messages don’t have a thread assigned, but they should! This happened during an upgrade from a much older version… I wasn’t involved in that process, so I don’t know quite what happened. I think I can reassign the messages their thread number by looping through the thread message_ids… Is it possible to do that with a SQL query or do I have to use PHP to get the IDs out of the array?

    This must be why the new messages started assigning low value thread numbers. Does the new thread take it’s ID from the thread table or the messages table?

    Ok, I got to the bottom of this (sort of).

    My need and request ends up being a duplicated need requested 3 years ago (see https://buddypress.trac.wordpress.org/ticket/501)

    So it looks like we have to live with the static Mystery Man graphic hard coded into BP.

    The work around is to overwrite the BP Mystery Man graphic each and every time you upgrade your BP.

    @mercime
    Participant
    #139537
    David Cavins
    Keymaster

    I made changes to the WP Admin Bar by adding this snippet to my theme’s functions.php file:

    // Customize WP Toolbar
    function change_toolbar($wp_toolbar) {
    $wp_toolbar->remove_node('my-account-forums');
    }
    
    add_action('admin_bar_menu', 'change_toolbar', 999); 

    You can remove any individual li by getting the id of it (in your case the li has the id wp-admin-bar-my-account-forums) and dropping the prefix wp-admin-bar-. The part where you remove the prefix is odd and makes it kind of a secret, but it works. I got the original idea here: http://www.sitepoint.com/change-wordpress-33-toolbar/

    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…

    #31240
    Tim Hyde
    Participant

    Just wondering if anybody has any suggestions.

    I’d like to have a BuddyPress site and allow users to switch language or for user’s browser language to be detected and switch wp/bp language accordingly. I don’t need user content (activity status etc) translating, just the text usually in the .mo file and any wordpress posts/pages/widgets.

    I have tried wpml, polylang and others. Some of these work OK (though not perfectly) for WP standalone but they don’t seem to work at all with BuddyPress.

    Any ideas?

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

    #31238
    ifelsewhat
    Member

    1. Pages on adminbar such as the media component plugin shows blank pages
    2. I went into the admin setting/buddypress/ Setting tab Main Settings section and unchecked Show the Toolbar on buddy and now the toolbar is missing. Where the re enable admin tool bar settings???

    I like the wordpress | buddypress setup but I have issues with theme fixes and blank links after upgrade. The process starts to get bumpy and somethings don’t get updated.

    Can somebody help me resolve these issues???

    Thanks….

    Ben
    Participant

    Howdy,

    I’m running both the latest version of WordPress (3.4.1) and the latest version of BuddyPress (1.6.1).

    I have directed the BuddyPress root to a subdomain of my main site (community.mysite.com) and am attempting to make it so that when a user creates a new blog it is stored in a subfolder (community.mysite.com/userblog). After doing a little research I installed and activated a multi-network plugin (http://wordpress.org/extend/plugins/networks-for-wordpress/). But how exactly to use it and make it work with BP is unclear (to me).

    Digging around in the Codex a little bit showed me that it is possible for my desired structure to be achieved (community.mysite.com/usersite); however, it also seemed to indicate that my WordPress instalation must be in http://community.mysite.com and not http://mysite.com.

    Is there a way to achieve the desired path with the WordPress install in the main site?

    Thanks in advance,
    Ben

    #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

    #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 …..

    #139503
    Tammie Lister
    Moderator

    The proper way is to use enqueue and you can specify location using that: https://codex.wordpress.org/Function_Reference/wp_enqueue_script

    #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

    charlietech
    Participant
Viewing 25 results - 17,101 through 17,125 (of 32,678 total)
Skip to toolbar