Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 19,326 through 19,350 (of 31,073 total)
  • Author
    Search Results
  • #109887
    @mercime
    Participant

    Check if your theme’s footer.php has a “ somewhere just before closing body and html tags.

    #109884
    Hugo Ashmore
    Participant

    I’m afraid that you do need the services of a coder really, you can post in the jobs section for some help or as I said earlier try approaching the themes author which really you should try first as they wrote the theme know their code and how to adapt / modify it.

    I’m afraid I no longer help privately on small jobs as they cost too much time, happy to help on support in public posts where I can though.

    #109878
    @mercime
    Participant

    === two themes on the same wordpress install ===

    If you mean use two themes for a single WP install or a single site of a WP multisite install. No. I seem to recall a plugin that was supposed to do that a long time ago, but I doubt if it had even been upgraded nor if it will work with BuddyPress.

    What can be done right now is to create a child theme of bp-default then copy over the “regular” WP pages from bp-default theme into your child theme like index.php, page.php, single.php etc. and call a different header, footer, sidebar and even styling for those specific pages.

    #109865

    In reply to: Search Activity

    juanpons14
    Member

    I got it work with the tutorial in buddydev: http://buddydev.com/buddypress/creating-the-sitewide-globalunified-search-page-for-your-buddypress-theme/
    I just made one function more:

    `function bpmag_show_activity_search(){
    ?>

      User’s activity:

    <?php
    }
    add_action(“advance-search”,”bpmag_show_activity_search”,10);`

    Bye.

    #109864
    Hugo Ashmore
    Participant

    Firstly these are not bugs as such they are styling issues, your column doesn’t descend down as it’s height and border is dictated by it’s content height.

    These matters really are best addressed to the theme author.

    With a voluntary support forum it’s important to remember that the volunteers are not paid to help so it’s best not to flag posts as ‘urgent’ or ‘ASAP’ :)

    If you are going live shortly and are not especially a coder yourself it may be wise to employ one to sort these issues out?

    #109845
    boruchsiper
    Member

    @merciime The tutorials you linked to shows how to make buddypress pages look like the wordpress theme. What I want to accomplish is to have my regular wordress pages have it’s own theme, and use the default buddypress theme (that comes bundled with the plugin) for BP specific pages. In essence I want to use two themes on the same wordpress install.

    #109834
    @mercime
    Participant

    WP/BP versions? Is this a relatively new installation (2 weeks)?

    Check Settings > Privacy of the Blog visited which causes the log out behavior. If you added the “More Privacy Options plugin” or “Network Privacy plugin” the blog might have been set for “Registered users only” etc. which would require log in, hence the forced log-out with wp-login.php.

    Have you tried to disable all plugins except BuddyPress and changed to bp-default theme to check whether conflicts in plugin/theme is causing this error?

    #109829
    José M. Villar
    Participant

    Gee, thanx, never would have figured using bp template pack on my own…
    Even though its last update was more than a year ago ?

    #109827
    @mercime
    Participant

    @el_terko Another approach would be to create a child theme of the Hybrid Framework and install the BP Template Pack plugin where template files for the BP component pages are transferred to your child theme.

    I would think that it would be easier to update the template files from BP Template Pack plugin than to upgrade the whole BP-compatible theme you have right now. In addition, this scenario would allow you to upgrade your Hybrid framewok when available without worrying about the upgrade to the BP template files until the next BP Template Pack upgrade.

    #109825
    @mercime
    Participant

    Use a WordPress theme and install the BP Template Pack plugin where you have to change HTML structure to use your WordPress theme’s HTML structure.
    https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
    https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/

    edinchez
    Participant

    Okay, as there was no archive.php file in the BP-Columns theme folder, I copied the one from the default BP theme and just added this line in it:

    ` `

    It worked, but now the category page isn’t full width like the pages. How can I fix that?

    hmarshall
    Member

    Hi @dwenaus

    Please could you tell me which file I have to insert this in as I’m very new to BP? I have a child theme based on the default theme.
    Thanks

    Paul Wong-Gibbs
    Keymaster

    The style’s just missing from BP-Default 1.2.x. We’ve fixed this in the upcoming 1.3 version. In the interim, you’ll just need to figure out what div or ul elements need indenting, and add some margin.

    #109773
    Paul Wong-Gibbs
    Keymaster

    Probably caused by Template Pack being out of date. Can you create groups etc if you revert to BP-Default theme?

    Paul Wong-Gibbs
    Keymaster

    Not aware of any current issues regarding this. We have fixed a situation where when a private group’s member could favourite an item, which then any other site member could view that single item by going to the group member’s profile and viewin their favourites. This is going to become BuddyPress 1.2.9 this weekend.

    If you think you’ve found an issue, please consider any conflicts with other plugins (or by using any theme other than BP-Default) and give clear instructions how to recreate.

    #109732
    MeisterYoda
    Member

    sorry… i forgot.
    The error also exists in case i deactivate buddypress und change to wp default theme.

    #109724
    hmarshall
    Member

    Ok this is the code I’ve added:

    ul#nav {
    border: 3px solid #ffffff;
    border-width: 2px 2;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-topright: 6px;
    -webkit-border-top-right-radius: 6px;
    background: #98AFC7;
    font-size: 11px;
    }

    ul#nav li {
    display: inline;
    float: 0px;
    margin: 0px;
    font: 11px normal “Tahoma”;
    font-weight: bold;
    }

    ul#nav li a {
    float: left;
    padding: 5px 10px;
    color: #003366;
    border-right: 2px solid white;
    border-left: 2px solid white;
    background: none;
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    }

    ul#nav li.selected a, ul#nav li.current_page_item a {
    background: #151B54;
    color: #ffffff;
    }

    ul#nav li a:hover {
    color: #151B54;
    background: #ffffff;
    }

    It seems to work. I’ve just added it in my new child theme css file underneath the “inherit default theme…” stuff. Does all that look ok?

    I wasn’t able to work out how to remove the border underneath, if you’re able to help?

    #109713
    @mercime
    Participant

    You’ve got to adjust the code based on the selectors you’ve got in your theme:

    So in your style.css file within your child theme’s folder, add this after the lines already there:

    `ul#nav {
    border: 1px solid #625e00;
    border-width: 1px 0;
    background: #000066;
    }

    ul#nav li {
    display: inline;
    float:none;
    margin: 0px;
    }

    ul#nav li a {
    float: left;
    padding: 9px 11px;
    border-right: 1px solid white;
    background: none;
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    }

    ul#nav li.selected a, ul#nav li.current_page_item a {
    background: #000000;
    color: #ffffff;
    }`

    Again, adjust to taste.

    #109699

    @alan, good to hear that. will be waiting for those themes

    #109694
    Alan
    Member

    nice ,I’m gonna share some cool themes soon,hope till next week to finish my framework :)

    #109690
    chouxpastry2002
    Participant

    superb GUI if the the facebook gonna migrate to this one it wud be superhit in future.

    guys please someone initiate this theme for buddypress. I would love to support project.

    #109681

    In reply to: BuddyPress Is Free

    r-a-y
    Keymaster

    Yup, BuddyPress will always be free! If you paid for it, try and get a refund ;)
    There will never be a paid version.

    However, there are some 3rd-party premium themes and plugins that you can add to BuddyPress, which will cost a bit of moolah.

    #109678
    hmarshall
    Member

    That’s great, thanks mercime.

    So I just add this code:

    .solidblockmenu{
    margin: 0;
    padding: 0;
    float: left;
    font: bold 13px Arial;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1em;
    border: 1px solid #625e00;
    border-width: 1px 0;
    background: black url(media/blockdefault.gif) center center repeat-x;
    }

    .solidblockmenu li{
    display: inline;
    }

    .solidblockmenu li a{
    float: left;
    color: white;
    padding: 9px 11px;
    text-decoration: none;
    border-right: 1px solid white;
    }

    .solidblockmenu li a:visited{
    color: white;
    }

    .solidblockmenu li a:hover, .solidblockmenu li .current{
    color: white;
    background: transparent url(media/blockactive.gif) center center repeat-x;
    }

    As I’m a complete novice, is there any chance you could tell me which file i’d have to put that in? I want it to appear in exactly the same position as the default theme menu. Do I do anything with the html code in that link?

    Cheers
    Harry

    #109660

    I have a similar issue – two columns are below BP content – how do I bring them in line with the content? I’m using Linux (Ubuntu) with Chrome, just uploaded WP 3.1.1.

    http://www.madinmelbourne.com.au

    Sliding door is the theme I’m using, I’ve gone thru the compability instructions and am stuck with finding where the BP ‘directory’ is. Anybody willing to step me thru the process?

    #109638
    hmarshall
    Member

    ok i just did that – great thanks.

    You dont happen to know how to change the notification email origin do you? Mine says noreply @www.mysite.com and i dont want the www. to appear

Viewing 25 results - 19,326 through 19,350 (of 31,073 total)
Skip to toolbar