Open twistedindustries opened 8 years ago
@twistedindustries Have you created a pull request for the fix?
@surfer190 Nope, I just fixed it locally. No pull request. Your more than welcome to create one using my code, I figured this would just be fixed in later releases.
@twistedindustries good job!
@developer-lindner I don't know if you think you are contributing but you aren't. @twistedindustries I would suggesting opening a pull request and fixing if you are so inclined. I would appreciate.
@surfer190 The only thing that has stopped me is being new with git. Recently I've been using it a little more so I'll attempt that.
There is pull request for this fix, is it going to be merged soon?
My bannerslider wasn't returning secure urls when it is supposed to. I resolved this by adding the following in Magestore\Bannerslider\Helper\Data.php `/**
public function isCurrentlySecure() { return $this->_storeManager->getStore()->isCurrentlySecure(); }`
then in Magestore\Bannerslider\Block\Item.php in the function getBannerImageUrl I changed the return to:
return $this->_bannersliderHelper->getBaseUrlMedia($banner->getImage(), $this->_bannersliderHelper->isCurrentlySecure());