In this article, we are going to move the wishlist link under the media block after view more images.
The first step is to create file catalog_product_view.xml in custom theme :
Create app/design/frontend/Magemonkey/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>
<move element="view.addto.wishlist" destination="product.info.media" after="-"/>
</body>
</page>
after executing above step, you need to execute the below command
php bin/magento cache:flush
That’s it.

