-
Slava Abakumov replied to the topic Very strange BP Emails behaviour in the forum How-to & Troubleshooting 8 years, 7 months ago
Got it, thanks! Although that’s a bit strange, considering the code I see (existence of
BP_PHPMailer
).Anyway will be waiting for you here (if possible) before implementing a class, to get some direction or anything (and I’m sure there will be something) useful. I’m not (right now) that email or SMTP-savvy developer.
-
Slava Abakumov replied to the topic Very strange BP Emails behaviour in the forum How-to & Troubleshooting 8 years, 7 months ago
Here is the BP_Email object: http://pastebin.com/deBJBniR
And sure, I didn’t modify it. Only that BP Email to WP Email name filter bridge plugin is installed (from those, that are doing anything with BuddyPress emails)
-
Slava Abakumov started the topic Very strange BP Emails behaviour in the forum How-to & Troubleshooting 8 years, 7 months ago
I’m using Sendgrid plugin to send emails. It replaces the
wp_mail()
function included with WordPress. Also BuddyPress 2.5.2 and WordPress 4.4.2.In the BuddyPress source code I found a filter
'bp_email_use_wp_mail'
, which skips BP’s email handling and instead sends everything towp_mail()
ifwp_mail_content_type()
has been configured for HTML, or…[Read more] -
Slava Abakumov replied to the topic BuddyPress 2.5.2 – Maintenance release in the forum Miscellaneous 8 years, 7 months ago
Awesome.
Thanks, @dcavins! -
Slava Abakumov replied to the topic @mention autosuggest in visual editor in the forum How-to & Troubleshooting 8 years, 9 months ago
Here is one more solution: http://buddydev.com/buddypress/enabling-buddypress-mention-auto-suggestions-on-any-page/
-
Slava Abakumov replied to the topic Change visibility level of Name field from "Everyone" to "Only Me" in the forum How-to & Troubleshooting 8 years, 9 months ago
It’s impossible even from developer perspective. There is no ability to modify visibility for this default Name field, that is created on plugin and xProfile component activation.
-
Slava Abakumov replied to the topic import avatars in the forum How-to & Troubleshooting 8 years, 9 months ago
But there are
bp_before_bp_attachment_crop_args_parse_args
andbp_after_bp_attachment_crop_args_parse_args
filters (search for'bp_attachment_crop_args'
string).So you can hook there and modify
$args['dst_file']
. -
Slava Abakumov replied to the topic import avatars in the forum How-to & Troubleshooting 8 years, 9 months ago
I was wrong, it’s
wp_hash( $absolute_path . time() )
. So it becomes harder… -
Slava Abakumov replied to the topic import avatars in the forum How-to & Troubleshooting 8 years, 9 months ago
I believe
5e960bd5f502cd86b374e5c736f82d15
is just anmd5($user_email)
, so you can easily replicate that too. There is no DB records for users avatars, so it’s safe to put images of proper names in proper places. -
Slava Abakumov replied to the topic Acitivity in the forum How-to & Troubleshooting 8 years, 9 months ago
Check these:
1) you have bbPress activated and properly installed
2) You have this option checked http://take.ms/fMqYZ -
Slava Abakumov replied to the topic Forum help in the forum Miscellaneous 8 years, 9 months ago
I haven’t found any topics that you are referring to. Perhaps, you included too many links and the topic was blocked (or on moderation). Try reducing number of links.
-
Slava Abakumov replied to the topic Unable to disable buddypress in the forum How-to & Troubleshooting 8 years, 9 months ago
Try removing the
/wp-content/plugins/buddypress/
directory using ftp. And after that just reload the Plugins page inwp-admin
area. -
Slava Abakumov replied to the topic New Menu Item return 404 in the forum How-to & Troubleshooting 8 years, 9 months ago
You messed the code. It should be like this: http://pastebin.com/Beb0tNBk
-
Slava Abakumov replied to the topic How to disable BuddyPress register page in the forum How-to & Troubleshooting 8 years, 9 months ago
Created a ticket: https://buddypress.trac.wordpress.org/ticket/6885
Found a solution, though:
function edragonxx_rewrite_slug( $slug ) {
return 'wp-login.php?action=register';
}add_filter( 'bp_get_signup_slug', 'edragonxx_rewrite_slug' );
-
Slava Abakumov replied to the topic How to disable BuddyPress register page in the forum How-to & Troubleshooting 8 years, 9 months ago
Try put this code into bp-custom.php or function.php of your theme:
remove_filter( 'register_url', 'bp_get_signup_page' );
UPD: this solution doesn’t work.
This doesn’t work either:
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
-
Slava Abakumov replied to the topic Comments in the pages of the groups do not update automatically in the forum Showcase 8 years, 9 months ago
Do you have any cache plugins activated? Try deactivating it first and check group’s page.
Deactivate all plugins except BuddyPress – does the issue still remain? -
Slava Abakumov replied to the topic Best/Trusted 3rd Party Poll Extensions in the forum Third Party Plugins 8 years, 9 months ago
Try https://polldaddy.com/ (an Automattic service/plugin) – free and paid versions available. No specific BuddyPress integration. Actually, there are a lot of such plugins in repository.
BuddyPress Social Polling – paid, haven’t use it.
-
Slava Abakumov replied to the topic Need help combining bp_has_members() values to customize members loop in the forum How-to & Troubleshooting 8 years, 9 months ago
Please read carefully what I have written in my code section.
// this function should return array with users ids, like this: array(123,3423,21,34231
Your
my_custom_ids()
returns a comma separated string with redundant text, while it should return an array or just comma separated list. Instead of$custom_ids_str = 'include=' . implode(",",…
[Read more] -
Slava Abakumov replied to the topic Need help combining bp_has_members() values to customize members loop in the forum How-to & Troubleshooting 8 years, 9 months ago
Please post all your code in pastebin, including
my_custom_ids()
. And are you sure, that you have any females online? -
Slava Abakumov replied to the topic PUBLIC MESSAGE in the forum How-to & Troubleshooting 8 years, 9 months ago
That’s the problem with the theme template files (if it redefines BuddyPress templates) or css/js. To make sure that this is with you theme – try to activate via customizer any other theme (like 2015 or 2016), Post button should be on its place.
You can also investigate the source code of your page to make sure that it has a button
#aw-whats-new-s…
[Read more] - Load More
@slaffik
Active 3 days, 12 hours ago