How to increase related products slider image size?
I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?
magento2 magento-2.1
add a comment |
I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?
magento2 magento-2.1
please update your related product slider code.
– HIren Kadivar
12 mins ago
There is no code for this slider. This slider is part of the theme settings.
– Haya
11 mins ago
please check the phtml file or widget code to call the related product slider.
– HIren Kadivar
9 mins ago
@haya have you checked the Ultimo theme magento user guide
– Muhammad Hasham
4 mins ago
add a comment |
I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?
magento2 magento-2.1
I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?
magento2 magento-2.1
magento2 magento-2.1
edited 11 mins ago
Haya
asked 14 mins ago
HayaHaya
701528
701528
please update your related product slider code.
– HIren Kadivar
12 mins ago
There is no code for this slider. This slider is part of the theme settings.
– Haya
11 mins ago
please check the phtml file or widget code to call the related product slider.
– HIren Kadivar
9 mins ago
@haya have you checked the Ultimo theme magento user guide
– Muhammad Hasham
4 mins ago
add a comment |
please update your related product slider code.
– HIren Kadivar
12 mins ago
There is no code for this slider. This slider is part of the theme settings.
– Haya
11 mins ago
please check the phtml file or widget code to call the related product slider.
– HIren Kadivar
9 mins ago
@haya have you checked the Ultimo theme magento user guide
– Muhammad Hasham
4 mins ago
please update your related product slider code.
– HIren Kadivar
12 mins ago
please update your related product slider code.
– HIren Kadivar
12 mins ago
There is no code for this slider. This slider is part of the theme settings.
– Haya
11 mins ago
There is no code for this slider. This slider is part of the theme settings.
– Haya
11 mins ago
please check the phtml file or widget code to call the related product slider.
– HIren Kadivar
9 mins ago
please check the phtml file or widget code to call the related product slider.
– HIren Kadivar
9 mins ago
@haya have you checked the Ultimo theme magento user guide
– Muhammad Hasham
4 mins ago
@haya have you checked the Ultimo theme magento user guide
– Muhammad Hasham
4 mins ago
add a comment |
2 Answers
2
active
oldest
votes
You can change product image size from here:
app/design/frontend/VendorName/ThemeName/etc/view.xml
As per default Magento you can edit following code to change image size for related products in your view.xml
<image id="related_products_list" type="small_image">
<width>340</width>
<height>450</height>
</image>
Find image id which is used for related products image.
Please don't forget to clear cache after change.
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
add a comment |
/app/design/frontend/Infortis/ultimo/etc/view.xml
find :review_page_product_image
and edit width or height here
<image id="review_page_product_image" type="small_image">
<width>285</width>
<height>285</height>
</image>
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f260759%2fhow-to-increase-related-products-slider-image-size%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can change product image size from here:
app/design/frontend/VendorName/ThemeName/etc/view.xml
As per default Magento you can edit following code to change image size for related products in your view.xml
<image id="related_products_list" type="small_image">
<width>340</width>
<height>450</height>
</image>
Find image id which is used for related products image.
Please don't forget to clear cache after change.
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
add a comment |
You can change product image size from here:
app/design/frontend/VendorName/ThemeName/etc/view.xml
As per default Magento you can edit following code to change image size for related products in your view.xml
<image id="related_products_list" type="small_image">
<width>340</width>
<height>450</height>
</image>
Find image id which is used for related products image.
Please don't forget to clear cache after change.
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
add a comment |
You can change product image size from here:
app/design/frontend/VendorName/ThemeName/etc/view.xml
As per default Magento you can edit following code to change image size for related products in your view.xml
<image id="related_products_list" type="small_image">
<width>340</width>
<height>450</height>
</image>
Find image id which is used for related products image.
Please don't forget to clear cache after change.
You can change product image size from here:
app/design/frontend/VendorName/ThemeName/etc/view.xml
As per default Magento you can edit following code to change image size for related products in your view.xml
<image id="related_products_list" type="small_image">
<width>340</width>
<height>450</height>
</image>
Find image id which is used for related products image.
Please don't forget to clear cache after change.
edited 1 min ago
Aasim Goriya
3,3531737
3,3531737
answered 7 mins ago
Satish DubariyaSatish Dubariya
1279
1279
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
add a comment |
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
How can I find the image ID? I already changed the size for image ID related_products_list in view.xml. But I don't see any changes in the frontend?
– Haya
2 mins ago
add a comment |
/app/design/frontend/Infortis/ultimo/etc/view.xml
find :review_page_product_image
and edit width or height here
<image id="review_page_product_image" type="small_image">
<width>285</width>
<height>285</height>
</image>
add a comment |
/app/design/frontend/Infortis/ultimo/etc/view.xml
find :review_page_product_image
and edit width or height here
<image id="review_page_product_image" type="small_image">
<width>285</width>
<height>285</height>
</image>
add a comment |
/app/design/frontend/Infortis/ultimo/etc/view.xml
find :review_page_product_image
and edit width or height here
<image id="review_page_product_image" type="small_image">
<width>285</width>
<height>285</height>
</image>
/app/design/frontend/Infortis/ultimo/etc/view.xml
find :review_page_product_image
and edit width or height here
<image id="review_page_product_image" type="small_image">
<width>285</width>
<height>285</height>
</image>
answered 1 min ago
Rakesh DongaRakesh Donga
1,161212
1,161212
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f260759%2fhow-to-increase-related-products-slider-image-size%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
please update your related product slider code.
– HIren Kadivar
12 mins ago
There is no code for this slider. This slider is part of the theme settings.
– Haya
11 mins ago
please check the phtml file or widget code to call the related product slider.
– HIren Kadivar
9 mins ago
@haya have you checked the Ultimo theme magento user guide
– Muhammad Hasham
4 mins ago