Mircea Zaharia Posted December 24, 2020 Share Posted December 24, 2020 Hello, I want to improve the loading speed of my site and I want to add dimension in image url. I have to modify a file .tpl but I don't know which one and where is it. As you can see from picture atached there is no dimension (height x width) in my image's url. Thank you Link to comment Share on other sites More sharing options...
ClassyDevs Posted December 25, 2020 Share Posted December 25, 2020 Hello, @Mircea Zaharia Which PrestaShop version and theme you are using. Secondly , which page url it product details or other page. The code show it is from any thirdparty theme. If you told then we can try to help you. which file this code belongs to Thank you Link to comment Share on other sites More sharing options...
Mircea Zaharia Posted December 25, 2020 Author Share Posted December 25, 2020 Hi, Prestashop 1.7.6.5 and Fashion Theme (third party). Photo is just an example to see that image url don't have the dimensions in it. How can I add dimension in all image url name ? Link to comment Share on other sites More sharing options...
ClassyDevs Posted December 27, 2020 Share Posted December 27, 2020 Hello, @Mircea Zaharia Please use this {if isset($product.cover.bySize)} width="{$product.cover.bySize.home_default.width}" height="{$product.cover.bySize.home_default.height}"{/if} code like <img {if isset($product.cover.bySize)} width="{$product.cover.bySize.home_default.width}" height="{$product.cover.bySize.home_default.height}"{/if} src="{$product.cover.bySize.home_default.url}" alt="{if !empty($product.cover.legend)}{$product.cover.legend}{else}{$product.name|truncate:30:'...'}{/if}" data-full-size-image-url="{$product.cover.large.url}" /> It will be like that. https://pscreenshot.com/i/h5cR27 Thank you Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now