Search Results for 'buddypress'
-
AuthorSearch Results
-
October 12, 2015 at 1:59 pm #245378
Paul 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 commaYou 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 commaOctober 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 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;}October 9, 2015 at 8:53 pm #245310In reply to: How to make nice looking tabs in groups
Philosopher Rex
ParticipantNote that this doesn’t just change tabs in groups, but in the profile as well. I had some issues ‘fitting’ in some words without making the text too small or resorting to wrapping the word (another CSS rule); so instead I used poedit to change the menu text.
You can read about how to do that here: https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
October 9, 2015 at 2:17 pm #245299In reply to: Plugin exclusive members area?
Venutius
ModeratorYeah I’m not aware of any that integrate with Buddypress, all of them seem to be their own variants on WordPress.
October 9, 2015 at 1:53 pm #245297In reply to: How Mediapress works: guide.
Venutius
ModeratorWith Mediapress you need to save the settings at least once in order to get it to activate.
After that you need to set a Gallery page in the Buddypress page settings.
With that completed, users can create their own galleries and group admins can choose to have their own galleries too.
Mediapress is still in Beta and changes pretty much daily so be sure you have the latest download.
October 9, 2015 at 12:58 pm #245293In reply to: Remove ‘Delete’ tab
danbp
Participanthi @fahrenheit80,
the solution is given on this topic:
https://buddypress.org/support/topic/how-to-remove-tabs-from-group-admin-nav-2/October 9, 2015 at 12:41 pm #245290In reply to: Help with BuddyPress menu
Venutius
ModeratorMaybe you could ask on the WordPress Forums? This is more a wordpress issue than Buddypress.
October 8, 2015 at 8:15 pm #245275In reply to: Activity privacy plugin
October 8, 2015 at 5:31 pm #245270In reply to: CHANGE BACKGROUND ERROR/FIREBUG W/PICTURES
canadianmusicnetwork
ParticipantGot It!
BuddyPress is one of the most amazing social network platforms you can have!
Learning is amazing with Buddypress!
Thanks a lot …Keep in touch!!!
YOU ROCK!
October 8, 2015 at 4:01 pm #245268In reply to: Is multi-site the right way to go?
mrsminkie
ParticipantIt sounds as though I’d be making the site much more cumbersome than it needs to be, and it already has a lot of plugins for functionality.
I will test the multi-site with secondary BuddyPress blog one day, but for now, I’ve decided to just try and work within the theme as best I can.
I do think that multi-site, although perhaps overkill, is what I needed to be able to keep my userbase constant and able to log into either site (area), while allowing content to be shared across the network.
Thanks for your advice!
October 8, 2015 at 2:24 pm #245262In reply to: Is multi-site the right way to go?
Henry Wright
ModeratorDo you mean BuddyPress users accessing the main WP site? BuddyPress users and WordPress users are the same, perhaps with different roles and capabilities but they all live in the users table. So two-way access shouldn’t be a problem.
If you feel multisite is the way to go, then I’d suggest you set up a test install first to try it out. Creating a network will add lots of new tables to your install and rolling back won’t be easy.
October 8, 2015 at 1:00 pm #245256In reply to: Is multi-site the right way to go?
mrsminkie
ParticipantAlso, this post tends to tell me that this is what I need: https://codex.buddypress.org/legacy/getting-started/install-buddypress-on-a-secondary-blog/
Whereas WordPress says that multi-site is very separated and not for shared users. There is a lot of conflicting information out there.
October 8, 2015 at 12:47 pm #245255In reply to: Is multi-site the right way to go?
mrsminkie
ParticipantI understand what you’re saying about keeping things simple but unfortunately, the BuddyPress theme is very much orientated towards being a social network and isn’t suitable for standard pages, nor is it very easy to create custom templates for – I have already created quite a few to handle custom post types.
Additionally, the main menu of the BuddyPress theme is an extension of the admin bar, and it doesn’t support a dropdown menu. I could only add choices to the profile dropdown (with profile, photos, friends etc.) which is far from ideal.
October 8, 2015 at 11:51 am #245253In reply to: Is multi-site the right way to go?
Henry Wright
ModeratorIf I understand your requirements right, I wouldn’t use multisite for this. I also wouldn’t use separate installs.
Considering you just need a main site area and a BuddyPress area, I would aim to keep things as simple as possible and address this problem with a custom theme. You can add a /your-theme/buddypress/ folder which contains all of your BuddyPress templates. Then it’s just a case of styling both the main area and your BuddyPress pages to look consistent.
October 8, 2015 at 5:47 am #245240In reply to: Admin bar icons do not display on some devices
AndyCEODigital
ParticipantWhy has this thread not been answered. I installed buddyPress yesterday, and I’m having the same problem on my Galaxy Not 3.
October 8, 2015 at 5:11 am #245239In reply to: How customizable are the registration forms?
Henry Wright
ModeratorThis all sounds feasible. BuddyPress is very developer friendly so building your own web apps and hooking into BuddyPress shouldn’t be a problem.
The registration form is configurable and is fully customisable via the BuddyPress template hierarchy.
Also, BuddyPress is free, so there’s no need to purchase.
October 7, 2015 at 9:57 pm #245235danbp
Participant@jrunfitpro, thought BP Attachment is great, and MediaPress (files are on github) also.
October 7, 2015 at 6:32 pm #245227In reply to: ACTIVITY STREAM TEXT COLOR
William
Participant@canadianmusicnetwork I don’t think you’re placing the code in the right place ( in a file called style.css). I tested the code on my buddypress site and changed the color to WHITE and it’s actually working.
Here’s the code again:
#buddypress #activity-stream p { margin: 5px 0px; color: #FFFFFF; }I logged in successfully.
-
AuthorSearch Results