Search Results for 'buddypress'
-
AuthorSearch Results
-
November 27, 2013 at 5:54 pm #174894
In reply to: Registration page link
@mercime
Participant@sanjusmit What have you done so far in setting up BP site? Have you allowed registration in your installation via Settings > General? Have you gone to Settings > BuddyPress > Pages and assigned a Page to Registration?
November 27, 2013 at 5:21 pm #174893In reply to: Guys….. What is the point of including filters if…
alealealeo
Participant1- 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.
November 27, 2013 at 4:24 pm #174889In reply to: Member Count Not Working With Custom Registration
hughshields
ParticipantTo be more specific:
I use BP Registration Options to approve new users in order to keep a clean member profile directory with completed profiles and avatars. The only problem is that the member count on the Member Directory page is not updating.
Any insight into how Buddypress adds to the member count. I believe it is when a new user logs in for the first time but I cannot locate the code to figure out why it is broken.November 27, 2013 at 1:57 pm #174883In reply to: Sorting by xprofile field
lz430
ParticipantI 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.
November 27, 2013 at 12:53 pm #174877In reply to: Guys….. What is the point of including filters if…
alealealeo
ParticipantBut strictly speaking, it doesn’t seem like a bug, it seems like it was intentional way of working.
Can a BuddyPress staff member confirm there is nothing we can do about this in the current version? Is there any way to rebuild or regenerate the data to use filters/code alterations?
When you save activity data to the database, surely the “translatable/filterable/variable” parts of strings (such as “X posted an update”, etc) wouldn’t be included and would be put together using functions?
The way it is now (and without being able to rebuild) customizing the plugin seems strictly limited by nature.
November 27, 2013 at 7:23 am #174868In reply to: [Resolved] Button Issues
@mercime
Participant@alleycakes add the following to your stylesheet
#buddypress input[type=”submit”],
#buddypress input[type=”submit”]:hover {
background: transparent !important;
border: none !important;
color: #fff !important;
}#buddypress .standard-form div.submit {
padding: 0 !important;
}#buddypress .standard-form div.submit input {
margin-right: 0 !important;
}November 27, 2013 at 5:22 am #174866In reply to: Group mods bug in Beta 1.9
@mercime
ParticipantNovember 27, 2013 at 3:28 am #174865@mercime
Participant@gaurav190092 Not sure why that’s happening in your installation. WP/BP versions? Theme used? Plugins activated? Have you done some basic troubleshooting like deactivating all plugins except BuddyPress and changing to Twenty Twelve theme?
November 27, 2013 at 3:28 am #174864In reply to: [Resolved] Help translating a string in .po file
danbp
ParticipantYou have %d new message from %sThis 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.potNovember 27, 2013 at 3:05 am #174862In reply to: Guys….. What is the point of including filters if…
@mercime
Participant@alealealeo suggestion: file new ticket at https://buddypress.trac.wordpress.org/
log in using WP username and password.November 26, 2013 at 10:23 pm #174853Shmoo
ParticipantDon’t hold back on posting more code-snippets on here 🙂
It’s still not 100% what I was hoping for but at least I’ve removed the default ‘ XX time ago ‘ string.
I can’t believe how difficult it is to customize the Activity-stream against ofter BuddyPress functions. The Activity is BuddyPress’ backbone that connects everything together but there are barely template_tags(); available to use.
Look at this, those are 5 different activity_items who are all getting included by a single template-tag(); called bp_activity_action() how could you ever make HTML and CSS around something like this?
– User_Name
– Activity_Type
– User_Avatar_Small
– Activity_Type_Title
– Activity_Date-/Time
.
November 26, 2013 at 10:21 pm #174852In reply to: Sending username with activation email
aces
ParticipantPlease don’t hijack other people’s topics, especially when they are so ancient.
There is a a way to add the username on the second link down on my post: https://buddypress.org/support/topic/dashes-in-usernames/#post-169926.
If your issue is about buddypress removing hyphens then it looks like it will be fixed for bp 1.9 due quite soon – See the last post on the first link for more info…
November 26, 2013 at 9:39 pm #174851In reply to: Sorting by xprofile field
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 > SettingsNovember 26, 2013 at 8:02 pm #174844galawa
ParticipantHi,
i was thinking if there is a plugin for chatting like that of facebook,skype or yahoo messenger where it shows some one if he is writing or not.
i was thinking if there is a plugin for an audio and video call. is there?
also a plugin for a group chat.is there?
Do buddypress have such a plugin?
what about the plugin for connection, like people you may know just like Facebook?November 26, 2013 at 7:36 pm #174841In reply to: [Resolved] BP groups limit?
Shmoo
ParticipantI guess loading-times will always be a problem because i’ve never seen a BuddyPress website that loaded regular speed..
November 26, 2013 at 7:11 pm #174840In 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.November 26, 2013 at 1:40 pm #174829In reply to: How to allocate personal URL to profile page?
Shmoo
ParticipantWhat do you mean by change this to a different page ?
You can change the layout of the profile-page and change it to what ever you want it to look like.
If you wanna change this page you can look in the template files..Or redirect it to a complete different page ? – but why would you do that, if somebody clicks on a name it expects to go to the profile-page and not to a blog-index for example..
November 26, 2013 at 9:58 am #174823In reply to: Buddypress template conflict
Adhitya Fernando
ParticipantHi Hugo, thanks you so much for your kind reply.
At the time I created this post, my Buddypress template is “messed up” in every browser.
Then I tried to solve it, I deactivated some plugin and found that it seems there is a conflict between several plugin with Buddypress.
After that, my BuddyPress already get well again..Thank you so much.
November 26, 2013 at 9:54 am #174822bartom34
ParticipantHi all,
Could I use this piece of code in the current BuddyPress version ?
I want people check-in my Custom Post Type “beer” when they register a activity.
Thanks for your help,
TomNovember 26, 2013 at 9:06 am #174821In reply to: 1.9 Beta testing
Hugo Ashmore
ParticipantNot 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.
November 26, 2013 at 6:54 am #174818In reply to: 2.0 top features – ideas
SK
Participant@boonebgorges talks about some of the ugly and unscalable joins here
November 26, 2013 at 6:45 am #174817In reply to: 2.0 top features – ideas
SK
Participanta 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.
November 26, 2013 at 12:07 am #174809Prince Nerd
Participant@galawa Greetings, I haven’t had time to look over these, but figured it may be worth sharing. I was searching earlier today and came across one that was said to be the best chat plugin; however 100 tabs of browsing later and I can find it 🙁
I have tried a few plugins that this site recommends and they have been helpful: http://www.designrazzi.com/2013/free-wordpress-chat-plugins/
Just a second option; haven’t tried any:
http://www.freebiewebresources.com/2013/05/best-wordpress-live-chat-plugins.html
I’m still working out some basic BuddyPress issues so please let me know which one works the best for you. Hope this helps and thanks
November 25, 2013 at 9:50 pm #174807In reply to: bp live notification plugin
Jigesh
Participant@afercia, Hurray! finally i solved this,
here is the solution on my blog:
Hope this helps someone. thanks.
November 25, 2013 at 6:02 pm #174798In reply to: Rich text editing for profile fields
@mercime
Participant@harpeml what would you be using it for? You could check out how TinyMCE’s added to screen at https://wordpress.org/plugins/buddypress-docs/
-
AuthorSearch Results