You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Images are loaded using http when using the fakeimg.pl service. When using https, this results on a mixed content alert.
The problem is at cherry-portfolio/public/includes/classes/class-cherry-portfolio-data.php, the offending line is: $placeholder_link = 'http://fakeimg.pl/' . $placeholder_arg['width'] . 'x' . $placeholder_arg['height'] . '/'. $placeholder_arg['background'] .'/'. $placeholder_a$
It should be: $placeholder_link = 'https://fakeimg.pl/' . $placeholder_arg['width'] . 'x' . $placeholder_arg['height'] . '/'. $placeholder_arg['background'] .'/'. $placeholder_a$
Please fix that if you can for the next published version.
Thank you very much, best regards,
The text was updated successfully, but these errors were encountered:
Hi,
Images are loaded using http when using the fakeimg.pl service. When using https, this results on a mixed content alert.
The problem is at cherry-portfolio/public/includes/classes/class-cherry-portfolio-data.php, the offending line is:
$placeholder_link = 'http://fakeimg.pl/' . $placeholder_arg['width'] . 'x' . $placeholder_arg['height'] . '/'. $placeholder_arg['background'] .'/'. $placeholder_a$
It should be:
$placeholder_link = 'https://fakeimg.pl/' . $placeholder_arg['width'] . 'x' . $placeholder_arg['height'] . '/'. $placeholder_arg['background'] .'/'. $placeholder_a$
Please fix that if you can for the next published version.
Thank you very much, best regards,
The text was updated successfully, but these errors were encountered: