Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 8,326 through 8,350 (of 22,602 total)
  • Author
    Search Results
  • modemlooper
    Moderator

    BuddyPress hijacks the WordPress loop and replaces content with component content. So, any posts returned are wiped out and replaced

    You could try a custom second loop but there may be issues

    #175014
    Asynaptic
    Participant

    Hi Barry, it sounds like you’re not clear on what bbPress and BuddyPress are exactly. So let me try to clarify it for you.

    bbPress is a plugin for wordpress which provides you with forum functionality. And because it comes from the same folks who created wordpress, it works great with wordpress and other WP plugins.

    BuddyPress is a plugin for wordpress which provides you with a social network functionality. What does that mean? Well, imagine facebook, myspace, or any other social media platform – they have profiles, people can create and fill in their userpages, people can message other people privately, they have an activity page which shows their activity on the site, etc.

    bbPress and BuddyPress are two totally different plugins but they work together and can be integrated with one another. But if you want to use just one of them, you can. You do not need to run both.

    I’ve tracked down the video I think you refer to:
    http://labsecrets.com/buddypress-and-bbpress-forums-made-easy/

    And I can clarify that for you as well. BuddyPress used to have its own way of creating forums, called “BuddyPress Group Forums”. But that functionality is deprecated because the developers decided to rely on bbPress rather than duplicate it within BuddyPress. So the latest version of BuddyPress doesn’t have group forums but instead relies on bbPress.

    It all depends on what you are trying to do. What you are seeing in “the two forum apps merging to become one” is simply a deep integration between them so IF people want to use both, they can do so with ease and get the fullest functionality out of that combination use.

    It sounds like you want a forum. If that is the case, forget about BuddyPress and just use bbPress.

    Hope that helps!

    #175002
    4ella
    Participant

    http://wordpress.stackexchange.com helped me:

    function bp_registrations_today($activated = false) {
        global $wpdb;
    
        $query = "SELECT COUNT(ID) FROM {$wpdb->prefix}users WHERE DATE(user_registered) = CURDATE()";
    
        if ( $activated ) {
            $query .= " AND user_status = 0";
        }
    
        return $wpdb->get_var($query);
    }

    To get the number of users registered today, call the function as

    echo bp_registrations_today();

    To get the number of users registered today with activated accounts, call the function as

    echo bp_registrations_today(true);

    #174986

    In reply to: login form in header

    @mercime
    Participant

    @drgiz upcoming BP 1.9 now includes a BP log in widget. If you’re just starting to develop a new site, check it out at buddypress.1.9-beta1.zip.

    #174983
    @mercime
    Participant
    #174980
    @mercime
    Participant

    @macpresss I agree in the sense that any additional role for the Group Moderator should be configurable by Site/Group Admins.You can submit a ticket to enhance Mod role at https://buddypress.trac.wordpress.org/

    #174978
    mattg123
    Participant

    I used https://wordpress.org/plugins/bp-default-data/ not long ago with the current bp version, so as far as I’m aware it still should.

    #174975
    Paul Wong-Gibbs
    Keymaster

    Hi. Which theme are you using, what versions of WordPress and BuddyPress are you using, and where did you download the translation file from? Thanks.

    #174973
    Paul Wong-Gibbs
    Keymaster

    No direct way of bulk-editing profile fields; sounds dangerously powerful. If you are a PHP/WordPress developer, or know someone who is, I’d suggest writing a script to make these changes for you.

    #174914
    modemlooper
    Moderator

    There is a bit of discussion on this in a trac ticket https://buddypress.trac.wordpress.org/ticket/3856

    #174893
    alealealeo
    Participant

    @shanebp

    1- I do understand this, but if you change a filter and use it like that for a while, and then want to change it again, your existing data will stay unchanged. To me the solution is to not have a filter for things that won’t be able to be manipulated later on.

    2- Building dynamic strings may be ever so slightly slower, but it’s the reason I love WordPress – To have the power to easily and dynamically change data.

    The main reason I want to make changes to the code is because BuddyPress currently provides a specific way to output things, example:

    “Author Name posted an update in the group [group avatar] Group Name, 14 hours, 00 minutes ago”

    A: None of the links have a class set (except for the time) Meaning that I can’t add CSS to increase the size of “Author Name” without affecting “Group Name” and vice-versa. So I was trying to manipulate the filter to add a class.

    B: I want to change the order of the output, for example if I increase the size of the group avatar I would want to move it from where it is completely. Not very flexible for people who want to make the line work/look a certain way.

    Another example of this problem is the avatar sizes:

    If you define the avatar sizes, example:
    define ( 'BP_AVATAR_FULL_WIDTH', 300 );
    any avatars from activity/groups previously created will still use the old avatar size.
    So if you set it to 300, and then I want to change it in the future to 100 and change the design/CSS, all the existing activity will still show 300 and look bad with the new CSS.

    WordPress works this way to with image thumbnails, however, you can force a regeneration of them using a plugin.

    In short, I am finding that BuddyPress is a great plugin but it seems to me that for the activity (the most important aspect of the plugin) you are stuck into using/showing it how the BuddyPress developers decided was the best format/look, because changing it via filters will result in headaches if I install my custom filters on a site with existing BuddyPress data.

    If there were a way to regenerate the activity database to update everything with the filters/sizes set, that would solve most of the more obvious problems.

    #174883
    lz430
    Participant

    I do have the BuddyPress to WordPress profile syncing enabled. I did add the code above as you suggested, however it doesn’t list the correct profiles.

    #174882
    Andrea Fercia
    Participant

    @jigesh hi
    you should never remove $wpdb->prepare, is there for a reason 🙂
    The reason why the plugin doesn’t work with wordpress 3.6, 3.7 and later, it’s clearly explained here: https://codex.wordpress.org/Class_Reference/wpdb
    see where they wrote:
    “Please note: As of 3.5, wpdb::prepare() enforces a minimum of 2 arguments.”
    more details here:

    PHP Warning: Missing argument 2 for wpdb::prepare()


    and the plugin code provides just 1 parameter, generating a PHP warning.
    Basically, the json returned doesn’t contain a valid json but contains the error message:
    <br /><b>Warning</b>: Missing argument 2 for wpdb::prepare()
    being not valid json, it can’t be rendered in the “Bubble”.
    The correct solution is to keep $wpdb->prepare but change the query in order to pass “1” as second argument:
    instead of
    AND is_new = 1″
    do:
    AND is_new = %d”, 1
    that’s because you *have* to pass a minimum of 2 arguments. So you have to re-factor the query in order to pass at least 1 second argument: first argument is the query, where you use placeholder %d (digit) instead of 1:
    “SELECT * FROM {$bp->core->table_name_notifications} WHERE id IN {$list_ids} AND is_new = %d”
    second argument is: 1
    If you have to pass a string instead of a digit, you would use %s as placeholder.
    regards
    Andrea

    #174867
    @mercime
    Participant

    @mehdi-w first of all, please be advised that the BP Default theme is going to be retired soon
    per http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/ and I suggest that you find another theme as BP is now compatible with nearly all WordPress themes right after activation. You might need to tweak some styles in some WP themes but in general, should be good to go.

    Going back to your question, add that code at the very bottom of the default.css and
    default-rtl.css files.

    #174864
    danbp
    Participant

    You have %d new message from %s

    This string is not in 1.8.1 but in 1.9 beta (pot file:4168).

    You can see/compare that yourself from the trac:

    https://buddypress.trac.wordpress.org/browser/tags/1.8.1/bp-languages/buddypress.pot
    https://buddypress.trac.wordpress.org/browser/tags/1.9-beta1/bp-languages/buddypress.pot

    #174862
    @mercime
    Participant

    @alealealeo suggestion: file new ticket at https://buddypress.trac.wordpress.org/
    log in using WP username and password.

    #174858

    In reply to: Music on Profile Page

    Henry
    Member

    @1missrodnee rtMedia uses mediaelement.js (which comes with core WordPress since 3.6). I do believe you can set autoplay="true" on the mediaelement.js audio player. Have you tried asking the question in the rtMedia forum? their support is usually very good.

    #174851
    shanebp
    Moderator

    >I have tried adding the “type=”alphabetical”

    It should be
    if ( bp_has_members( 'type=alphabetical' ) )

    When doing that, you should enable BuddyPress to WordPress profile syncing
    via Dashboard > Settings > BuddyPress > Settings

    #174840

    In reply to: User calendar

    aces
    Participant

    @formbi
    https://wordpress.org/plugins/events-manager/ supports buddypress according to it’s feature list…. although I haven’t tried it.

    #174838

    In reply to: User calendar

    Tammie Lister
    Moderator

    As it’s users not groups you are looking for you can shift your search more towards WordPress. Perhaps something here would work: https://wordpress.org/plugins/search.php?q=calendar

    #174821

    In reply to: 1.9 Beta testing

    Hugo Ashmore
    Participant

    Not sure of the problem, but it sounds plugin related if only happens when posting to social networks, so may not necessarily be a BP issue, but with possible issues with BP betas please post to https://buddypress.trac.wordpress.org/ using your user account login with full steps to reproduce; posting in the support forum will just get lost.

    #174818
    SK
    Participant

    @boonebgorges talks about some of the ugly and unscalable joins here

    #174817
    SK
    Participant

    @synaptic

    a fragment caching system

    I totally agree with you, and would love to see fragment caching in BuddyPress (or more generally in WordPress)

    That being said, if WordPress doesn’t include caching in core, it’s highly unlikely that BuddyPress would. If you created a ticket for this in Trac, it would probably quickly be closed as plugin territory.

    The quickest way of getting this implemented would be to convince the author of FragmentCache or Fragment Cache or Redis cache to add support for BuddyPress.

    #174815
    modemlooper
    Moderator
    #174810
    modemlooper
    Moderator

    Not sure about kinvey but read up on installing WordPress on the cloud

Viewing 25 results - 8,326 through 8,350 (of 22,602 total)
Skip to toolbar