Search Results for 'buddypress'
-
AuthorSearch Results
-
October 14, 2015 at 11:46 am #245449
In reply to: Tagging Friends In Buddypress
Venutius
ModeratorI’ve not seen a tagging plugin for Buddypress, I think the @Username option must be it.
October 14, 2015 at 10:53 am #245446In reply to: Local or remote
Roger Coathup
ParticipantI’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).
October 14, 2015 at 8:03 am #245443In reply to: MP3 upload profile field
danbp
ParticipantHi, 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.
October 14, 2015 at 3:55 am #245437In reply to: bp_setup_current_user called incorrectly error
eureka345
ParticipantI am getting this error with zero plugins activated – only BuddyPress. Even on Twenty Fifteen theme I am still receiving this error (well, notice).
October 13, 2015 at 10:40 pm #245435In reply to: Local or remote
Biggerplay
ParticipantOk does all the functionality that buddyPress have work fine if installed locally?
October 13, 2015 at 10:25 pm #245434In reply to: Error with recent plugin update
shanebp
ModeratorAsked 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.October 13, 2015 at 4:56 pm #245431In reply to: Register and Forgot Password
shanebp
ModeratorPlease 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 pageOctober 13, 2015 at 3:44 pm #245420In reply to: Local or remote
Biggerplay
ParticipantBut are there certain technical issues that I might run into using Buddypress locally, that I wouldn’t have remotely?
October 13, 2015 at 2:52 pm #245411In reply to: How Mediapress works: guide.
ronia
ParticipantThere 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.
October 13, 2015 at 1:59 pm #245408In reply to: forum on my website and considering BuddyPress
Venutius
Moderatorbbpress is the forum component of WordPress, it can integrate in Buddypress Groups to provide them with forums but will also work standalone.
October 13, 2015 at 1:13 pm #245405In reply to: How Mediapress works: guide.
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
October 12, 2015 at 6:29 pm #245389In reply to: Hide All Admins from All Buddypress Activities
lyndysmart
ParticipantThanks 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.
October 12, 2015 at 4:09 pm #245388In reply to: buddypress frontend links
robert198222
Participantyou’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-themeNow 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.
October 12, 2015 at 3:22 pm #245386In reply to: List or grid format for members or groups directory
Venutius
ModeratorTrouble 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.
October 12, 2015 at 2:00 pm #245379In reply to: List or grid format for members or groups directory
Paul Wong-Gibbs
KeymasterPretty 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.
October 12, 2015 at 1:59 pm #245378Paul Wong-Gibbs
KeymasterRegardless 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.
October 12, 2015 at 1:56 pm #245377In reply to: Features and Requests
Paul Wong-Gibbs
KeymasterI 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.
October 12, 2015 at 9:42 am #245361In reply to: Hide All Admins from All Buddypress Activities
Henry Wright
ModeratorIn 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
October 12, 2015 at 8:24 am #245360In reply to: List or grid format for members or groups directory
YesPapa
ParticipantYep. 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.
October 12, 2015 at 7:15 am #245358In reply to: List or grid format for members or groups directory
YesPapa
ParticipantIt’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.
October 11, 2015 at 9:45 am #245347In reply to: List or grid format for members or groups directory
Henry Wright
ModeratorSo 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.
October 11, 2015 at 3:56 am #245343In reply to: List or grid format for members or groups directory
Michael Bryner
ParticipantBest 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.
October 10, 2015 at 7:45 pm #245338In reply to: [Resolved] Display name instead of Username
shanebp
ModeratorIt’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.phpThen 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; ?>
October 10, 2015 at 7:31 pm #245337Jld142
ParticipantIs 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 ?
October 9, 2015 at 9:45 pm #245311In reply to: How to make nice looking tabs in groups
Philosopher Rex
ParticipantFound 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;}
-
AuthorSearch Results