Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,276 through 5,300 (of 22,687 total)
  • Author
    Search Results
  • #246219

    In reply to: Unable to log in

    Henry Wright
    Moderator

    Which WordPress forum are you referring to? Can you give a link?

    #246218
    Plucker
    Participant

    OK I raised https://buddypress.trac.wordpress.org/ticket/6708

    Thanks again for your help.

    #246216
    shanebp
    Moderator

    I’ve not seen your issue before.
    It may be a bug.
    You can submit a possible bug here.
    Be sure to include info about the browser you’re using and the hosting environment.

    #246207
    shanebp
    Moderator

    That is odd.
    It’s difficult to suggest a solution when replicating the issue is nigh impossible.
    But maybe more info about the issue can be generated…

    Try using a WP theme like 2013, deactivating bbPress and turning debug on in wp-config.php
    https://codex.wordpress.org/WP_DEBUG

    The file is getting uploaded to “wp-content/uploads/group-avatars/4/” but doesn’t appear on the group.

    Does anything appear on the group? View source or use a browser code inspector to take a close look.

    #246206
    Plucker
    Participant

    I’ve also tried re-installing WordPress and disabling all other plugins.

    Then tried deleting all plug-ins and re-installing WordPress and BuddyPress only, and still the same issue.

    karlosdpm
    Participant

    How can I make their avatars to sync with buddypress?
    I want them to see the avatar they have had for years now in their buddy press profile I am installing.

    Currently their avatars show in regular wordpress pages but not on buddypress pages, for example in the profile page or in the activity page.

    thank you for your help

    #246175
    silversurfer.wf
    Participant

    The following code…

    <?php

    // Use this file to customize Buddy Press

    // This section changes the default avatar to the picture of a box
    // the picture is uploaded into WordPress
    add_filter( 'bp_core_fetch_avatar_no_grav','__return_true' );
    define ( ‘BP_AVATAR_DEFAULT’, ‘http://www.truesouthernmen.com/wp-content/uploads/2015/10/0307152159-02-300×225.jpg&#8217; );
    define ( ‘BP_AVATAR_DEFAULT_THUMB’, ‘http://www.truesouthernmen.com/wp-content/uploads/2015/10/0307152159-02-300×225.jpg&#8217; );

    ?>

    Returns this error when loading the page…..

    Fatal error: Can’t use function return value in write context in /home/cody7670/public_html/wp-content/plugins/bp-custom.php on line 8

    #246167

    In reply to: Page load

    vysakhnair
    Participant

    @Henrywright

    Thanks for your reply, I have got one more plugin
    https://wordpress.org/plugins/buddypress-first-letter-avatar/

    #246149

    In reply to: Page load

    Henry Wright
    Moderator

    Try the BP Local Avatars plugin.

    danbp
    Participant

    BuddyPress use Gravatar by default, like WordPress.
    If your user uploaded custom avatars, you may use bp_core_fetch_avatar in place of wp’s get_avatar

    http://oik-plugins.eu/buddypress-a2z/oik_api/bp_core_fetch_avatar/

    More about avatars here and search for “avatar”
    http://hookr.io/plugins/buddypress/#index=a

    #246141
    danbp
    Participant

    Hi,

    a typo error in WP… it’s fixed.
    read here:
    https://buddypress.trac.wordpress.org/ticket/6692

    #246093
    Paul Bursnall
    Participant

    @yespapa This plugin will do exactly what you’re looking for – https://wordpress.org/plugins/jonradio-private-site/

    #246091
    mc9625
    Participant

    Hi, actually I’ve already added
    add_post_type_support( 'recipe', 'buddypress-activity' );

    to bp-custom.php in /wp-content/plugins. The recipes are counted in the “member activity stream”, but only the ones posted directly in the parent site, not the ones posted in the member’s blog.

    I think it’s a pity you can’t use a “blog” as the user profile page, or at least give the user profile page, the same kind of customisation as a full blog install. I think this is more a “Facebook” kind of approach, everyone will have more or less the same kind of page, with minimal customisation option (I guess the header profile). But since WordPress already has a multisite option, and Buddypress already support multisite environment, have the chance to use the user’s blog as if it were his “user profile” would have been a huge facility.

    #246090

    In reply to: Help loop activities

    William
    Participant

    @RafVin Here’s how to hide “All Members” tab with CSS.

    Find a file called “style.css” in the wordpress active theme, add the code below and re-upload the file.

    #buddypress div.item-list-tabs ul li.selected a {
        display: none !important;
    }
    

    Warning! When you update your theme, you’ll loose these CSS changes so try doing this in a child theme if you’d like to retain the changes when you update your theme.

    Showing custom tasks under personal? Well that requires some custom PHP coding or probably a plugin. Hopefully, someone will help you with this.

    #246089
    William
    Participant

    @konberg find a file called “style.css” in the wordpress active theme, add the code below and reupload the file.

    #buddypress .standard-form div.radio div label {
        text-transform: lowercase;
    }

    Warning! When you update your theme, you’ll loose these CSS changes so try doing this in a child theme if you’d like to retain the changes when you update your theme.

    Let me know if that works.

    shanebp
    Moderator

    The filter call is:
    apply_filters_ref_array( 'bp_get_activity_content_body', array( $activities_template->activity->content, &$activities_template->activity ) );

    Your function expects 2 parameters. Your add_filter call states there is only one.

    And there is only one – an array.
    Read about that kind of filter https://codex.wordpress.org/Function_Reference/apply_filters_ref_array

    Try something like this:

    function cshp_add_thumbs_to_activity( $array ) { 
         $post_id = $array[1]->secondary_item_id;
        //etc
    
        $array[0] = // new content
    
        return $array; 
    
    }
    add_filter( 'bp_get_activity_content_body', 'cshp_add_thumbs_to_activity', 15, 1 );
    #246080
    webguru13
    Participant

    Thanks for the reply on this and sorry just now getting back…life got in the way…can you explain in newbie elementary terms exactly what you were discussing in regards to having me show up as admin and not just looking like a logged in user on buddypress…what is happening is…when I log into my wordpress I show up on my webpage as like a logged in user..doesn’t say admin or anything…I want to be displayed as a admin/moderator for the site…how do I do this…in elementary terms please as I am new to WordPress although I have learned so much and have actually almost put up a complete website…but I am even newer to buddypress although I have it up on my site…these little kinks such as this one are getting in the way…thankful for this buddypress support forum….if you could help I would greatly appreciate it!! Rhonda

    #246062
    mrjarbenne
    Participant

    We had WordPress Multisite up and running on Windows Server 2008 for a few years before switching over to NGINX (we could never get the MS box to run quickly enough, and it needed to be restarted a fair amount when there was heavy traffic.)

    Before we made the switch, we hired Ruslan Y to look over our configuration and make suggestions for optimizing. They were some great suggestions. I’ve copied the document he shared with us here. I’m not sure if he still does this, but you could try.

    https://drive.google.com/file/d/0B9yl4no9k_c2eFdDNlU2dnNnNTA/view?usp=sharing

    Regardless of what plugin you end up using, it might be worth a few dollars to have someone look at your set up and optimize it. The biggest issue of running WP on IIS is that most support forums won’t have what you are looking for, and when you run into problems, you will be immediately dismissed because developers love to blame IIS for bugs when they hear you aren’t running on LAMP.

    #246043
    mrjarbenne
    Participant

    Just taking a guess here, but depending on your setup, you may not have the URL ReWrite module active. You need Pretty Permalinks to make BP work. Here’s a tutorial: http://www.iis.net/learn/extensions/url-rewrite-module/enabling-pretty-permalinks-in-wordpress

    #246042
    mrjarbenne
    Participant

    It doesn’t work like that. In a multisite instance, your users can all have their own blogs (think wordpress.com). What BuddyPress does is allow you to see all of the activity from those subsites in one Activity feed (among other things).

    I have set up the categories in the main site, and I expected to see the same categories on every site, but it doesn’t work.

    Although this isn’t a BP feature, there is a plugin that does this. It hasn’t been updated in a while, but you could test it out, or purchase support from Brajesh and request a fix if you run into issues:
    http://buddydev.com/plugins/mu-global-terms/. There’s a write-up on the plugin here: http://wptavern.com/wordpress-multisite-global-terms-plugin-share-taxonomies-across-a-network

    Also in the user activity stream I cannot see the posts the user has written in his own blog.

    That SHOULD work. You mention a custom post type though: is that the activity you are hoping to see? By default BP only shows posts and comments, not custom post types. You can register custom post types: https://codex.buddypress.org/plugindev/post-types-activities/

    If the subsite that you are hoping registers activity is set to discourage search engines in Settings/Reading then it won’t register on the main site.

    You may also want to try one of the default themes (twentyxx) to see if it’s your theme screwing things up. Many themes that tout themselves as BuddyPress-Ready, are doing some funky things best left to plugins in their functions.php file.

    #246040
    mrjarbenne
    Participant

    Check out this page, specifically option B: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/

    If you Network Activate BP, but then change what BP considers it’s “home” by adding this constant as described in that codex article: define ( 'BP_ROOT_BLOG', $blog_id );

    Then bbpress activity from your main/root domain should populate the activity stream of your BP subdomain.

    #246011
    Paul Wong-Gibbs
    Keymaster

    Wonder if this is related to https://buddypress.trac.wordpress.org/ticket/6685 ?

    #246002

    In reply to: Welcome e-mail

    Henry Wright
    Moderator

    You could try Paul’s Welcome Pack plugin. It’s listed as not been updated in 2 years but it should still work.

    #246001
    Henry Wright
    Moderator

    Which theme is that? BuddyPress doesn’t ask for 2 usernames. The WordPress username and the BuddyPress username are one and the same. It looks as though your theme is asking for it twice

    #245986
    jasonqw1
    Participant

    http://162.208.8.170/wordpress/register-2/
    Here is the link to the registration form.

    As you can see, the Username under “Account Details” apparently is the wordpress defauly username. And the Username on the right side is the Buddypress one. Did I configure something wrong?

Viewing 25 results - 5,276 through 5,300 (of 22,687 total)
Skip to toolbar