• Resolved adxp

    (@psychosis51)


    Hello,

    On the Front-End instructor profile settings, it says that the Profile Photos must be 200×200, but after uploading the photos, regardless of Front-end or Back-end, the images are resized to 80×80 pixels.

    This results in blurry images on the Instructor Profile.

    Is there a way to fix it and display better resolution Instructor Profile images?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter adxp

    (@psychosis51)

    Nevermind, I figured it myself.

    I added a new thumbnail size in the Child theme:
    add_image_size( 'instructor-thumbnail', 200, 200 );

    Then copied wp-content/plugins/tutor/templates/student-public-profile.php
    to
    /wp-content/themes/[CHILD THEME]/tutor/student-public-profile.php

    and changed this part:
    <?php echo get_avatar_url($user_id, array('size' => 150)); ?>
    to
    <?php echo get_avatar_url($user_id, array('instructor-thumbnail' => 200)); ?>

    And then Regenerated the Thumbnails for the new thumbnail size ‘instructor-thumbnail’ using WP-CLI.

    And they no longer appear blurry.

    Maybe I could get away with only regenerating the thumbnails. But I wanted to make sure this won’t be happening.

    Maybe your developers should take a look at this.

    Thread Starter adxp

    (@psychosis51)

    Yeah, tried again. Regenerating the thumbnails only didn’t help. So, it’s a wrong thumbnail size called for the Instructor Profile Picture.
    Hopefully you get to resolve this in the next releases.

    Plugin Support Ashfiqur Rahman Anim

    (@anim07)

    Hello @psychosis51

    Thanks a lot for reporting this to us. We will test this issue in our end and report to our development team as early as possible. We will have a new update within two weeks hopefully the issue will be solved by then.

    Regards

    Thread Starter adxp

    (@psychosis51)

    Looks like it’s not fixed according to the changelog.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Instructor Profile Photos resized to 80×80 pixels’ is closed to new replies.