Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,976 through 21,000 (of 22,658 total)
  • Author
    Search Results
  • #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/

    #51719
    oriste
    Participant

    You might want to try the Maintenance Mode plugin at https://wordpress.org/extend/plugins/maintenance-mode/

    #51714

    When it’s ready, it’ll be available through the BuddyPress/WordPress theme repo, so everyone can have at it.

    You could modify the home.php file and rip out all the extra code. Home.php will always act as the front page of your website, regardless of your WordPress settings.

    #51706

    In reply to: BuddyBar for bbPress

    Lriggle
    Participant

    @ John James Jacoby

    Thanks for the info! I’ve verified that all my Keys and Salts are the identical, and double checked that the deep integration code given here (https://wordpress.org/extend/plugins/buddybar-in-bbpress/installation/) has the correct path.

    I’m not sure where else to check for cookie issues.

    I’ll look into the redirection plugins for my other issue.

    Thanks!

    #51687
    pxlgirl
    Participant

    All right, I got it. bp must be always in the parent directory:

    mydomain.org/wordpress-mu/

    Pheeew. :)

    #51682
    pxlgirl
    Participant

    Quick update:

    After activating the theme on the first blog, it still shows the same error msg.

    my structure looks like this:

    /wordpress-mu/firstblog/

    /wordpress-mu/secondblog/

    /wordpress-mu/community -> where bp should run

    r-a-y
    Keymaster

    Add your register_sidebar() functions code from your existing WordPress theme’s functions.php file to your BP Member theme’s functions.php file.

    Then your WordPress sidebar should show up.

    ^

    #51658
    Korhan Ekinci
    Participant

    I am using it here at: http://duvar.fenerbook.com

    I had to get rid of the “blog authors” link from the adminbar, because of too many authors and also page loading was slow.

    I have the wordpress video plugin (enabled site wide) which works well with p2 theme and member blogs as well!

    http://www.daburna.de/blog/2006/12/13/wordpress-video-plugin

    Hope it helps.

    #51654

    In reply to: New Page Selected

    Paul Wong-Gibbs
    Keymaster

    This is not a BP question, but a WP theme question! A quick Google of that function took me to https://codex.wordpress.org/Template_Tags/wp_list_pages.

    Five minutes reading revealed:

    All list items (li) generated by wp_list_pages() are marked with the class page_item. When wp_list_pages() is called while displaying a Page, the list item for that Page is given the additional class current_page_item.

    So, apply a style to .current_page_item.

Viewing 25 results - 20,976 through 21,000 (of 22,658 total)
Skip to toolbar