Local avatars not used for FB style 1
-
Hi there
We noticed that the plugin does not check “userpiclocal” when rendering the image using partials/template_style_1.php
This means that the avatars will stop working after a little while. The local version of the image is being used in the back-end though.
An easy fix would be to add an extra check around line 46 like this:
if($review->userpiclocal!=""){ // Add this line
$userpic = $review->userpiclocal; // Add this line
} else if($review->userpic!=""){ // Change this to "else if"
$userpic = $review->userpic;
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.