Search Results for 'wordpress'
-
AuthorSearch Results
-
March 19, 2016 at 6:41 pm #251514
r-a-y
KeymasterThanks for the report, however BuddyPress doesn’t touch the lost password email. That is a native WordPress email.
Perhaps you need to configure your SendGrid plugin or SMTP.
March 19, 2016 at 4:46 pm #251505In reply to: Do not send one email in buddypress 2.5
shanebp
ModeratorI can confirm, using BP 2.5.1, that the “accepted your friendship request” email is not sent.
The ‘friendship requested’ email is sent.
March 19, 2016 at 7:39 am #251490In reply to: Display notifications
neijisly
ParticipantIt is not possible with wordpress core. I suggest to deactivated your menu and add all page manually like you had do. You can style them properly in the future.
March 18, 2016 at 10:37 pm #251466In reply to: Total number of activity update posts by user
danbp
ParticipantYou can use BuddyPress Member Stats plugin or just this function (in bp-custom.php)
This example is for group updates only. But you have the general idea. And please, keep calm, if you have a big update writers community, totalizing ALL existing updates can became a mess and a real problem which can slow down a site. You’re warned ! 😉
function bms_get_total_group_updates_count(){ global $wpdb, $bp; $user_id = bp_displayed_user_id(); if ( bp_is_active( 'groups' ) ) : // DB query $total_updates = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}bp_activity WHERE component = 'groups' AND type = 'activity_update' AND user_id = '%s' ", $user_id ) ); echo $total_updates; endif; }And for the output somewhere in your template, something like:
<li><?php _e( 'My updates:', 'buddymemberstats' ); ?> <?php bms_get_total_group_updates_count(); ?></li>Yes, i’m the plugin author. 😉
March 18, 2016 at 9:29 pm #251460In reply to: Wrong emails editing
shanebp
ModeratorThanks for providing further info.
Please create a ticket here using the same user & pw you use for these forums.
And include a link to this topic.
March 18, 2016 at 9:16 pm #251458In reply to: Wrong emails editing
palla5000
ParticipantHi,
thanks for your reply.– By ‘save’, you mean update?
Yes, sorry for my english– Have you tried editing and updating any other emails?
– If so, did the same issue occur?
Yes. If we update any mail, the mail are saved as post type, not as BuddyPress Emails type (bp-email type).– Have you tried using the Email Repair tool?
– wp-admin > Tools > BuddyPress > ‘Reinstall emails (delete and restore from defaults).’
This will delete your current emails including any edits you made to them.
“Reinstall emails” work fine but the problem is the same: all new mails are not updatable.– What version of WP are you using?
We use WordPress 4.4.2.BR
March 18, 2016 at 8:38 pm #251457In reply to: 2.5 HTML email styling not working
Thorsten :-)
ParticipantHi @abuyaman
I found a HTML solution that works now with WP/BP.
1. Use WP Better Emails
https://wordpress.org/plugins/wp-better-emails/2. Use SAR Friendly SMTP
https://wordpress.org/plugins/sar-friendly-smtp/And if you don’t have a SMTP service, use SendGrid.com
Tested and it works for like a charme.
March 18, 2016 at 6:20 pm #251445In reply to: Unable to Set BP Pages
pcpro178
ParticipantNo I haven’t because aren’t those pages already built into WordPress? For example, I can go directly to the address mydomain.com/register. I don’t want to reinvent the wheel.
March 18, 2016 at 5:39 pm #251439In reply to: Profile is Forcing avatar upload
wiziwiz
ParticipantI am using word press social login https://wordpress.org/plugins/wordpress-social-login/
March 18, 2016 at 4:06 pm #251430In 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: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:23 am #251416In reply to: cover images won’t work on 4.2.2 latest buddypress
Paul Wong-Gibbs
KeymasterHave they ever worked before for you? What plugin or theme or WordPress changes have you made since then?
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 10:07 am #251371Paul Wong-Gibbs
KeymasterI think this is the same as https://buddypress.trac.wordpress.org/ticket/6954
March 17, 2016 at 10:05 am #251370In reply to: Image file corrupts in buddydrive
Paul Wong-Gibbs
KeymasterFor BuddyDrive support, post on the WordPress.org forums — thank you.
March 16, 2016 at 10:09 pm #251352pattz2016
Participanthi,
I have created a child theme , named it Frontier-child and pasted the code as below. But still the WP LOGO is there.<?php
//
// Recommended way to include parent theme styles.
// (Please see https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
//
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}
//
// Your code goes below
//function remove_wp_logo( $wp_admin_bar ) {
if ( !current_user_can( ‘administrator’ ) && !is_super_admin() ) {
$wp_admin_bar->remove_node( ‘wp-logo’ );
}
}
add_action( ‘admin_bar_menu’, ‘remove_wp_logo’, 999 );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 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 15, 2016 at 11:03 pm #251308In reply to: what widget ?
Paul Wong-Gibbs
KeymasterIt’s hardcoded. If you know how to customise a theme and write PHP, you can see the implemetnation: https://meta.trac.wordpress.org/browser/sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php#L355
bbPress does have shortcodes, I’d suggest doing that instead. I don’t know what the shortcode is, I’d suggest searching on bbpress.org.
March 15, 2016 at 10:56 pm #251305In reply to: BP Pages Not Displaying
Paul Wong-Gibbs
KeymasterDo WordPress post permalinks work? Have you tested them to be sure?
March 15, 2016 at 7:49 pm #251300@mcuk
ParticipantThe code doesn’t remove the bar, it just removes the WordPress logo in the top left.
The code is put in your functions.php file. It is a file you create (if you haven’t already done so) and put in your child theme folder.
March 15, 2016 at 7:17 pm #251296pattz2016
Participantthanks for your response, I do not want to remove WP adim bar, because that is where the notifications appear. I only want to remove the wp-logo. the drop down wordpress menu at the side of the top bar.
Not the bar itself
March 15, 2016 at 6:52 pm #251294@mcuk
ParticipantIf you mean the WP bar at the top of the screen, then this might help. Add to functions.php
function remove_wp_logo( $wp_admin_bar ) { if ( !current_user_can( 'administrator' ) && !is_super_admin() ) { $wp_admin_bar->remove_node( 'wp-logo' ); } } add_action( 'admin_bar_menu', 'remove_wp_logo', 999 );This will remove the WordPress Logo (and therefore the dropdown menu that appears with the link to WordPress.org). If you just want to remove the WordPress.org link in that menu then replace
'wp-logo'with'wporg'in the function above.March 15, 2016 at 5:55 pm #251289In reply to: Missing Add Friend Button
@mcuk
ParticipantHaven’t encountered that problem myself so wouldn’t really know where to start. The code above does work fine with notifying the person you are trying to be friends with (I’ve just double checked on my project).
Might even be a conflict with something in your theme or another plugin you are using. You could also try disabling other plugins to check if that is an issue and switching themes to one of the WordPress default themes to see if it works as it should.
Only other suggestion I can give is to start a new forum thread and maybe someone else has encountered that issue.
-
AuthorSearch Results