- 19
Hi,
On my homepage I have a section with new products, homepage products and best sellers. The size of the original pictures is defined in Admin - media: product thumbnails (in my case 300px), But these are also for the category product pictures and I want a different size on the homepage. This is done by css, but the actual picture is resized from the original which is not good for Google. I changed the code in themes/native/Index.cshtml from
@Html.Widget("home_page_native_new_products")
@Html.Action("HomepageProducts", "Product")
@Html.Action("HomepageBestSellers", "Product")
to:
@Html.Widget("home_page_native_new_products")
@Html.Action("HomepageProducts", "Product",new{productThumbPictureSize=130})
@Html.Action("HomepageBestSellers", "Product",new{productThumbPictureSize=130})
which works perfectly for HomepageProducts and HomepageBestSellers products.
What code should I add to hardcode the picture size for home_page_native_new_products (adding: "Product",new{productThumbPictureSize=130} gives an error) ?
Thanks for any reply!
On my homepage I have a section with new products, homepage products and best sellers. The size of the original pictures is defined in Admin - media: product thumbnails (in my case 300px), But these are also for the category product pictures and I want a different size on the homepage. This is done by css, but the actual picture is resized from the original which is not good for Google. I changed the code in themes/native/Index.cshtml from
@Html.Widget("home_page_native_new_products")
@Html.Action("HomepageProducts", "Product")
@Html.Action("HomepageBestSellers", "Product")
to:
@Html.Widget("home_page_native_new_products")
@Html.Action("HomepageProducts", "Product",new{productThumbPictureSize=130})
@Html.Action("HomepageBestSellers", "Product",new{productThumbPictureSize=130})
which works perfectly for HomepageProducts and HomepageBestSellers products.
What code should I add to hardcode the picture size for home_page_native_new_products (adding: "Product",new{productThumbPictureSize=130} gives an error) ?
Thanks for any reply!