문제

I want to hide 'Skip to the beginning of the images gallery' message from product details page.I am always going to have only single image for all products so I need to hide the message.

How can I achieve this?

enter image description here

도움이 되었습니까?

해결책

Please try to add below two line in your catalog_product_view.xml file inside body tags in your theme

<referenceContainer name="skip_gallery_before.wrapper" remove="true" />
<referenceContainer name="skip_gallery_after.wrapper" remove="true" />

Or create new file in your theme here

app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_product_view.xml

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceContainer name="skip_gallery_before.wrapper" remove="true" />
        <referenceContainer name="skip_gallery_after.wrapper" remove="true" />
    </body>
</page>

After adding above 2 lines please clear Magento cache using below commands :

php bin/magento cache:clean && php bin/magento cache:flush

Hope this will help you!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top