Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,726 through 16,750 (of 73,983 total)
  • Author
    Search Results
  • #245449
    Venutius
    Moderator

    I’ve not seen a tagging plugin for Buddypress, I think the @Username option must be it.

    #245446

    In reply to: Local or remote

    Roger Coathup
    Participant

    I’ve not encountered any issues locally.

    My preferred setup is Chassis to provide local WordPress environment on vagrant; then adding BuddyPress however you prefer (from wp-admin or manually). Works great on OSX (although there are some general config changes with VirtualBox on El Capitan).

    https://github.com/Chassis/Chassis

    #245443
    danbp
    Participant

    Hi, no need to shout, writing in capitals is really rough. [Mod – topic title modified]

    In a WordPress system, you can only upload allowed medias. You already know (probably) that you can embed videos in post by simply copy/pasting the video link into it. This works also with BuddyPress when you enter a video URL to a profile field, it plays automatically, without any additionnal player.

    MP3 is an audio format and you can use the same technique as for videos. Read here.

    For more advanced display, you have several possibilities by plugins (rtMedia or MediaPress) or by building a custom display which fits exactly to your need. You don’t want a plugin (?), so i’m affraid you have to do something from scratch.

    That said, keep in mind that allowing users to upload “big” data files to your site is a mess. First because of the upload limitation in WordPress (by default 2 mo max.) This can only be increased if you have access to the server settings (eg. php_ini and httpd_conf). And if you have some traffic and many MP3, you need a generous bandwith. That’s why it’s recommended to use external services to store these datas. But if you follow this, you can only use what WP allows.

    Before thinking about a miraculous snippet in bp-custom, give more details about the scenario you imagine for users (file amount, file size, why do you want this during registering and not later, and so on…).

    Depending your answers, the solution can be very simple or very complicated.

    #245437
    eureka345
    Participant

    I am getting this error with zero plugins activated – only BuddyPress. Even on Twenty Fifteen theme I am still receiving this error (well, notice).

    #245435

    In reply to: Local or remote

    Biggerplay
    Participant

    Ok does all the functionality that buddyPress have work fine if installed locally?

    #245434
    shanebp
    Moderator

    Asked and answered many times.

    If you’ve turned off all plugins and are using a WP like 2015, you should not see the warning.
    Then use your theme.
    Then start turning on plugins, one at a time.

    #245431
    shanebp
    Moderator

    Please do not hijack threads or double post.

    Your reg page shows the standard layout.
    Adjusting the layout may require changes in the css for your theme.
    There are many articles about customizing the registration page.
    Google: buddypress customize registration page

    #245420

    In reply to: Local or remote

    Biggerplay
    Participant

    But are there certain technical issues that I might run into using Buddypress locally, that I wouldn’t have remotely?

    #245411
    ronia
    Participant

    There is no free media solution that will work seamlessly across WP Multisite and Buddypress, that is comparable to at least some degree to scripts like Elgg or Easysocial for Joomla … Rtmedia paid version is little better but using and uploading media has become so intuitive and easy (along with site super admins options eg how much to allow to upload in one go) that standard cms-es like WordPress, Buddypress, Joomla, Drupal are lacking far behind : for example see Whatsapp – how easily you can add picture from you phone cam or webcam in your gallery ( for Buddypress, Elgg etc you can do this for profile photo only) – such capacities are totally absent in social scripts like BP (WordPress or WP Multisite without BP is somewhat better if used with Jetpack).

    We will never catch-up – you will never catch up unless you have deep pockets. WP+BP rest on its laurels and its sad how FB monopoly is destroying the fabric of inter-connectivity of internet.

    Mediapress is not a user-friendly solution if you have to quickly or in a moderate time, deploy a social net site.

    #245408
    Venutius
    Moderator

    bbpress is the forum component of WordPress, it can integrate in Buddypress Groups to provide them with forums but will also work standalone.

    #245405
    caesarhills
    Participant

    “After that you need to set a Gallery page in the Buddypress page settings.”

    It was my problem: didn’t get how to point the gallery to the specific page; I didn’t consider the buddypress settings, thank you.

    I’d have 2 other little problems now:

    -in this demo the gallery shows up already opened with the pics in the grid, while in my case when I click on the menu bar to the gallery voice, I have to click then on a certain gallery to open it up ( and I have just one gallery ) so I’d like the gallery to be already opened when I click on the menu voice, exactly like in the demo.
    What I’ve to do to achieve it?

    -second thing: as I said before, I want just one gallery as sitewide gallery, so I’ll add pics to this gallery day by day, but I see that the last pics added go to the 2nd, 3rd page and so on, while I’d need the last pics uploaded to appear in the first page as the most recent ones.
    Till now I didn’t manage to find the right settings for this: is there a way to do it?

    Thanks again for your time and help

    #245389
    lyndysmart
    Participant

    Thanks a lot for the explanation @henrywright. I eventually used the following code from http://buddydev.com/buddypress/hiding-users-on-buddypress-based-site/

    add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_users' );
     
    function buddydev_exclude_users( $args ) {
        //do not exclude in admin
        if( is_admin() && ! defined( 'DOING_AJAX' ) ) {
            return $args;
        }
        
        $excluded = isset( $args['exclude'] )? $args['exclude'] : array();
     
        if( !is_array( $excluded ) ) {
            $excluded = explode(',', $excluded );
        }
        
        $user_ids = array( 1,2,3 ); //user ids
        
        
        $excluded = array_merge( $excluded, $user_ids );
        
        $args['exclude'] = $excluded;
        
        return $args;
    }
    
    

    It worked in hiding users from directories/widgets/friend lists, only that it didn’t also handle profile redirect. I had to set up redirects to homepage for all the admin accounts on server side.

    Thanks again for your assistance on this.

    #245388
    robert198222
    Participant

    you’re correct regarding the nginx rewrites, didn’t think of that…

    hmm.. how strange, not sure what to do actually. The theme developers say that it should work.
    http://listify.astoundify.com/article/683-is-the-listify-theme-a-buddypress-compatible-theme

    Now the “Change Avatar” link isn’t shown anymore for some reason, only thing I did was to deactivate and then reactivate the buddypress plugin. everything in the configuration seems correct (in setting the “Allow registered members to upload avatars” is checked). and only error I have in the logs is this related to buddypress.

    Perhaps better to uninstall buddypress for now and wait for a more stable version.

    #245386
    Venutius
    Moderator

    Trouble is other then the lack of buddypress support I really like my theme, I guess that’s always going to be an issue unless I can find an alternative that has the right look and feel. None of those that were listed for example seem to support a header image, which I find is desirable. Also, they tend to be a bit too buddypress centric as far as I can see.

    #245379
    Paul Wong-Gibbs
    Keymaster

    Pretty sure next set of templates will have members as a grid, yes. All of the popular third-party BuddyPress themes have done it like this, so we’d be foolish to not do the same.

    #245378
    Paul Wong-Gibbs
    Keymaster

    Regardless of how you added the users, if you chose to not have emails sent, you need find a WordPress plugin that will do this for you (if any exist — resending emails is a bit niche).

    If you added them through BuddyPress on the front-end, emails should have been sent out. I’d start investigating the mail configuration on your server to check it is correctly set up to deliver email.

    #245377

    In reply to: Features and Requests

    Paul Wong-Gibbs
    Keymaster

    I am looking into how promptly we may be closing old discussion threads (if we leave them open, someone replies to them months or years later, normally with a “did anyone ever find a solution” etc”, and the discussion’s out of date). I can’t see any threads that you’ve started recently that have been closed, so I’m assuming you meant generally.

    Also, we appreciate your feedback. This isn’t the first time you’ve complained about some of the design/theming aspects of BuddyPress, but unfortunately threads like this don’t help us make the software better. You’re more likely to get a better response if you share unconstructive comments like these on your own site/blog rather than these support forums (if you do, be sure to link us here to it so we can go read it). Thanks.

    #245361
    Henry Wright
    Moderator

    In post #190874 on the topic you’ve linked to, snippet 2 has the line:

    $excluded_user='1'; // Id's to remove, separated by comma

    You can just add more user IDs like this and those IDs will be excluded from the loop:

    $excluded_user='1,34,56,201'; // Id's to remove, separated by comma

    #245360
    YesPapa
    Participant

    Yep. You can look at Premium ThemeForest Themes by example.

    And when we look at the default attached informations to a member list entry, I think too much spaces are loosed for only few informations. Have a member grid can be great to optimize the area page and don’t have to scroll too much.

    #245358
    YesPapa
    Participant

    It’s a philosophy.

    I don’t think we can compare flexibility and usage/look. If an usage is adopted by lot of people (just to see at the buddypress templates around the web), why can’t it be regarded as a future development/integration? (and you can active or desactive a such option)

    I’m such we can do the same parallel with some wordpress functionalities (just look at the gallery functionality).

    I’m thinking to the beginner and to the stability of a solution, it can be great. Plugin are great and useful but sometimes too much plugin isn’t so cool.

    Is there a plugin to display a member list in a member grid?

    Than you.

    #245347
    Henry Wright
    Moderator

    So it is better for this plugin to do the styling.

    BuddyPress is intentionally built to be flexible. Even though it works well “out-of-the-box” it isn’t designed to be finished. If we added everything to core, then it would bloat the project. The idea is for you to extend your own personal copy of BuddyPress with plugins and themes to make it unique. There’s 2m+ BuddyPress sites out there (according to the number of downloads) and we wouldn’t want them all looking and acting the exact same.

    #245343
    Michael Bryner
    Participant

    Best request so far on this forum and surprised you reopened this thread. Buddypress, bbPress, and WordPress are so easily close the threads before anything is even discussed and easily just assumes its better to go to a theme author to implement it when it not the theme author that works on this plugin at all. Theme Authors are 3rd party. So it is better for this plugin to do the styling.

    #245338
    shanebp
    Moderator

    It’s easy to add a member’s display name.
    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.php

    Then replace this:

    	<?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?>
    		<h2 class="user-nicename">@<?php bp_displayed_user_mentionname(); ?></h2>
    	<?php endif; ?>

    With this:

            <?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?>
                <h2 class="user-fullname">
                    <?php bp_displayed_user_fullname(); ?>
                    <small>@<?php bp_displayed_user_mentionname(); ?></small>
                </h2>
            <?php endif; ?>
    Jld142
    Participant

    Is there a way with buddypress to protect normal pages i have created from being viewed by users who are not logged into buddypress ?

    BP is a small part of my website and i want to create 3 form pages which are not viewable by users who are not logged in ?

    #245311
    Philosopher Rex
    Participant

    Found a few more things to tweak, so here’s an update:

    
    
    /* buddypress tabs */
    #buddypress #object-nav, #buddypress #subnav {outline:0;margin:0;text-align:center;}
    #buddypress #object-nav ul, #buddypress #subnav ul {display:table;width:100%;table-layout:fixed;font-size:.7em;}
    #buddypress #subnav ul {width:98%;font-size:.6em;margin:0 1%;}
    #buddypress #object-nav li, #buddypress #subnav li {display:table-cell;float:none;text-align:center;height:2em;padding-top:.5em;background-color:#ddd;border:1px solid #c6c6c6;border-bottom: 1px solid #999;text-decoration: none;outline:0;margin:0;}
    #buddypress #object-nav li a, #buddypress #subnav li a{display:block;text-align:center;word-wrap: break-word;padding:0!important;color:#888;text-shadow: 1px 1px #ccc;outline:0;}
    #buddypress #object-nav li a:hover, #buddypress #subnav li a:hover {color:#000;outline:0;text-shadow: 1px 1px #eee;}
    #buddypress #object-nav li.current, #buddypress #subnav li.current {border-color:#999;border-bottom-color:transparent;background-color:transparent;}
    #buddypress #object-nav li.current a, #buddypress #subnav li.current a {pointer-events:none;cursor:default;color:#222;font-weight:700;}
    #buddypress #object-nav li.current a:hover, #buddypress #subnav li.current a:hover {color:#222;font-weight:700;}
    #buddypress div#subnav.item-list-tabs {margin:0!important;padding-top:1em;}
    #buddypress div.item-list-tabs ul li a span {display: block!important;}
    #buddypress select#activity-filter-by {font-size:.8em;}
    
    
Viewing 25 results - 16,726 through 16,750 (of 73,983 total)
Skip to toolbar