Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 56,651 through 56,675 (of 69,016 total)
  • Author
    Search Results
  • #67752
    Hugo Ashmore
    Participant

    The new bp-default is already a MAJOR change in a good way since the old BuddyPress theme btw. The old theme was littered with empty clearing div’s.

    Agreed out of the box the new default theme is a vast improvement and there are pages that validate fully – that’s not to say all the markup is as good as it could be with the odd div used to present data when a div carries no semantic value and shouldn’t really ever wrap plain text, many of the divs used that way perhaps ought to be paragraph tags or LI elements, and there are still the odd clearing div used (just happened across one on blog listing page)

    #67751
    Paul Wong-Gibbs
    Keymaster

    I’m going to mark threads which I’ve looked in green, by the way.

    EDIT: The ideas subforum doesn’t seem to have this feature, so I can’t do this

    #67749
    Xevo
    Participant

    Finally a buddypress user gallery plugin that’s free and works with 1.2.

    Just a question though, will it work with wordpress single, or isnt it tested with it yet?

    I’ll do the Dutch translation by the way. :)

    #67748
    Hugo Ashmore
    Participant

    Thanks for reporting that broken LI tag. I am going to make sure that is fixed for the next release. I am surprised that its not causing anyone problems, weird.

    Ah there’s a prime example of the tag soup rendering engine at work, shame to say. It’s unlikely that it would cause problems as it would be apparent to browsers what needed silently correcting as opposed to invalidly nested markup preventing CSS from being able to compute where to apply it’s properties correctly for example.

    I Just though it worth mentioning for the record that all appears to function correctly with PHP 5.1.6

    I do find it a shame that the new version ‘almost’ works in backwards compatibility mode, it’s so almost there :)

    #67745
    Paul Wong-Gibbs
    Keymaster

    I’ll Collect them all up

    #67744
    idotter
    Participant

    Should we mention our ideas/wishes here or will you collect them?

    #67741
    MrMaz
    Participant

    @hnla

    Thanks for reporting that broken LI tag. I am going to make sure that is fixed for the next release. I am surprised that its not causing anyone problems, weird.

    The PHP 5.2 requirement is based on me developing it on 5.2. WP ships with some compatibility functions for people running older versions of PHP, but since I am not testing my plugin against the compat functions, then I don’t feel comfortable supporting older PHP versions “officially.”

    @kimsoler

    I just tested this myself and did not have any problems. Can you be more specific about what exactly is happening?

    #67737
    Paul Wong-Gibbs
    Keymaster

    The Forums are bbPress, so you’re going about it in the correct way. Obviously you’ll need to create BP Groups for each existing forum and then update the forum IDs in the Groups database table. What sort of problems are you having?

    #67728
    xfreme
    Participant

    @elaineskapetis plz share , kindly regards

    #67727
    stwc
    Participant

    Good stuff!

    #67725
    Paul Wong-Gibbs
    Keymaster

    Today I am going to make a list of all of the ideas on this forum so that we can get them to go into a poll.

    #67722
    elaineskapetis
    Participant

    Hi

    I made last week one template with 3 columm.I edit the default Theme and it’s function

    I make this because i need in the left side the normal BP widgets and the right I gonna put feeds,news and may be videos link

    #67721
    Nick Watson
    Participant

    I posted the ticket here:

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

    #67717
    Nick Watson
    Participant

    @Mark Schafer, and anyone else

    Oh okay, I actually hadn’t tried out the multi select box yet.

    I have that issue as well! It only displays the last one I’ve selected exactly as you said.

    And I just tested this from scratch.

    Installed wordpress mu 2.9.2, installed buddypress 1.2.1, and tested each of the fields and the error occurs for each of the selection fields, (except for the multi select box which does as Mark Schafer stated)

    have you made a ticket?

    #67714
    r-a-y
    Keymaster
    #67707
    sakthig
    Participant

    MediaTemple is the best choice for wordpress related hosting needs it also suits for Buddypress also

    If you are not afford thier package then you may go for HostGator , i found it the best one after mediatemple for Buddypress hosting

    #67696
    Anointed
    Participant

    idea —

    I am using this to setup my default buddypress theme for group blogs. I also use the woo navigation system on my theme (3.0 has it). Would it be possible to import the navigation settings as well?

    I could do some digging around and find the database information if that helps.

    Boone Gorges
    Keymaster

    I submitted a trac ticket https://trac.buddypress.org/ticket/2099 that will allow you to filter the output of bp_has_blogs. Once that goes in, it’ll make this sort of thing a bit less hacky – you can actually set up an exclude array in a plugin, and filter the blog list accordingly.

    r-a-y
    Keymaster

    @daveburdick

    Your question isn’t really related to this thread.

    But to answer your question, the “Site Wide Activity” does not exist in BP 1.2 I’m afraid.

    It should be quite easy to recreate it though using the activity loop:

    https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/

    r-a-y
    Keymaster

    I’m closing this thread because it’s related to this one:

    https://buddypress.org/forums/topic/email-notification-not-working

    #67668
    Xevo
    Participant

    I have quite a list.

    – Database which allows users to add to it and comment/give their opinion about, basically something like imdb.

    – The many questioned gallery plugin, I’m working on a non-profit project right now, so I’m not paying for anything.

    – Invites plugin, make your users invite other users through importing their im list for example.

    – Start user plugin, a plugin which tours people around the site and let them do certain things For example by letting them do 5 steps, and through a percentage meter, tell them how many steps they’ve done. This will make it easier for users to see what they can do on your site and how stuff works.

    – Forum inside buddypress thats not linked to groups.

    That’s probably not even all the stuff I would want for Buddypress, just the things I can come up with at the moment. :)

    #67631
    r-a-y
    Keymaster

    Your style.css should look something like this:

    /*
    Theme Name: YOUR CHILD THEME
    Description: My child theme.
    Version: 1.0
    Author: YOU
    Template: bp-default
    Tags: buddypress, two-columns
    */

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

    #header {background:url(YOUR IMAGE URL HERE) no-repeat;}

    Your child theme’s functions.php should look like this:

    <?php
    function my_remove_bp_actions() {
    remove_action( 'init', 'bp_dtheme_add_custom_header_support' );
    }
    add_action( 'init', 'my_remove_bp_actions', 9 );
    ?>

    Make sure you activate your child theme in the WP admin area.

    #67628
    putnum01
    Participant

    Or I could have a link outside the bar and next to the Home,Members,Groups ETC but I only want logged in users to be able to see the link. Like this:

    Home, Write A Post, Members, Groups

    And when users are not logged in they don’t see Write A Post.

    I have included this code in the header.php and the link is there but how do I change it to only allow logged in users to see it?

    <li<?php if ( bp_is_front_page() ) : ?>class=”selected”<?php endif; ?>>

    “><?php _e( ‘Write A Post’, ‘buddypress’ ) ?>

    #67627
    Dark Severance
    Participant

    I’ve never done a child theme before. I followed these instructions here:

    https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/

    I created my style.css and added in the #header code you posted.

    I’m confused about the functions.php. It says I’m supposed to name it something different, what do I name it and how do I then tie it into the other theme so that I can do the edit that you posted to it?

    #67625
    Andrea Rennick
    Participant

    you don’t apply a page template to the BP areas. You have to take the BP template files added to your theme folder, and adjust the divs listed in there to match the ones in your page-full.php template.

Viewing 25 results - 56,651 through 56,675 (of 69,016 total)
Skip to toolbar