Skip to:
Content
Pages
Categories
Search
Top
Bottom

Set a default template for blogs


  • korbn
    Participant

    @korbn

    Hi everybody,

    My question may seem stupid, but I can’t figure out how to set a default template for all the blogs. I would like all new blogs to automaticaly use my own buddypress template and not the wordpress default theme. How do I do such a thing?

    Thank you,

    Korbn

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

  • mfgmk
    Participant

    @mfgmk

    the quick and dirty way would be to go to wp-content >> themes and rename the theme you want to use ‘default’ (you can rename or delete the actual ‘default’ one when you do this)


    korbn
    Participant

    @korbn

    Thanks for the answer.

    That might cause a problem at every upgrade. I would prefer to avoir such a thing. Is there a none-quick and none-dirty way?


    Mohit Kumar
    Participant

    @mohitkr05

    there is a plugin download from here

    wpmudev.org

    plugin name is default blog templates..that will do

    Yes, this is a WPMU question. Use what Mohit suggested or search the WordPress plugin repository.


    korbn
    Participant

    @korbn

    Unfortunately, this plugin doesn’t exist or have its name changed :(

    Default settings for new blogs for WPMU plugins DO exist. Again, this is nothing to do with BuddyPress. Look on the WPMU forum.


    Boris
    Participant

    @travel-junkie

    function change_template( $blog_id )
    {
    switch_to_blog( $blog_id );
    update_option('template', 'bp-sn-parent');
    update_option('stylesheet', 'YOUR_TEMPLATE_NAME');
    }
    add_action( 'wpmu_new_blog', 'change_template' );

    put the above code into your bp-custom.php file and it’ll use the template you specified instead of YOUR_TEMPLATE_NAME.


    korbn
    Participant

    @korbn

    Thanks a lot, this solution is really helpfull and so easy to implement.


    gazouteast
    Participant

    @gazouteast

    DJPaul – I fear you are wrong – this is EVERYTHING to do with buddyPress – BP KILLS WPMU themes when that pig of a 1960’s ice cream parlour decor known as bp-sn-parent and it’s cantankerous child bp-default take over the entire site.

    The plugin “Default Blog Templates” is available from the WPMU Plugins repository but the “bluddypress” default theme also kills the settings in that, and takes control of the blog admin pages too, such that saved drafts cannot be previewed and the top left button to “visit site” simply returns the user back to the blog admin dashboard.

    I don’t know if this is specific to just v1.1.2 on WPMU 2.8.4a but it’s getting closer to a rip-out and ditch for BP for me. At least WPMU was working and ready for custom development before BP went in.


    deniscarr
    Participant

    @deniscarr

    Thanks Travel-Junkie!

    Trying to implement this instead of making new users switch themes.

    One silly question (sorry I’m a newbie):

    – when replacing “YOUR_TEMPLATE_NAME” in the code, do I use the folder name for my member’s theme (in my case “bp-default_members”) or do I use what I’ve called it as “name” in the CSS

    Thanks!


    Boris
    Participant

    @travel-junkie

    @deniscarr

    it’s the name of the folder holding all your theme files

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Set a default template for blogs’ is closed to new replies.
Skip to toolbar