Magento 2 : How to override place order button during payment on cash on delivery
please help me how to override the default place order button functionality in Magento during cash on delivery selection
please help me how to override the default place order button functionality in Magento during cash on delivery selection
We would like to create widgets with layout updates and load these widgets in a specific place on the category list page. So we would like to create a widget from admin, load a CMS static block and then select… Read More »Load widgets in specific position on category list page – Magento2.4
I’m using magento version 2.4.1 and composer version 1.10.25. i tried to update it to magento 2.4.3-p1 using composer but i always received an error. First i run this command: composer require magento/product-community-edition=2.4.3-p1 –no-update then i run php -d memory_limit=-1… Read More »Failed to upgrade from Magento 2.4.1 to Magento 2.4.3-p1
I’m working with a Magento 2.3 store and looking to customize the search result logic – fulltext search. Specifically, I want the search results to consider the “Position” attribute of products, which is set in Admin -> Catalog -> Categories… Read More »Customizing Magento 2.3.4 Search to Include Product ‘Position’ from Categories in Result Sorting
On Magento 2.4.6: When our ERP executes an API request on the PUT method /all/V1/product/:sku with the following JSON content: { “product”: { “custom_attributes”: [ { “attribute_code”: “delais”, “value”: “30” } ] } } Another attribute, warranty_type, also gets updated… Read More »Issue with ERP API PUT Request: Unintended Update of `warranty_type`
module.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd”> <module name=”Magetrend_Custom” schema_version=”2.0.0″ setup_version=”2.0.0″> <sequence> <module name=”Magetrend_Email”/> </sequence> </module> </config> registration.php <?php MagentoFrameworkComponentComponentRegistrar::register( MagentoFrameworkComponentComponentRegistrar::MODULE, ‘Magetrend_Custom’, __DIR__ ); event file C:xampphtdocsmyshopappcodeMagetrendCustometc events.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Event/etc/events.xsd”> <event name=”magetrend_email_collect_additional_vars”> <observer name=”mtemail_custom_var” instance=”MagetrendCustomObserverCustomVar”/> </event> </config> observer… Read More »Not Display Product Name in the Email template?
I have created the registration.php, theme.xml,composer.json in app/design/frontend/myvendorname/themename_theme/ and _extends.less in app/design/frontend/myvendorname/themename_theme/web/css/source. Ran the following commands rm -r /home/magento/pub/static/* /home/magento/var/view_preprocessed/* /home/magento/var/cache/* cp /root/.htaccess /home/magento/pub/static/ #re-copying htaccess above to static folder just in case it got lost magento cache:flush magento setup:static-content:deploy… Read More »New extended theme from luma doesnt show style-l or style-m css
Magento 2.4.6 I have a very specific requirement. I want to not load images in the media gallery on the product page, if the image is a placeholder. Do not ask why :-D, its a requirement and can not be… Read More »Skip loading and showing certain images in fotorama.js
After upgrading my magento verison to 2.4.6. I am not able to place order due to payment method not working. For paypal it is giving error that internal error occured. For federal wire and other methods it is saying please… Read More »Payment method not working in magento 2.4.6
I want to optimize my website and remove unused javascript/jquery and also defer or lazy load javascript/jquery for better performance any tools or techniques to achieve this?