Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,526 through 14,550 (of 69,016 total)
  • Author
    Search Results
  • #231635

    In reply to: How to "Like" ?

    Ben Hansen
    Participant

    i 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?

    😛

    #231633

    In reply to: How to "Like" ?

    Henry Wright
    Moderator

    If 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.

    #231631

    In reply to: How to "Like" ?

    Ben Hansen
    Participant

    well 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.

    #231622
    deshmukh
    Participant

    I 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!

    #231621

    In reply to: How to "Like" ?

    disha76
    Participant

    Okay 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.3

    Looks 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.

    #231619
    disha76
    Participant

    Go 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.

    #231608
    dainismichel
    Participant

    it 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.

    Mathuseo
    Participant

    Ok 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.

    #231599

    In reply to: How to "Like" ?

    Ben Hansen
    Participant

    brought 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.

    danbp
    Participant

    The 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.

    #231590

    In reply to: How to "Like" ?

    Ben Hansen
    Participant

    there 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 Slack

    https://wordpress.slack.com/messages/buddypress

    #231589
    kiki_er
    Participant

    @florangelie,

    It’s possible to hide the toolbar for logged out users:

    Settings>buddypress>[Settings Tab]

    Uncheck “Show the Toolbar for logged out users”

    Mathuseo
    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 for Notifications <span class=\"%s\">%s</span>
    (5) Added the translation Benachrichtigung <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!

    #231587
    danbp
    Participant

    The 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.

    danbp
    Participant

    As 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 ! 😉

    #231579

    In reply to: How to "Like" ?

    djsteveb
    Participant

    I 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.

    #231564
    ShMk
    Participant

    Just a note: in BuddyPress bp_core_signup_send_validation_email function wp_mail is called only with the required parameters wp_mail( $to, $subject, $message ), but the function could accept also two optional parameters wp_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.

    #231560

    In reply to: How to "Like" ?

    Henry Wright
    Moderator

    @disha76

    Even 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.

    shanebp
    Moderator

    Have you seen this?

    #231555

    In reply to: Spam/Bot users

    Jmar42
    Participant

    NoMoreCaptchas may help. Anti bot technology. https://buddypress.org/extend/plugins/?ps=nomorecaptchas

    #231553

    In reply to: How to "Like" ?

    disha76
    Participant

    As 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.

    #231552

    In reply to: How to "Like" ?

    disha76
    Participant

    Overall 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
    Henry Wright
    Moderator

    Hi @christoph744

    I’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_Query class. 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 Parameters

    Ref: https://codex.wordpress.org/Class_Reference/WP_User_Query

    #231546
    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(?)

    #231541
    djsteveb
    Participant

    rizar 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.

Viewing 25 results - 14,526 through 14,550 (of 69,016 total)
Skip to toolbar