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
1 2 3 4 5 6 |
<?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
1 |
php bin/magento cache:flush |
That’s it.
If you want get query string params in controller file,...
Create di.xml and add the below code Magemonkey/Redirect/etc/frontend/di.xml [crayon-628470a497aee994363342/] Create...
You can try below code to change local date to...
Step 1: First you need to add registration.php file in...
Step1 : Override message.js in current theme file on the...