Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 57,451 through 57,475 (of 69,016 total)
  • Author
    Search Results
  • #65608
    Dwenaus
    Participant

    @xfreme which comments are you talking about? blog comments or activity feed replies?

    #65607
    cargo
    Member
    #65606
    xfreme
    Participant

    Thank you! It is one of the most expected features i’d like to have :)

    BTW, what with rating on comments? some of them sometimes are great and it’ll be good to rate them also!

    #65601
    Tyler Regas
    Participant

    I have to say that I’m glad to see that the community around BP appears to be very strong, and that’s good thing. I’ve always tried very hard to advocate for open source, and have done so for over a decade now. I plan on advocating more for WordPress, BuddyPress, and bbPress, as well as the WordPress Foundation through my Autism site. I take exception to those who talk about being able to tell when a site is based on WordPress. Of course, its up to the designer of the site whether or not they will fly that flag, and I’ve long ago decided that I would let everyone know what I was using to get things done. I’ve been running Mobodojo on WP since 1.2.

    Sadly, though, I’ve been growing accustomed to the automagical nature of WP and have stopped using themes which need to be tweaked every time the code base gets updated (though Atahualpa and Arras are stunningly powerful themes) as well as counting on plugins to do everything I need. The deficit lies in the fact that I’m hopeless when it comes to coding. Sure, I can edit existing PHP and even make it work 13% of the time, and I’ve been hacking around HTML for years, but there are things I need to have my site do, and so I’ll need to buckle down and either find out a way to do it myself or pass along my passion to someone (or someones) who have the skills.

    I realize that my opening post sounded upset, and I was, but that frustration should never have been vented on the BP community. I do thank you all for making some mild fun of me and, otherwise, being very cordial and helpful. I’m also pleased with myself to have managed to spark a little bout of debugging :)

    The site is phrind.com. If you aren’t a member, you will be redirected to blog.phrind.com.

    #65599
    nickrita
    Participant

    demilio, I didn’t yet manage to put the content on different lines, but maybe you want to look at this threat for a half solution:

    https://buddypress.org/forums/topic/easy-change-of-activity-design?replies=8#post-39467

    #65595
    PJ
    Participant

    https://wordpress.org/extend/plugins/buddypress-real-names/

    I tried that but the registration form doesn’t change and all and when I click the Buddypress button in the site admin it redirects me to my homepage. The title of the plugin sounds good, but if it worked that would be better.

    #65590
    Andrea Rennick
    Participant

    You have to go inot the BP folders that are added to the theme, and wherever there’s a “content” div, match that up to the HTML markup in the original theme.

    If it;s overly complicated in the theme – yeah, pain in the ass. (which is why there’s unfinished themes on my hard drive :P )

    #65584
    bnt76
    Participant

    @Andrea_r it was globalpress bought it from themeforest pain in the bum to do.

    I basically follow the steps as in the Buddypress template pack, however I have had issues with matching up the div and content classes / containers.

    I know that once I have actually done it once, I will be able to do it again but its a nightmare, I think the theme is overly complicated.

    #65582
    ousep
    Participant

    If you don’t want to get into the database, the simplest way would be to create another administrator account, logging in as the new admin, and deleting the user named admin.

    PS: @hnla Buddypress now works with regular WP, too.

    #65581

    In reply to: Like it? Vote it!

    Dwenaus
    Participant

    don’t forget to vote for and rate other buddypress plugins you’ve tried: https://wordpress.org/extend/plugins/tags/buddypress

    #65577
    r-a-y
    Keymaster

    Try modifying some of these settings in /wp-content/plugins/bp-custom.php or in wp-config.php:

    define ( 'BP_AVATAR_THUMB_WIDTH', 50 );
    define ( 'BP_AVATAR_THUMB_HEIGHT', 50 );
    define ( 'BP_AVATAR_FULL_WIDTH', 150 );
    define ( 'BP_AVATAR_FULL_HEIGHT', 150 );

    More info found here:

    https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/

    #65574
    andrew_s1
    Participant

    Code revised to give protection even if buddypress gets deactivated: adds a second line of defence by hooking a wordpress action too. I’ve assumed that there’s no conflict here, but I don’t know if these two hooks collide. It seems to work ok.

    <?php
    /*
    Plugin Name: BuddyPress Lockdown
    Plugin URI: https://buddypress.org/
    Description: Lock down your BuddyPress site if a user is not logged in.
    Author: Andy Peatling & Andrew_S1
    Version: 1.2
    Author URI: https://buddypress.org/
    Site Wide Only: true
    */

    function bp_lockdown() {
    global $bp;

    if ( BP_REGISTER_SLUG != $bp->current_component &&
    BP_LOGIN_SLUG != $bp->current_component &&
    BP_LOGIN1_SLUG != $bp->current_component &&
    !is_user_logged_in() ) {
    bp_core_redirect( site_url( BP_LOGIN_SLUG ) );
    }
    }
    function wp_lockdown() {
    if ( !is_user_logged_in() ) {
    auth_redirect( 'wp-login.php' );
    }
    }

    add_action( 'bp_init', 'bp_lockdown');
    // if no buddypress, have a backup plan
    add_action( 'send_headers', 'wp_lockdown');
    ?>

    #65571
    intimez
    Participant

    I pasted Burt’s code to the end of function.php and I get a blank page

    Did I miss something?

    [wordpress2.9.2 + buddypress1.2.1]

    #65561
    Anton
    Participant

    Works 100%.

    #65558
    andrew_s1
    Participant

    Note that using this method, if buddypress became deactivated, all of your site’s posts, and the comments, would become completely visible.

    #65557

    In reply to: need help with plugin

    intimez
    Participant
    #65556
    gwu123
    Participant

    any luck with this…i want to do something similar

    https://buddypress.org/forums/topic/need-help-with-plugin

    #65554
    andrew_s1
    Participant

    I’ve submitted a ticket for the issue of wp-login not being registered as a root_component:

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

    There’s a patch attached to that ticket, to make the necessary changes to bp-core.php

    And here’s my revision of the lockout plugin:

    <?php
    /*
    Plugin Name: BuddyPress Lockdown
    Plugin URI: https://buddypress.org/
    Description: Lock down your BuddyPress site if a user is not logged in.
    Author: Andy Peatling & Andrew_S1
    Version: 1.1
    Author URI: https://buddypress.org/
    Site Wide Only: true
    */

    function bp_lockdown() {
    global $bp;

    if ( BP_REGISTER_SLUG != $bp->current_component &&
    BP_LOGIN_SLUG != $bp->current_component &&
    BP_LOGIN1_SLUG != $bp->current_component &&
    !is_user_logged_in() ) {

    bp_core_redirect( site_url( BP_LOGIN_SLUG ) );
    }
    }
    add_action( 'bp_init', 'bp_lockdown');
    ?>

    #65551

    In reply to: BuddyPress Like

    Alex
    Participant

    Notifications has been a bit of a pain, so that will come in later… sorry

    Currently working on adding visibility options as @Rbl suggested, as well as options for the number of likers to display from the settings screen as @xp02ed added.

    @21cdb I love the idea of having a page to show the most popular content, this will be a bigger job but I’m definitely including it! I will also include a widget to show similar data.

    #65550
    MrMaz
    Participant

    I just tagged 0.3.2 which has some pretty significant bug fixes.

    * Fixed broken paging issues

    * Fixed bug with status check in some queries

    * My Links now correctly only shows the displayed user’s links

    * My Links activity now correctly only shows the displayed user’s links activity

    #65545

    In reply to: Privacy

    xspringe
    Participant

    +15

    Some feedback on the Funding progress bar: maybe you could set it to a more reasonable amount so there’s a goal to work towards and we can actually see the progress bar move after a donation. 9,000 USD might be a bit steep ;)

    http://jeffsayre.com/2010/01/02/do-you-support-buddypress-privacy/

    #65544
    PJ
    Participant

    @ catinw12

    Um, I’m not sure what you mean. Are you asking if I purge the older buddypress folder, upload the new one, then uploaded the any files I’ve customized? Yes. I left that detail out. That’s why the backup is essential! I made sure to overwrite some standard BP files with the saved customized files I’ve created.

    #65542
    fuzzyman
    Participant

    I’m experiencing this too. Running BP 1.2.1, WPMU 2.9.1, PHP Version 5.2.9-2, Apache 2.2.11 (Win32). On the previous version, the Who’s Online work perfectly, on the current version, I just get the annoying “There are no users currently online”.

    I know that there are at least 16 people online, but for some reason, they are not displayed. I Google’d for a solution, but have not (up to now) found anyone experiencing this with the new version.

    BuddyPress 1.2.1

    WPMU 2.9.1

    PHP 5.2.9

    MySQL 5.0.51a

    Apache 2.2.11

    OS Windows Vista Business 32-bit

    Theme: BuddyPress Default 1.2.1

    Plugins: BuddyPress 1.2.1, Simple LDAP Login 1.3.0.3

    #65540
    sweller
    Participant

    Yeah, it seems to work fine by replacing the three lines of the username block with mt_rand. However be sure that there are letters somewhere in the value, such as the “mem” above. Buddypress will throw back an error without letters.

    Also this probably wouldn’t work with large websites with thousands of people, as the chance of generating the same username goes up. You’d probably have to write a function that generates a long string of random letters and numbers.

    #65536
    Jeff Sayre
    Participant

    So, how many people are employed by Auttomatic to work on this project?

    One. Andy.

    I’ve been poking around for some time and I’m a little surprised that not one person has been confused by the complete lack of security in BuddyPress.

    You need to poke around a little more. ;)

    https://buddypress.org/forums/topic/privacy-1

    https://buddypress.org/forums/topic/privacy

    https://buddypress.org/forums/topic/buddypress-privacy-component-an-update

    Also, privacy is on the BuddyPress roadmap.

    As Andy states, implementing privacy in BP or any social network is not an easy task. I am working on updating my older privacy component to work with BP 1.2 and WP/WPMU 2.9.x. It will be awhile longer before I have a working alpha for testing. But, privacy is coming to BuddyPress!

Viewing 25 results - 57,451 through 57,475 (of 69,016 total)
Skip to toolbar