Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 21,001 through 21,025 (of 22,693 total)
  • Author
    Search Results
  • #51992
    r-a-y
    Keymaster

    Hey gyonis,

    For #1:

    You’ll want to turn off blog registration and also set the default user role in WPMU to be “author”; that way everyone will be able to make a post on the root blog.

    You can do this by going into your WPMU admin area and navigating to “Site Admin > Options”. Set “Allow New Registrations” to “Only user account can be created”. And set “Dashboard User Default Role” to “Author”.

    For #2:

    You’ll want to use some type of customized post screen plugin such as Flutter or my personal favorite Custom Field Template.

    That should get you going!

    You might also want to read this thread which talks about how to create a community blog.

    #51990
    Paul Wong-Gibbs
    Keymaster

    The reason you have not found much on this on these forums, is because this questions are in WPMU’s domain. Have a search on their forums as these components aren’t provided or controlled by BuddyPress.

    #51980
    David Lewis
    Participant

    Yah… always best to use unordered lists for navigation. It just makes the most sense semantically speaking. Once you have your navigation being output as nested lists… there are any number of CSS/JS solutions to hide the nested lists and turn them into drop downs. The most lightweight solution is the old tried and true suckerfish menu… which is pure CSS with just a teeny tiny bit of javascript code to make it work in IE. But since jQuery is already included in WordPress… may as well go with something a little more fancy… with a mouseout delay… etc.

    #51977
    r-a-y
    Keymaster

    You’ve probably already tried removing and re-adding the Text widget, right?

    The default text widget should always work… but you should check out the WordPress forums to see if anyone has a similar problem, since it’s more of a WP issue than a BP thing.

    Do any other tags work besides P and BR in the Text widget?

    One other thing to note is if you have any filtering plugins activated, that could affect the widget output, but it’s highly unlikely.

    #51975
    dwpers
    Participant

    Oh ok. Do you know why the text/html widget that also comes with wordpress does NOT work as intended? It won’t even include the automatic p tags when enabled.

    Thanks DJPaul

    I’m running WPMU 2.8.4a and BP 1.03.

    #51967
    peterverkooijen
    Participant

    Here is a clearer example.

    jQuery comes with WordPress, but remember to change $ to jQuery in the javascript, like this:

    jQuery(document).ready(function(){
    jQuery('li.headlink').hover(
    function() { $('ul', this).css('display', 'block'); },
    function() { $('ul', this).css('display', 'none'); });
    });

    It’s to prevent clashes with other javascript libraries.

    #51960
    r-a-y
    Keymaster

    Hey chargertech,

    I’m guessing BuddyPress wouldn’t work for a sub-blog on WPMU, which is what I’m guessing you want it for.

    You could try defining the BP_ROOT_BLOG in /plugins/buddypress/bp-core.php to the blog ID in question, that could work… although I’m not entirely sure.

    You could also try Alkivia as an alternative – https://wordpress.org/extend/plugins/alkivia/

    #51940
    cpkid2
    Participant

    actually the log out problem is gone now. the only problem i have is that users don’t get the registration/activation email. here are the answers.

    1. Which version of WPMU are you running?2.8.4

    2. Did you install WPMU as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgraded from a previous version of WPMU? If so, from which version? no

    5. Was WPMU functioning properly before installing/upgrading BuddyPress? don’t know, i installed both one right after another

    6. Which version of BuddyPress (BP) are you running? 1.0.3

    7. Did you upgraded from a previous version of BP? If so, from which version? no

    8. Do you have any plugins other than BuddyPress installed and activated?

    -ajaxed wordpress

    -akismet

    – all in one seo pack

    – contact form 7

    – events calendar

    – google xml sitemaps

    – login with ajax

    – more privacy options

    – page links to

    – register plus

    -remove buddypress admin bar

    – sociable

    -tweetmeme button

    – wordpress database backup

    -wp postratings

    9. Are you using the standard BuddyPress themes or customized themes? customized

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

    13. Please provide a list of any errors in your server’s log files. how do i check?

    Also, I don’t know if this is relevant but hosting is through GoDaddy.

    #51922
    Jeff Sayre
    Participant

    How can i enable intensedebate plugin for all the blogs sitewide.

    Looking at the WP plugin repository for this plugin, it does not indicate that it is meant for WPMU.

    Doing a quick Google I found this discussion on the IntenseDebate blog:

    New Customization Options

    Go 7 or 8 comments down and you’ll see this reply from Beau Lebens:

    BuddyPress runs on a WPMU install, and ID is currently in use on a number of WPMU sites. There’s currently no way to “auto-activate” it for every blog created, but you can definitely activate it (and go through the install process) for each different blog you create on a WPMU install.

    #51921
    Jeff Sayre
    Participant

    First, always read the “readme.txt” file before proceeding with any WPMU or BuddyPress upgrade.

    Before installing BuddyPress from trunk, you need to make sure that you are running WPMU 2.8.4a. If not, you need to deactivate all WPMU plugins, upgrade WPMU, and then try again. The latest WPMU version can be found here.

    Once you’ve installed BuddyPress, make sure you move the theme files into their proper location.

    #51903

    That’s a good question. Can you login with your old account on any other *press website? bbpress.org, wordpress.org, etc?

    #51871

    In reply to: BuddyBar for bbPress

    Sven Lehnert
    Participant

    There is a bug in the deep integration script

    if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

    define( ‘WP_USE_THEMES’, false );

    include_once( ‘/your/absolute/path/to/wordpress/wp-blog-header.php’ );

    header( “HTTP/1.1 200 OK” );

    header( “Status: 200 All rosy” );

    It looks like everything is working fine, but a user from the german buddypress forum ( mt ) find out, that wordpress overwrites the buddypress header and so there comes header 200 back and often it is a 302 or even a 404.

    this is the new script from mt.

    if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

    define( ‘WP_USE_THEMES’, false );

    include_once( ‘/your/absolute/path/to/wordpress/wp-config.php’ );

    $wp->init();

    $wp->register_globals();

    I post it hire because I think it must be interesting for everyone. In fact it is really important for seo and the german forum is far away from hire…

    #51866
    Jomark
    Participant

    You just use this very light plugin, http://www.matteoionescu.com/wordpress/embed-html/ or https://wordpress.org/extend/plugins/custom-fields-shortcode/ . I have used the latter.

    It makes use of the custom field in embedding videos.

    #51845
    pxlgirl
    Participant

    Hi,

    I get this error msg after setting up bp-custom.php and editing the register.php:

    Warning: Cannot modify header information – headers already sent by (output started at /blah/wordpress-mu/wp-content/mu-plugins/bp-custom.php:1) in /blah/wordpress-mu/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-signup.php on line 5

    What went wrong here?

    pxlgirl.

    #51839
    takuya
    Participant

    Profile visibility is discussed many times, and there’re even profile plugin and bp-custom hacks to keep privacy. Do search the topics.

    User registrations… this is not really a buddypress thing. WordPress is lacking user management function, and I understand your frustration. However using plugins you can force users to answer certain question, otherwise user is not registered.

    #51836
    owencutajar
    Participant

    The “modifying the WordPress bar” tutorial says

    “Any custom code that we create can be placed in a file called bp-custom.php. It gets loaded with all the rest of bp automatically by bp during each page load. If you don’t have one already then create one in /plugins/buddypress.”

    #51820
    Alex Cragg
    Participant

    OK, done that. I’m now getting an error after the first creation screen, and this error in my logs

    WordPress database error Unknown column ‘avatar_thumb’ in ‘field list’ for query INSERT INTO wp_bp_events ( , referer: http://domain.com/members/admin/events/create/

    It appears as though the plugin isn’t creating that field in bp-events.php, I can’t find any reference to it anyway, and then in bp_events_classes.php, avatar_thumb and avatar_full have commands to have information inserted into them in the save() function.

    I added the necessary lines to add those fields in the sql create and everything works…

    #51812
    Jeff Sayre
    Participant

    Read through this WPMU Codex article on changing your site URL. It should provide the assistance you need.

    #51802

    You could make a custom login page with BP trunk like…

    define('BP_LOGIN_SLUG', 'login');
    function bp_show_login_page() {
    global $bp, $current_blog;

    if ( $bp->current_component == BP_LOGIN_SLUG && $bp->current_action == '' ) {
    bp_core_load_template( 'registration/login', true );
    }
    }
    add_action( 'wp', 'bp_show_login_page', 2 );

    Then put a template file named “login.php” in your frameworks registration folder and steal some code from the buddypress login form to help with getting started…

    There’s a few examples online on how to redirect the WordPress login page with .htaccess. Could give that a shot too?

    #51776
    peterverkooijen
    Participant

    This is going nowhere. I’ll just hack core file; replace wp-login.php and wp-admin/profile.php with copies on login.php and account/profile.php (?) and then search/replace all links.

    I f***ing hate WordPress registration/member management!

    #51769

    In reply to: New Groupblog Plugin

    Mariusooms
    Participant

    – is it possible with BP to disable the “Wire” ?

    Yes…this can be disabled per group at the group creators discretion.

    – is it possible to use P2-theme in your “Group-blog” ?

    I don’t know, I have not use the P2 theme yet, but I imagine it should be no problem.

    – are there any language-related wording in your plugin (at the user-interface) which need to be translated when I would like to run your plugin for a german-language-website ?

    Yes, a language file is included which you may translate using the wordpress guidelines.

    #51747

    In reply to: New Groupblog Plugin

    abcde666
    Participant

    @Mariusooms

    – can I have a Group-Blog instead of the BBPress-Forum ?

    – I would like to disable User-Blogs for each single user, but instead have a Group-Blog using P2-theme. Does this work with your plugin ?

    – Is your plugin compatible with BP-version 1.1 ?

    – what is the difference from your Group-Blog-plugin compared with the one from Burt ?

    https://wordpress.org/extend/plugins/bp-community-blogs/

    Many thanks,

    #51735
    Jeff Sayre
    Participant

    Are you using the BuddyPress Skeleton Component as the framework with which to code your plugin? If not, you should download it and see how the example code that adds an admin page to WPMU’s backend is written.

    The example code is in bp-example-admin.php.

    #51728
    Kunal17
    Participant

    Is there a series of tests that we can perform to make sure that the WPMU+Buddypress upgrades have completed without any damages? WordPress says all upgrades went off well but I am still concerned about finding problems later.

    #51722

    In reply to: New Groupblog Plugin

    Mariusooms
    Participant

    The new feature to select an existing blog is now available. We also fixed some other bugs.

    There is only one (known) bug left, which we will squash on Monday. Namely member roles are not set upon creation, but they are set when saving the 2nd time around form the admin as explained in the readme.

    https://wordpress.org/extend/plugins/bp-groupblog/

Viewing 25 results - 21,001 through 21,025 (of 22,693 total)
Skip to toolbar