Search Results for 'buddypress'
-
AuthorSearch Results
-
January 8, 2015 at 6:22 pm #231635
In reply to: How to "Like" ?
Ben Hansen
Participanti am not a programmer but i would think coding a simple favorite button into the page template wouldn’t be too tall an ask or require editing core. i also think if it was using the buddypress favoriting it would just be a stop gap until the feature is included in core compatibility wouldn’t be an issue as you you could just remove the extra code but hey what do i know anyway?
😛
January 8, 2015 at 6:01 pm #231633In reply to: How to "Like" ?
Henry Wright
ModeratorIf you need something done immediately then feel free to check out the BP Jobs Forum where you can hire the skills of a developer. Alternatively, BuddyPress has lots of great stuff in the pipeline (coded by volunteer developers) so if you wait for it you’ll get all that for free.
Hopefully this info helps you.
January 8, 2015 at 4:55 pm #231631In reply to: How to "Like" ?
Ben Hansen
Participantwell it sounds like applying the patch is not a matter of skill at this point. this is an open source project, one which is just about to release a major revision so to expect this feature to see the light of day “immediately” is not realistic. the best thing you can do if you don’t want to give up on buddypress is to hire a developer to add the functionality into your theme or via a plugin.
January 8, 2015 at 3:16 pm #231622In reply to: 'Post in' selector in Personal Activity screen?
deshmukh
ParticipantI am a newbie. So, this question.
I have identified that file and that line. So, editing the template file should not be a problem.
But, how do I copy the template over to my theme? I looked at the BP Codex but could not get any hint.
Could you please give a link to the specific codex area I should look at?
Here is an update. Got the BP Codex link after looking around a bit.
For reference, this is the link: https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
All I did was create a buddypress/activity folder in the theme I was using, copied the post-form.php over to that folder and edited it to meet my needs.
Thanks!
January 8, 2015 at 3:15 pm #231621In reply to: How to "Like" ?
disha76
ParticipantOkay I found this https://buddypress.trac.wordpress.org/ticket/5610
This is really a critically ill-experience for the end-users BUT the milestones are being delayed from 2 to 2.1, then to 2.2 and then to 2.3Looks like BP has to be abandoned if this is not provided immediately in the form of a “hack” or plugin. I am unable to execute the patch provided there.
January 8, 2015 at 3:06 pm #231619In reply to: Registration Page not working
disha76
ParticipantGo to wp-admin/network/admin.php?page=bp-page-settings
Find:
Registration
Associate WordPress Pages with the following BuddyPress Registration pages.Now create a New Page and save it with the name – register
and then choose it from the drop-down and save settings.January 8, 2015 at 8:34 am #231608dainismichel
Participantit would be wonderful, if the WPMUDEV team were to come out with its long awaited theme.
currently, i own “Terso Theme” and WPLMS.
you can buy premium wordpress themes that just plain break BuddyPress, so it is necessary to try things out.
i also run a BuddyPress site with the 2012 theme. i don’t know why, but the activity stream is actually nicely styled and works properly, whereas other themes simply turned the activity stream into an ugly mess.
one criteria for the theme is that certain key functionality has to work in a way that makes sense to users.
January 8, 2015 at 7:10 am #231604Mathuseo
ParticipantOk thanks. So I probably have problems to unterstand your answer before. The state of play is:
In .pot-file there is:
Notifications <span class=\"%s\">%s</span>
In .po-file buddypress-de_DE.po there is:Notifications <span class=\"%s\">%s</span>
In .po-file buddypress-de_DE.po there is the translation:Benachrichtigungen <span class=\"%s\">%s</span>That should working I think. But it do not.
January 7, 2015 at 10:31 pm #231599In reply to: How to "Like" ?
Ben Hansen
Participantbrought this up in the buddypress devchat today and will bring it up again when the 2.3 discussion starts 🙂 it does seem like this idea has been brought up in the past and it seems like there is some agreement that an improvement in this department would be worth looking into at least.
January 7, 2015 at 4:21 pm #231592danbp
ParticipantThe pot file doesn’t contain the translation, only the strings you can translate.
The translation is done in po (not pot) file and compiled to a mo file. buddypress-de_DE.mo is the file you have to use.
January 7, 2015 at 4:11 pm #231590In reply to: How to "Like" ?
Ben Hansen
Participantthere has been some discussion of media handling in core I’m not sure the exact status of it but you may want to show up for a dev chat to lobby for your request(s) theres one later today in fact:
Wednesdays at 20:00 UTC
#buddypress on SlackJanuary 7, 2015 at 3:24 pm #231589In reply to: how to remove the wordpress login bar on every post
kiki_er
ParticipantIt’s possible to hide the toolbar for logged out users:
Settings>buddypress>[Settings Tab]
Uncheck “Show the Toolbar for logged out users”
January 7, 2015 at 3:04 pm #231588Mathuseo
Participant@danbp: Thanks for your help. But it’s still not working. What I have done:
(1) Downloaded newest version of buddypress (2.1.1).
(2) Replaced my current buddypress.pot on webserver with the newest version (buddypress/buddypress.pot).
(3) Open the file with poedit.
(4) Looked forNotifications <span class=\"%s\">%s</span>
(5) Added the translationBenachrichtigung <span class=\"%s\">%s</span>
(6) Upload the buddypress.pot again.Is there any mistake in my way to fix that problem? I’m using a child theme if this is important to you.
Thank you for helping me!
January 7, 2015 at 2:39 pm #231587In reply to: how to remove the wordpress login bar on every post
danbp
ParticipantThe Toolbar belongs to WordPress. See WP Codex for how you can rearrange this.
So far i see, your register button is correctly linked to BuddyPress register page.
January 7, 2015 at 2:28 pm #231586danbp
ParticipantAs you can see in the BP source (2.1),
$nav_name = sprintf( _x( 'Notifications <span class="%s">%s</span>', 'Profile screen nav', 'buddypress' ), esc_attr( $class ), number_format_i18n( $count ) );This string in po. is outdated: Notifications <span class=\”count\”>%s</span>
You have to open your actual po file with poEdit (or similar translation tool) and update it with the pot file comming with latest BP version. (/buddypress/buddypress.pot)
Once updated the string to translate will be:
Notifications <span class=\"%s\">%s</span>
who should be translated to:
Benachrichtigung <span class=\"%s\">%s</span>Be aware that poEdit uses different colors to indicate you the translated strings, the untranslated strings AND the fuzzy strings wich are approximative translation. These fuzzy strings must be double checked and validated or modified to work.
Example: difficult to see sometimes the subtle difference between “%s” and “count” when reading too fast ! 😉
January 7, 2015 at 8:33 am #231579In reply to: How to "Like" ?
djsteveb
ParticipantI am guessing it would easy to add a function to one of the like / voter plugins mentioned above ( https://buddypress.org/support/topic/how-to-like/#post-231535 ) – that would also write something to the BP activity table – which would then show likes or votes on posts and such on the activity stream – if those like / vote buttons also work on media that is uploaded through rTmedia (or the new (beta) mediapress plugin) then that would be pulled into the activity feed.
The tricky part beyond that is that buddypress does not have an integrated media thing – so there would need to be some kind of bridge between rtmedia, or mediapress or whatever was handling the media to display “likes” somewhere on the profiles.
Maybe this is something the rtcamp or mediapress plugin guy can add that functionality or someone can create some kind of bridge / api thing to let the three seperate pieces all talk to each other – then you would need code in your theme to grab that database table and display numbers next to whatever…
I think rtmedia’s plugin displays a number next to the media tab in my bp-social theme (for number of pics / videos someone has uploaded) – I wonder where this “# of likes” is to be displayed? Just a total number of likes in the main profile fields area – or number of likes broken down by media uploaded, blog posts liked, activity updates liked, etc.
I like you thoughts on this @disha76 – I’d like to see this work – it sucks that BP does not have integrated media handling – it’s a major issue I have posted about in the past – brings us to this “4 separate things need to talk to each other” in order to get basic functions working / displayed.
it would be awesome if the mediapress guy would offer to give that code to core BP – but then again, it appears there is not much work going into updating / maintaining BP these days – so getting things updated seems to depend more on third parties doing code for side projects money from what I can tell. Which of course means paying for custom stuff today – a future WP or BP update could cause the voting / like plugin to break and need to be recoded (by a dev that may not be responsive) and the media plugins could break.. and your theme may not display correctly – so you may have to try to pay all those people to make updates to keep those functions working in the future – if you can get those people to come back to projects.
So – I hope it happens, but like many things buddypress – I would not hold my breath that something that can be modded to work today will not break in the future without a fix – I’ve had to let a previous buddypress like system go, and a few other plugins from around 1.5 that were nice.
January 6, 2015 at 7:40 pm #231564In reply to: Customizing emails template
ShMk
ParticipantJust a note: in BuddyPress
bp_core_signup_send_validation_emailfunctionwp_mailis called only with the required parameterswp_mail( $to, $subject, $message ), but the function could accept also two optional parameterswp_mail( $to, $subject, $message, $headers, $attachments ).So if you want to edit also the headers and/or attachments you have to edit the BP core file adding the parameters and the corresponding filters.
January 6, 2015 at 6:05 pm #231560In reply to: How to "Like" ?
Henry Wright
ModeratorEven though Jetpack and BuddyPress and both projects under the WordPress ‘umbrella’, they are separate plugins and haven’t been designed to work in that way. That said, both should always be compatible. For example, if you find something stops working as a result of the plugins being installed together and conflicting then you could file a bug report.
January 6, 2015 at 4:22 pm #231556January 6, 2015 at 4:22 pm #231555In reply to: Spam/Bot users
Jmar42
ParticipantNoMoreCaptchas may help. Anti bot technology. https://buddypress.org/extend/plugins/?ps=nomorecaptchas
January 6, 2015 at 12:51 pm #231553In reply to: How to "Like" ?
disha76
ParticipantAs far as I know, Jetpack Likes apply to blog posts only and are completely unrelated to BuddyPress favorites. If you ‘like’ something via Jetpack, then that’s separate to any ‘favoriting’ that you do via BuddyPress.
@henrywright – that is the entire problem. End users want to like/fav/star an item from the stream or in the content itself. They are accustomed in this way. If BP has its own favoriting (though it does not allow to favorit in the blog post itself) it is not an integrated experience for the user. My plugin idea will be ( I am not programmer) to duplicate the comments module, as comments can be now made from everywhere to anywhere – then instead of text entry just allow to click a button and as in comments here also a list of clickers (commentors) would appear as a list of Likers which can be shown in an overlay box.January 6, 2015 at 12:41 pm #231552In reply to: How to "Like" ?
disha76
ParticipantOverall it seems Like is not used or not used properly by BP users. Maybe Jetpack Like is used by many individual blogs.
What is expected usage :
1) I am speaking of an uniform Like button under a blog post or a photo or any content. I should be able to Like it there. I should be also able to like it from an entry in the activity stream if I so wish. This is how usually Like is handled in almost all social scripts as well as real world social nets.
2) On hovering or clicking a Like button or a “Liked” link I should be able to see in a scrollable way the names/avtaars of Likers and the total number of Likes
3) A tab or link in my Profile should show content names / thumbnails of what I liked.
4) The plugin should disable BP core favorites
———-When tested with WP4.1, latest BP and Media plugins like rtmedia, the results are:
- buddypress-like does (4) above , not others
- love-it.1.0.4 does not work
- wp-ulike is not a Network plug in at all, its suitable for individual blogs but as a super admin of WP mutlsite you cannot set its features like you can set features of BP – see issues posted by ronia – this and this. While it is nice for Blogs Like buttons do not appear below Media files or Media posts created by Media plugins
January 6, 2015 at 11:37 am #231551Henry Wright
ModeratorI’m sure there is a way to filter the members loop via BuddyPress but if you want a WordPress approach then check out the
WP_User_Queryclass. Assuming that s2member uses custom fields to distinguish members (I may be wrong on that) you’d want to look at using the Custom Field ParametersRef: https://codex.wordpress.org/Class_Reference/WP_User_Query
January 6, 2015 at 8:46 am #231546In reply to: Urgent! looking for a membership plugin
djsteveb
Participant@rizar9 – buddypress is a membership plugin (and more) – but you may not need that kind of community (that buddypress essentially creates) – you could use a regular ol’ wordpress site and something like s2member if you are set on a membership plugin.
If you find a way to encrypt all the data that gets stored in the database, please let me know – I have been trying to find a good secure contact form system that encrypts into sql and stuff – which I think would be needed for the hippa stuff with some of my clients..
“without a membership plugin, how am I able to keep a record of the past and pending appointment bookings that the person made?” = I am not sure on that really – but I was pointing you to a couple of plugins up above that seem to do some of what you are describing – so maybe you should install those and play with them – see what they report to you and perhaps some small mercenary (paid) modifications of those could piece together what you are describing(?)
January 6, 2015 at 7:20 am #231541In reply to: Urgent! looking for a membership plugin
djsteveb
Participantrizar you don’t need a membership plugin for that- you needs a points for actions / karma type plugin and an appointment setting plugin. I have heard of one like that, I guess something similar to https://wordpress.org/plugins/mycred/ and these https://wordpress.org/plugins/search.php?q=buddypress+appointments&sort= . From my limited experience dealing with some in the medical field in the states, I am not sure what you are describing is technically ethical or legal – but I don’t know for sure, and I am sure those issues vary by region as well. Just a thought you might want to consider before putting too much into that.
-
AuthorSearch Results