Start a new topic

Is it possible to replace the loading images from http to https?

Hello, 


Is it possible to replace the loading images from http to https?


At present:   [product_image_link(2)] -----> http://www.xxxx.com/sample.jpg 



What version of the module are you using? This feature already fixed in latest 2.7.x and 1.8.x version of the module. 

If you are using an older version of the module you can apply following fix:

1) Open file modules/prestabay/models/ProfileProductModel.php

2) Find line of code

//$imgPathValue = str_replace("http://", "https://", $imgPathValue);

replace with

$imgPathValue = str_replace("http://", "https://", $imgPathValue);



This will force transfer all images with https format. 

Login or Signup to post a comment