Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 73,426 through 73,450 (of 73,985 total)
  • Author
    Search Results
  • #34940
    nicolagreco
    Participant

    Interesting..

    #34939
    nicolagreco
    Participant

    I think you should post it also in http://buddypressdev.org/forums/ (a BuddyPress Community for developers)

    #34935

    In reply to: A Few Problems

    danielfelice
    Participant

    i’d try reinstalling everything first…i am not seeing any of these issues on my site so must be something to do with your setup

    also check the permissions on the buddypress components

    #34930

    In reply to: A Few Problems

    Vast HTML
    Participant

    my users have no role. the blog they create when they open a account or after they open when they create a new blog it still shows page not found errors when viewing the blog or trying to edit it in any way. I dont want them to be admins at all i just dont understand why buddypress keeps attaching my name to every account i make. The information i also input when making a new member is useless as it is never saved. and must be redid in edit profile.

    #34927
    David Bisset
    Participant

    I would be interested in this as well. I have figured out how to expand the settings on BuddyPress profile pages. It would be great to allow users of BP to actually go into “settings” (because profile is public), edit their social settings, and then display the feeds on a seperate BuddyPress page, widget, or (even better IMO) a new BuddyPress component. I just posted about this in the forum a few minutes ago.

    #34916

    In reply to: A Few Problems

    Wardee
    Participant

    Are you using your own theme or the buddypress-home theme?

    #34912
    David Bisset
    Participant

    So say you have a plugin that displays a twitter feed given a username. You want ALL profile pages in BuddyPress to automatically show this. I would think this would be a WPMU plugin, but i wanted to confirm. I managed to create additional profile pages in my BP test install (and even additional setting screens) but can’t get plugins to work on the pages I have created. Thinking it might have to do with where the plugin are installed.

    #34906
    Wardee
    Participant

    In buddypress-home > css, rename the custom-sample.css as custom.css.

    Then add these lines to it and save:

    body {

    background:#000000;

    color:#FFFFFF;

    }

    .widget ul.item-list li, .activity-list {

    background:#000000;

    }

    .activity-list li blockquote {

    background:#000000;

    }

    .activity-list {

    border:none;

    }

    Some other thing may need changing, too; I don’t know what you want. All the widget titles have background colors. Also the link color might not be what you want.


    For the header fill in your amount of pixels and the name of your logo file (put it in buddypress-home > images).

    #header h1 {

    background:transparent url(../images/your-logo.gif) no-repeat scroll left top;

    height:–px;

    width:–px;

    }

    You’ll have to do the same with buddypress-member > css. Rename custom-sample.css to custom.css and add the header bit, as well as any color changes.

    Who knows what else may come up. Post if you need help with anything else.

    #34905
    David Bisset
    Participant

    I highly recommend something like this, especially for signups. Spammers target MU blogs to auto-register and then auto-create/post blogs.

    #34890
    adamhdv
    Member

    I had also made mine a two column theme… extending the left column stretching across to the right one. Getting rid of the middle one. Got a few issues in IE with the top margin, should be an easy fix…but i’ll let you know.

    #34886
    Burt Adsit
    Participant

    Howdy, the area I think you are talking about is the default form when you view a member’s profile right? ‘me’ > profile > public. The template that generates that screen is in /member-themes/buddypress-member/profile/index.php

    You’ll see the calls to generate all the sections on that page. One of them is the wire. Line 47:

    <?php bp_wire_get_post_list( bp_current_user_id()… and so on …

    You were gonna make a copy of the theme, make whatever changes you need to run a custom bp member theme and edit that one right? :) I think it’s in the bp rules and code of conduct. I’ll have to check.

    #34885
    Scotm
    Participant

    fishbowl81

    This is pretty much what I’d tried, although I’d forgotten about the custom.css file idea. I may have figured it out.

    Thx

    #34884
    fishbowl81
    Participant

    There are 2 things you need to change, 1 in custom.css, 1 in home.php in the buddypress-home theme folder (and /css folder)

    remove lines 14 to 25 (or comment out) of home.php

    `<div id=”center-column”>

    <?php if ( !function_exists(‘dynamic_sidebar’)

    || !dynamic_sidebar(‘center-column’) ) : ?>

    <div class=”widget-error”>

    Please log in and /wp-admin/widgets.php?s=&show=&sidebar=sidebar-2″>add widgets to this column.

    </div>

    <?php endif; ?>

    </div>`

    This will remove the center column from the layout.

    Next you need to adjust the css right margin of #left-column

    #left-column {

    margin-right: 280px;

    }

    Also you could adjust the body width, with this addition to your custom.css

    body {

    max-width: 1100px;

    }

    Hope That Helps,

    Brad

    http://www.gorgeousgamers.com/beta/

    #34881

    In reply to: limit 1 blog per user

    neuromancer2701
    Participant

    I wanted to removed “Create a Blog!” from of the buddypress admin bar.

    This is what I got to work:

    wp-content/mu-plugins/bp-core/bp-core-adminbar.php

    $blogscheck = get_blogs_of_user($current_user->ID);
    if ( ! empty($blogscheck)
    {
    echo '<a href="' . $bp['loggedin_domain'] . $bp['blogs']['slug'] . '/create-a-blog">' . __("Create a Blog!", 'buddypress') . '</a>';
    }

    #34868
    Trent Adams
    Participant

    Didn’t see your post nicolagreco. Posting around the same time :)

    @wardeh Missed that part. I would imagine that Andy will eventually do something with forums, but priority now is getting 1st release out. I have a ticket for forum activity in sitewide feed as well at:

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

    #34865

    In reply to: News as Widget

    nicolagreco
    Participant

    if i were you, i wont use widget in this case. i would create a loop to show last post

    (i use prologue theme too on one of my buddypress installation, and i highly hacked that theme!!)

    #34862
    Trent Adams
    Participant

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

    Known issue that even happens on testbp.org. Andy knows about it, so it should be fixed here pretty soon

    Trent

    #34856
    nicolagreco
    Participant

    can you develope in php?

    if yes, you could develope a php script that add an action : when a user post someting, it has to be stored in the db,

    or searching for a function in bbpress documentation that shows last articles..

    i believe that if you knows a bit of php you can do the second one..

    Tomorrow i will open http://buddypressdev.org forums and there i will post some lines, if i can with time!

    #34853
    nicolagreco
    Participant

    If i’ve time tomorrow (in italy is midnight), i will write a plugin and i will post it on http://buddypressdev.org ;)

    #34843

    In reply to: News as Widget

    Scotm
    Participant

    Thanks for the input. I chose burtadsit’s suggestion and it works fine, but I realize now that I need the News page as a widget or some other solution. Here’s my situation:

    1. I don’t want to have member blogs, only users posting to the main blog, so that means not installing bp-blogs in order to hide it across the site.

    2. I do need the recent blog posts to arrive on the buddypress-home theme, but without bp-blogs installed the widget isn’t available. So I’m thinking if I could get the News widgetized it would pull posts to the home page instead.

    3. I could install bp-blogs to simpley get the widget (what I have right now), but that means removing all instances of ‘blog’ throughout the site including buddypress member areas and that seems like a bad route to go.

    4. I have the Prologue post-form installed on the buddypress-home theme just above the three columns of widgets, thus eliminating any need for users to ever see the wpmu admin panel. This should allow me to keep all users as members vs. blog owners.

    Any suggestions would be greatly appreciated.

    Cheers

    #34841
    Trent Adams
    Participant

    Don’t put them into this thread, but rather a new topic in:

    https://buddypress.org/forums/forum.php?id=6

    Trent

    #34830
    gogoplata
    Participant

    Media Temple here as well and I have nothing but good things to say about them and haven’t had any problems with WPMU/bbPress/BuddyPress.

    #34827
    David Bisset
    Participant

    I use media temple, cheapest VPS. Never had a problem regarding getting WordPress MU or BuddyPress to work with them. Hope that helps.

    #34822
    anartoka
    Member

    Salut,

    Le site ne fonctionne toujours pas :'(

    Je peux donner un coup de main si besoin …

    Et je cherche aussi à télécharger le fichier de langue “FR”

    #34810
    6d6
    Member

    O.K. So I got a static I.P. Set up wild-card domains to work with subdirectories, and i’m still having problems with the blog and members page. you can see it here. desmoineslocalmusic.com.

    This is set up through go daddy. Does anyone else has buddypress set up on go daddy? My account is up on the 27th and if I can’t get it working i’m going elsewhere.

    Any suggestions?

Viewing 25 results - 73,426 through 73,450 (of 73,985 total)
Skip to toolbar