Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 20,176 through 20,200 (of 31,072 total)
  • Author
    Search Results
  • #103281
    hoenera
    Member

    I’ve fixed the same problem in my buddypress child theme.

    I put a copy of header.php in the child theme and replaced the line:

    `

    <a href="” title=””>

    `

    with this one

    `

    `

    Seems to work.

    #103270
    Andrea Rennick
    Participant

    “how to disallow bots to follow signup link?”

    Put a nofollow, noindex on it, right in the theme where it is linked. And change the default text that is linked. If you look at your access logs and your visitor stats, you’ll see they basically google for you.

    r-a-y
    Keymaster

    You can modify the registration template to remove the blog creation checkbox.

    If you’re using the bp-default theme, create a child theme and then copy over /bp-themes/bp-default/registration/register.php to your theme.

    Change this:

    `

    <input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1" checked=”checked” />

    `

    to:

    Next, change:

    `

    `

    to

    `

    `
    #103261
    @mercime
    Participant
    #103246

    In reply to: Facebook Like

    Sven Lehnert
    Participant

    Sorry guys, the forum is eating my php. Get the snippet from here: http://themekraft.com/groups/snippets-general/snippets/single/5/

    pcwriter
    Participant

    @thealchemist @zkwc @djpaul

    Hurray!

    The code snippet works just fine in functions.php. That’s good news for a theme designer: no worries about a theme overriding a user’s custom configurations in bp-custom.php.
    Now I’m off to add “Group Landing Page” as an option in my new theme. It’ll be incorporated with the theme’s “Alternate Header” option too.

    Then I’ve got to adapt the code to work with member profiles. My initial attempts have failed, but I’ve been known to be persistent at times ;-)

    For future reference, here’s the code snippet to add to functions.php or, if you have created it, bp-custom.php.
    You can see it in action here: http://rspacesandbox.org/ Click any group.

    `function redirect_groups_to_forum() {
    global $bp;
    $path = clean_url( $_SERVER );
    $path = apply_filters( ‘bp_uri’, $path );
    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
    }
    add_action( ‘wp’, ‘redirect_groups_to_forum’ );`

    Paul Wong-Gibbs
    Keymaster

    pcwriter
    Loading that constant has to be done early; I’m not sure without looking if bp-custom.php is early enough or not. If it is, great. I would recommend against overwriting that file from a theme, however. A end-user may have used it to configure settings which would be lost when you overwrite the file.

    pcwriter
    Participant

    @thealchemist @zkwc

    This is a great find! I asked that very same question not too long ago:
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-profile-the-default-tab-without-editing-wp-config/

    Even posted an enhancement suggestion in trac where I was led to believe it can’t be done.
    https://trac.buddypress.org/ticket/3007

    Now I find the reference in the link supplied by @zkwc and, lo and behold, it looks like it CAN be done.

    I can’t wait to test this out in my new BuddyBuilder theme framework.
    If it works well, I’ll incorporate the idea in so users can select ANY one of the default subnavs as group home.

    #103161
    Xevo
    Participant

    Perhaps it’s just your browser settings?
    Your theme has weird markup?
    Or even your settings on your pc/mac.

    No one’s answering since they haven’t had it before, so it’s not a buddypress problem, meaning that it’s probably a problem from your side.
    Which makes it hard to figure out. And most of us don’t give a …. since it’s not buddypress related.

    Harsh? Yeah, but your on your own mate. Try changing settings and validating your markup.

    #103156
    finni3
    Participant
    #103151
    modemlooper
    Moderator

    I searched and didn’t find but I swore someone had created a WordPress theme to look like bp-default @Andrea_r

    #103143
    Andrea Rennick
    Participant

    Basically, to clarify: you only need to use a BuddyPress theme on the main site where Buddypress is activated. On the user blogs, just use a regular wordpress theme.

    #103141
    modemlooper
    Moderator

    A simple solution if you want all added sites to use same name is to type the name in the header.php title instead of calling it from database.

    #103128
    imjscn
    Participant

    Great FunkyBuddy! It looks having a New Year celebration :-)

    #103114
    eltiki
    Member

    Modemlooper, thanks. I now understand. I can’t run a social network within a social network. That makes sense, actually. Again, thanks for the help. Antonio

    #103107
    modemlooper
    Moderator

    When you create a new site it’s basically it’s own thing but shares user login. You can also share plugins and themes but you can’t have buddypress run on every site. BP runs on only one blog on your multisite install.

    #103105
    eltiki
    Member

    Thanks for your reply. I’m new to creating a BuddyPress network of blogs. I was under the assumption that when I create a network and then add sites, that each site would be customizable. It seems to work with wordpress’ default theme, but not BuddyPress. Is this a bug, or is there something in the initial setup for the network that I need to enable so as to have the option of customizing each individual site? Thanks in advance for any help. Antonio

    #103103
    @mercime
    Participant

    @MrNiceGuy2 unfortunately the page you linked to in first post now goes to required registration page. Looking back to your first post == How do I edit these pages!? ==

    When you go through the BP Template Pack process, 13 files in 6 folders are transferred to your active WP theme and those are the files you need to revise, and not the template files in BP Template Pack itself.

    #103101
    pcwriter
    Participant

    I just started putting together some template packs for popular plugins to get them working seamlessly with all the features in BuddyBuilder.

    So far, we have template packs for BP-Gallery and Buddypress Links, and have a suggestion for Jet Event System. Need to update the BP-Links pack to v0.5 though, hadn’t seen that update til now :-(

    If you have a plugin in mind you think should be supported in BuddyBuilder or BuddyLite, please let me know :-)

    #103097
    ScottWatson
    Member

    That looks about right – but I think I’m not explaining myself properly. I have already managed to get the Mr Profile section to appear on the Nav Bar y inserting the initial code I provided into my themes header.php, but I also want to have the Inbox option appear in the Nav Bar also as a seperate entity. However I am not sure how to change the initial code that I provided to point towards the Message Inbox instead of a Users Profile page.

    #103094
    ScottWatson
    Member

    I am using the jarrah custom theme, that I adapted to work with BuddyPress using the BP Compatibility plugin. However the themes appear to be fairly similar in the back end with regards to this particular change, as the code provided above is supposed to work with the default theme, and I didn’t alter it at all from its original form to get it to work on the custom theme.

    #103093
    Virtuali
    Participant

    Got it.

    Now what I need to know is if your using a default theme, or custom theme.

    Doing this could simple as transferring some code snippets from bp-core/adminbar.php, but I am not extremely code savy myself :)

    #103092
    ScottWatson
    Member

    I want to get rid of the admin bar altogether and place some of the items from the My Account menu onto my themes Nav Bar – please excuse the terms if they are incorrect; still learning!

    #103066
    modemlooper
    Moderator

    If you open the header.php file you can see that 2010 theme and bp-defaut are calling two different site names. I don’t think this will work but you can try to add bp_site_name() instead of what 2010 uses bloginfo( ‘name’ );

    The problem is new sites are not BuddyPress sites they are just using the same WordPress database as the main site. So new sites have their own names and such.

    #103053
    Bowe
    Participant

    NL: Wat werkt er precies niet? krijg je een foutmelding in de members widget, als je op Newest | Active | Popular klikt?

    Je moet eerst meer informatie geven anders kunnen we je niet helpen. Wat voor WP versie gebruikje, welke versie van WP en wat voor Theme?

Viewing 25 results - 20,176 through 20,200 (of 31,072 total)
Skip to toolbar