Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,576 through 58,600 (of 69,016 total)
  • Author
    Search Results
  • #62556
    Andy Peatling
    Keymaster

    I hope the policy will be changed regarding child themes, since the default theme is bundled with BuddyPress I don’t think there is much of an issue.

    #62555
    Arx Poetica
    Participant

    What is the ratings plugin you’re using?

    #62552
    Arx Poetica
    Participant

    Oh. @Andrea_r –> any way you could point me to that particular Mike Pratt thread?

    #62551
    Arx Poetica
    Participant

    I was having major problems w/ sploggers. The link Chouf1 mentioned totally stopped ’em dead in their tracks. I think I’ve only had one splogger since, and it was a real person just typing it in somewhere in Thailand, trying to up their SEO ranking or something weird like that. :p

    #62550
    Arx Poetica
    Participant

    Dig the theme. Nice work.

    #62549
    Diesel Laws
    Participant

    Thanks so much Andrea!

    Also, just wanted to say that Andy and Andrea, love your work and guidance with heaps of info over time about the Buddypress and WordPress platforms. Your posts have helped me a lot!

    #62548
    Diesel Laws
    Participant

    Ok, it should be all fixed now. Thank you for helping me get it it where it needed to be. Also, just as a note Andy (and anyone else), the above codes do not have the CSS folder in them – they should be –

    /* Inherit the default theme styles */


    @import
    url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );

    /* Inherit the admin bar styles */


    @import
    url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );

    Please re-check this child theme by getting the new version here – http://diesellaws.com/unplugged-a-dark-and-sleek-child-theme-for-buddypress/

    #62546
    Andrea Rennick
    Participant

    zageek – in another thread @mikepratt mentioned he has a small number of required fields. If you just have the default stuff on signup, yeah, you’ll get flooded.

    #62544
    Andrea Rennick
    Participant

    If you want, you can put it up at freebpthemes.com. :)

    #62543
    Andrea Rennick
    Participant

    As far as I know, the theme repo doesn’t allow child themes.

    I’ll also list it over at freebpthemes.com so more people can find it.

    #62542
    Diesel Laws
    Participant

    Oh god, I feel like a dork. Sorry, I have now updated to WPMU 2.9 – it works.

    Ok, everything you said makes so much sense, I will get to changing this right now and get it fixed asap. Thank you for all your help!

    Also, i may need someone else to upload it to the WP repository on my behalf if I cant get it to work – once I have finished fixing it of course.

    #62541
    Andy Peatling
    Keymaster

    Actually there is a bug in your CSS file which is the reason it’s not picking up the bp-default as the parent.

    In your child theme’s style.css you have:

    @import url( ../../plugins/buddypress/bp-themes/bp-default/style.css );

    This should be:

    /* Inherit the default theme styles */
    @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );

    /* Inherit the admin bar styles */
    @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );

    This was totally my fault, and was a mistake in the writeup of how to do it. If you do it this way, you can simply add your style overrides in style.css below those two lines.

    #62540
    Andy Peatling
    Keymaster

    @diesellaws: Are you running WordPress 2.9? The bp-default theme will only be picked up in 2.9+, I’ve just tested and it worked fine for me.

    Mostly what I mean by not copying over the stylesheet is that you should just override the bits you need to change (colors in your case)…

    So in bp-default’s css you might have:

    body {
    background: #fff;
    color: #000;
    padding: 25px;
    margin: 0;
    }

    Instead of copying that entire declaration, all you need to do in your child theme is:

    body {
    background: #000;
    color: #fff;
    }

    That way you are not duplicating anything, and only overriding and changing what you need.

    #62539
    Diesel Laws
    Participant

    Just to clarify/addon to the above: You want me to remove all the css codes from default.css EXCEPT for the things that have changed – e.g the colour codes?

    #62538
    Diesel Laws
    Participant

    Thanks Bowe!

    @Andy – As I am totally new to theme styling I copied all the default.css template over due to the total rework in that file. Pretty much all the colours have changed. if possible, Could someone (or yourself) please modify it so it doesnt load the css twice yet keeps all the same colours of the theme – essentially, the colours are the main things that have changed.

    Yes my instructions do stipulate that as I had many issues with this. When I had the Child Theme linked to Template: bp-default it never registered the bp-default theme in the buddypress plugin area. Then I went to the theme page and it said Stylesheet is missing for the theme. So, then I COPIED the bp-default theme out of the Buddypress plugin area and it automatically worked and registered it. I think its due to the Child theme being in wp-content/themes and the default theme being in plugins/buddypress/bp-themes area.

    Please double check but it does not work without me pulling the bp-default theme out.

    Also I already posted abut the repository above – (In case anyone asks, I have tried multiple times to submit this to the WordPress Extend Themes Depo but it keeps saying it is not a zip file I have uploaded. I have even downloaded Safari JUST to upload the theme with the same error response. So that is why I am hosting it on my website.)

    It wont let me upload the zip file no matter how hard I try and I have tried on firefox, chrome, IE and Safari.

    #62534

    In reply to: BUG in 1.2 rc ???

    MrMaz
    Participant

    This bug was fixed after RC was released.

    https://trac.buddypress.org/ticket/1815

    #62533
    Andy Peatling
    Keymaster

    Looks great! Happy to see people starting to build child themes.

    A couple of things I noticed – you probably didn’t need to copy all of the default theme css into your theme. This will be loaded when you call the @import() call to the default theme CSS. At the moment you are basically loading the CSS twice. You actually only need to override the bits you need. By doing that you will gain CSS updates from the default theme when it updates. So if anything new was added to the default in the future, you would inherit the new styles.

    Also, in your instructions you mentioned you needed to move the default theme to the themes folder. You definitely shouldn’t do this, WordPress will automatically detect it is in the BuddyPress folder. If you move the default then you will never get any updates when BuddyPress updates – it sort of defeats the purpose.

    Could you add this to the WP theme repository? That will allow you to keep track of stats, let people download from within their BP installation, and allow you to provide automatic updates to your theme.

    Nice work!

    danbpfr
    Participant

    This is a wpmu problem who happened also with the first 2.8.x version if i remember well…

    so put it in the wpmu trac

    https://trac.mu.wordpress.org/

    #62527
    Bowe
    Participant

    Great to see a new theme and it looks very polished and cool! I have no use for a dark theme, but I’m sure there are a lot of people who will! Thanks for sharing this with the community :)

    #62526
    danbpfr
    Participant

    Have you read these recommandations ?

    http://www.bp-tricks.com/tips_and_tricks/stopping-the-sploggers/

    They help in many cases. Really.

    #62525
    zageek
    Participant

    Spam is becoming a serious threat to Buddypress. We need to create a dedicated Spam section to help people fight it.

    Ever since I posted my site here in the showcase thread I suddenly had a flood of spam

    #62524
    r-a-y
    Keymaster

    I guess I win the prize! ;)

    Added instructions to keep old user / group avatars:

    https://codex.buddypress.org/how-to-guides/install-buddypress-on-a-secondary-blog/

    Michael (or someone else), let me know if these instructions work for you.

    I have a feeling the absolute path is going to throw some people off… feel free to edit the page!

    #62521
    David Lewis
    Participant

    Very nice job. Server is so slow though.

    #62520
    osasko
    Participant

    Schwoomba,

    Actually figured it out the other day – I think.

    1)Copy registration.php from buddypress parent theme into your own theme.

    2)Paste this into registration.php underneath line 25 (might be different) :

    w<label for=”country”><?php _e( ‘Country’, ‘buddypress’ ) ?> <?php _e( ‘(required)’, ‘buddypress’ ) ?></label>

    <?php do_action( ‘bp_country_errors’ ) ?>

    3) Then install firebug as a Mozilla add-on.

    4) Go to a site who’s registration page has a drop-down list that you want.

    5) Use firebug and right click on the element you want and say “inspect element”.

    4)Say Copy HTML

    5)Then past it into your registration.php under the the lines you pasted in step 2

    Should work.

    You could do this with gender , birthday etc. = Just change “country” in step 2 .

    Actually the first time that I’ve given some advice

    Hope it helps.

    #62517
    Scotm
    Participant

    @thekmen please share. much appreciated.

Viewing 25 results - 58,576 through 58,600 (of 69,016 total)
Skip to toolbar