The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Search
Close
AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

Filter by custom fields

Topic prefix

AI Assistant
Overriding user ava...
 
Notifications
Clear all

[Solved] Overriding user avatar

3 Posts
2 Users
0 Reactions
2,614 Views
(@antinopol)
Posts: 2
New Member
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
 
[#2686]

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

image

After installing wpDiscuz

image

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
(@antinopol)
Posts: 2
New Member
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
Asti
 Asti
(@asti)
Posts: 8257
Illustrious Member Support
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