Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 17 replies - 1 through 17 (of 17 total)
  • hi, I’ll make you a tutorial.

    Hi, it’s made to work with the profile privacy plugin.

    Hi,
    here is the download link. download

    @knova15 Sorry for the delay tomorow i’ll put the download link.

    @funmi omoba witch gallery are you using? if you are using bp-gallery i can give you the code for the page.

    @roxor Thanks. Now i’ll fix it.

    Sorry for my minimal english :)

    @knova15 I think in a week and it will be ready (need to test some things). I’ll give you the instruction inside.

    @mmward43 Hi, sorry can’t help you. I’m using a different plugin for the gallery (bp-gallery made by sbrajesh).

    @knova15. I created a child theme. I still have to finish the theme options page. When i finish it, I will put the link for the download.

    @mmward43. witch gallery component are you using?

    I duplicate the error using a friends widget ( displayed_id ).I have the same error with BP User Profile Map using the friend widget (it displays a random map). wp 3.3.1 and bp 1.5.4

    did you add?:

    add_action( ‘wp_print_styles’, ‘bp_dtheme_enqueue_styles’ );

    You often get this problem if you put spaces/whitespace after the end of what should just be a code file.

    So, for example, at the end of functions.php if you have:

    // PHP code

    ?>

    CRLF

    CRLF

    That will cause the warning above (CRLF is, of course, so you can see I mean carriage return!).

    The best way to solve this is NOT to close the PHP in all code files – ie remove the last

    ?>

    The reason this happens is that the carriage returns get treated as part of the HTML output and so get written to the response stream – ie starting to write the headers. However, functions.php (and lots of other files) get processed before some header work is done – hence the problem.

    So, the answer is always from the last ?> from any “code only” file.

    add this in your function.php

    // Add main CSS
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {}
    endif;

    wp_enqueue_style( ‘your-child-theme-name-main’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );

    Thanks modemlooper :D that was it

    if you search directly digiting the url from the bar ex: http://buddypress.org/?s=child+theme it won’t find anything plus the sidebar on the right goes on the footer. (sorry for my bad english)

    Great!

    Thanks! now the theme its compatible with bp 1.5. features are: slider on home page, php widget, search widget. poker offers widget, social widget, login widget. header with widget area, footer with 4 widget area, home page fully customizable with 4 widget areas.

    BuddyPress Groups Extra not fully compatible.. testet on debbug mode

    here it is installed on a poker community with a few mod http://pokeritaliaclub.tk/

    Hi,
    I’m using the_excerpt . It work’s if I post the article manually, but it don’t if I use an autopst plug.

Viewing 17 replies - 1 through 17 (of 17 total)