How to increase related products slider image size?












0















I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?










share|improve this question

























  • 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
















0















I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?










share|improve this question

























  • 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














0












0








0








I am using Ultimo theme. Does anyone know how to increase the related products slider image size on the product page in magento 2?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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










2 Answers
2






active

oldest

votes


















1














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.





share


























  • 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



















0















/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>




share























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    1














    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.





    share


























    • 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
















    1














    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.





    share


























    • 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














    1












    1








    1







    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.





    share















    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.






    share













    share


    share








    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



















    • 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













    0















    /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>




    share




























      0















      /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>




      share


























        0












        0








        0








        /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>




        share














        /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>





        share











        share


        share










        answered 1 min ago









        Rakesh DongaRakesh Donga

        1,161212




        1,161212






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Polycentropodidae

            Magento 2 Error message: Invalid state change requested

            Paulmy