Search Results for 'buddypress'
-
AuthorSearch Results
-
March 18, 2016 at 4:06 pm #251430
In reply to: Buddypress doesn’t send activation email.
harleycodr
ParticipantNope. I just have Buddypress installed without any email plugins. Just using whatever WordPress uses as a standard! I’d love to get this working as I have an organization that I am proposing we convert to this as our members are very active on FaceBook and why not make our organization’s website interactive with BuddyPress.
March 18, 2016 at 1:32 pm #251426In reply to: Custom member directory styling
danbp
ParticipantPlease don’t call out people individually (this was already told to you by @shanebp)
bp-default is no more the default theme for BP. You can use almost any other existing theme.
While testing, i recommend you to use one of the Twenty’s theme shipped with WordPress.Then to create a child theme and copy into it the needed file from wp-content/plugins/buddypress/bp-templates/buddypress/
As reminder, a page structure contains at least a header, a content and a footer template, and sometimes a sidebar, depending the theme you use.
If you open index.php from wp-content\plugins\buddypress\bp-templates\bp-legacy\buddypress\members\index.php you should get the search form in that template.
Though if you asign the Member page as home page in WP’s Read settings, you won’t have to struggle much with customization.
Read Codex attentively by starting from here.
You may also explain what you want to do exactly and tell which theme you use.
March 18, 2016 at 9:44 am #251419In reply to: How to redirect to user profile
Bowe
Participant@alexandra55 you can achieve this by adding a little snippet to your bp-custom.php or functions.php.
add_action( 'template_redirect', 'themename_redirect_author_archive_to_profile' ); function themename_redirect_author_archive_to_profile() { if(is_author()){ $user_id = get_query_var( 'author' ); wp_redirect( bp_core_get_user_domain( $user_id ) ); } }Hope this helps!
March 18, 2016 at 9:27 am #251417In reply to: WordPress log in issues
Paul Wong-Gibbs
Keymaster> When they log in, they would see my wordpress dashboard.
That itself doesn’t sound like something BuddyPress ought to cause. What caching plugins were/are you running?
March 18, 2016 at 9:16 am #251412In reply to: @mention autosuggest in visual editor
Paul Wong-Gibbs
Keymaster@oakcreative I know this is an old thread, but we (BuddyPress) could change out the
#content_ifrselector for something less specific if that’s what you found you needed to do. Can you confirm?March 18, 2016 at 12:18 am #251401In reply to: BP_AVATAR_DEFAULT_THUMB issue
@mcuk
ParticipantYeah I’ve got both lines in there already. Double checked by commenting out mine and copy paste yours too. To no avail though.
Altering the thumbnail size (width/height) etc is fine, the defines work for those for both the full size and the thumb size. Its just changing the actual image of the thumbnail using
define ( 'BP_AVATAR_DEFAULT_THUMB', $img_url );.Came across this post from a couple of years ago where Henry has had the same issue it seems. Don’t know if it got resolved…
https://buddypress.org/support/topic/bp_avatar_default_thumb-broken/
March 17, 2016 at 11:53 pm #251399In reply to: BP_AVATAR_DEFAULT_THUMB issue
danbp
ParticipantHave you tried both lines i indicated previously ?
Also, what about thumbnail size in WP settings ? Have you checked that ?I’m not very well with attachments… But you’re proably right. See her for all bp_atachment references
http://hookr.io/plugins/buddypress/#index=a&search=bp_attachmentsMarch 17, 2016 at 11:21 pm #251397In reply to: BP_AVATAR_DEFAULT_THUMB issue
@mcuk
ParticipantHi @danbp,
Thanks for reply. Yeah I’ve already got the gravatar code in bp-custom and all the define’s here work fine apart from the
BP_AVATAR_DEFAULT_THUMBfor some reason.Is
define ( 'BP_AVATAR_DEFAULT', $img_url );supposed to change thumbnail avatars too as that is what is happening (which seems to compensate for the thumb define not working but is odd)?In addition to that, are there equivalents for setting the cover-image dimensions? The closest I have come across is the filter
apply_filters( 'bp_attachments_get_cover_image_dimensions', $wh, $settings, $component );. Is that the right one to use?Cheers
March 17, 2016 at 6:55 pm #251388In reply to: Special characters in initiator.name token
shanebp
ModeratorYou might be able to use this filter
apply_filters( 'bp_email_set_subject', $subject, $this );
And run stripslashes on the $subject.Something like:
function richdal_email_subject( $subject, $obj ) { $subject = stripslashes( $subject ); return $subject; } add_filter( 'bp_email_set_subject', 'richdal_email_subject', 15, 2 );But you shouldn’t have to, afaik.
The issue is probably just due to an over-sight.You can open a ticket here, using the same user / pw as this forum.
Include a link to this topic.
And if you try the filter above, the results of that test.March 17, 2016 at 2:16 pm #251380In reply to: BuddyPress 2.5.1 – Maintenance release
dvpl
ParticipantAdditional Information.
I am using sendgrid plugin to send emails, buddypress sending the plain text html. I need HTML email. I also tried to add the following code in function.php but BP_Email showing me null value.
add_filter( 'bp_email_use_wp_mail', '__return_false' ); add_filter( 'bp_send_email_delivery_class', function( $delivery_class ) { return 'Implementwpemailbp'; } ); class Implementwpemailbp implements BP_Email_Delivery { public function bp_email(BP_Email $email){ //add_filter('wp_mail_content_type', 'set_html_content_type'); //wp_mail($to, $subject, $message, $headers = '', $attachments = array()) //remove_filter('wp_mail_content_type', 'set_html_content_type'); var_dump(get_object_vars(BP_Email)); } }Please help what I need to update in above code.
March 17, 2016 at 1:20 pm #251379In reply to: 2.5 HTML email styling not working
Thorsten :-)
ParticipantHi guys,
I found out that mandrillapp.com works as SMTP service with BuddyPress because of replacing all line feeds
("\n")by<br/>in the message body. The issue there is that mandrillapp.com will become an AddOn of MailChimp with day of 27th April this year.For this reason I searched for another SMTP service and tried SendGrid. Both SMTP services can use individual HTML templates, not from BuddyPress but you can style it within your account there. For now SendGrid cannot replace the line feeds as mandrillapp.com does but I contacted the support team of SendGrid and they will work on a solution for it. Hope to get the solution soon.
Best,
ThorstenMarch 17, 2016 at 11:25 am #251377In reply to: 2.5 HTML email styling not working
abuyaman
ParticipantThanks Paul for your quick reply 🙂
That’s a valid point! I am using Easy WP SMTP right now! I need to deliver situation like subscription and welcome emails..
To make clear, would you please advise which plugin is compatible with buddypress! I guess buddypress situation giving me some cool features such as user engagement. However, I wonder if it is integrated with the theme I’ve installed WPLMS since it delivers some emailing features related to courses status as well does WooCommerce.
Thanks again for your support
Cheers
AbuyamanMarch 17, 2016 at 10:44 am #251375In reply to: mytheme/buddypress not working as it should
riofriz
ParticipantHi, i am so sorry for the double post, but i have a urgent need to finish this project, and i am still stuck on the buddypress personalization. On your articles you say is the easiest thing to do, but i find it pretty complicated. Also all the guides i found are probably out to date (we are talking about stuff from 2013/2014, plenty of versions ago.
If i create a folder called buddypress (or community) and paste the bp-legacy content in there, nothing changes.
If i paste the bp-legacy content directly in the theme folder instead, the changes apply, but it looks like buddypress can’t read the stylesheets and js and nothing works.Am i missing something? Maybe i am not good in searching stuff and you have some up to date guides on how to implement buddypress on your wp theme.
Please help me out,
regards,
Fernando.March 17, 2016 at 10:16 am #251374In reply to: 2.5 HTML email styling not working
Paul Wong-Gibbs
KeymasterAny plugin that redeclares
wp_mail()will cause BuddyPress to send plain text emails.
The Postman SMTP plugin redeclares the function inPostman/PostmanWpMailBinder.php.A solution might be to find another SMTP plugin, but it depends what exactly you are using the Postman plugin for.
March 17, 2016 at 10:07 am #251371Paul Wong-Gibbs
KeymasterI think this is the same as https://buddypress.trac.wordpress.org/ticket/6954
March 17, 2016 at 8:20 am #251365In reply to: 2.5 HTML email styling not working
abuyaman
ParticipantHey,
I have the same problem that buddypress just sends plain text emails not HTML?!
Any help is highly appreciated.
Cheers
AbuyamanMarch 16, 2016 at 11:22 pm #251359In reply to: how do i add pagination in my recent topics?
shanebp
ModeratorSounds like you’re mkissing a call to bbpress pagination.
Maybe this?
<?php bbp_get_template_part( 'pagination', 'topics' ); ?>btw – this is BuddyPress support forums – bbpress support forums are here.
March 16, 2016 at 7:43 pm #251345Paul Wong-Gibbs
KeymasterSee https://buddypress.trac.wordpress.org/ticket/6961
I’ve added Secure cookie support, but not HttpOnly because some (maybe all) are accessed with Javascript; I haven’t time to audit all the cookies in that level of detail at the moment, so maybe we can do that in the future if someone helps investigate.
March 16, 2016 at 7:43 pm #251344r-a-y
KeymasterI cannot duplicate this problem with Theme My Login.
I’m using the default Theme My Login settings untouched and was able to go to the
registerpage and successfully submit the form with no redirections.Make sure for BuddyPress that you selected the BuddyPress “Register” page and not TMLs.
Also disable any plugins that might be interferring with registration like New User Approve, etc.
March 16, 2016 at 7:03 pm #251339Paul Wong-Gibbs
KeymasterHi
Good question. You can’t without making changes to the BuddyPress files, which we wouldn’t recommend. This is a great idea for a feature enhancement so I’ve gone ahead and opened a ticket. We’ll have it fixed for BuddyPress 2.6 (I’m working on the patch right now).
Thanks for the suggestion!
March 16, 2016 at 5:28 pm #251332In reply to: Registration page does not work
r-a-y
KeymasterDid you turn on registration on your WP install? See:
https://codex.buddypress.org/getting-started/register-and-activation-pages/March 16, 2016 at 3:11 pm #251328In reply to: Names show twice on the profile cover image
@mcuk
ParticipantThe easiest way is to probably just use CSS on the ID of the name you wish to remove and insert into your style.css file:
#id { display: none; }(find the ID using your browser’s developer tools).
The other option is to find the file creating the second name using its ID and delete the code creating it. If it’s BuddyPress then copy the file into your child theme first before deleting. If it’s your bp-cover plugin creating it, then the approach with CSS is probably easiest.
March 16, 2016 at 1:57 pm #251325In reply to: BuddyPress 2.5.1 – Maintenance release
dvpl
ParticipantHi,
I want to send html email, but it always sending Plain text email content.
Using Thunderbird email client.Template showing in Mails->customize, setting not reflecting in email.
Wordpress : Version 4.4.1
Buddypress : Version 2.5.1Please help what is correct steps to get html emails working.
March 16, 2016 at 10:53 am #251321In reply to: Add @mentions in plugin
btees
ParticipantHi @djpaul,
Thanks a lot for that, now I’m getting somewhere!
Neither mentions.min.js or mentions.js were loading on awpcp pages so I put the following in my footer:
<?php if ( is_page( 4792 ) ): ?> <script type='text/javascript' src='http://mysite.com/wp-content/plugins/buddypress/bp-activity/js/mentions.min.js?ver=2.5.1'></script> <?php endif; ?>I also added the
bp-suggestsclass to the textarea.I’m now getting suggestions on the input box which is a good start!
But when the comments are posted they are still just appearing in plain text.
Is there a css class that should be added to the comment container? Or would this be part of implementing the activity stream and notification integration?
March 15, 2016 at 11:21 pm #251309In reply to: How to delete the Name field from Registration?
David Bisset
ParticipantUsing Gravity Forms is one solution, yes. It’s easy once you have the plugin itself PLUS the “user registration” plugin they offer which i think is open only for the developer license. It completely replaces the BuddyPress registration form. I use it for a variety of sites that need more complex registration forms (there of course is a tradeoff, but one of the pluses is that Gravity Forms are rock solid against registration spam).
-
AuthorSearch Results