Search
Close
AI Search
Classic Search
Notifications
Clear all
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Hello!
The site has an LMS plugin into which users upload their avatars. I want them to appear in comments, I was able to replace wordpress avatars with LMS avatars using a hook, but wpDiscuz won't load them. Help me find a solution.
Standard comments
After installing wpDiscuz
Here is the hook by which I will successfully override the Wordpress avatars:
add_filter('get_avatar_data', 'lms_avatar', 10, 2);
function lms_avatar($args, $id_or_email){
$lmsUrl = get_user_meta($id_or_email->user_id, 'stm_lms_user_avatar', true);
if ($id_or_email->user_id >= null && $lmsUrl != null){
$args['url'] = $lmsUrl;
return $args;
} else {
$args['url'] = get_stylesheet_directory_uri() . '/img/avatar-user.jpg';
return $args;
}
}
Posted : 01/08/2021 12:06 am
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
I figured out, it turns out that the plugin overrides the function and the $ id_or_email argument is already an ID.
add_filter('get_avatar_data', 'lms_avatar', 10, 2);
function lms_avatar($args, $userId){
//Получаем путь к аватару, загруженному через lms
$lmsUrl = get_user_meta($userId, 'stm_lms_user_avatar', true);
//Если Id пользователя больше или равно 0 и путь к аватару lms существет, то заменяем на этот путь к аватару
if ($userId >= null && $lmsUrl != null){
$args['url'] = $lmsUrl;
return $args;
}
//Иначе применяем картинку аватара по умолчанию, которая лежит внутри папки темы ../img/avatar.jpg
else {
$args['url'] = get_stylesheet_directory_uri() . '/img/avatar-user.jpg';
return $args;
}
}
Posted : 01/08/2021 2:00 am
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Thank you for letting us know. Glad to hear that the issue is fixed.
In case you want to say thank you! 🙂
We'd really appreciate if you leave a good review on the plugin page.
This is the best way to say thank you to this project and the support team.
Posted : 02/08/2021 12:23 pm



