In Magento 2.3, I need to replace the price of the shipping methods with a % based on the quote total. This % is fixed by country. I thought about overriding the MagentoShippingModelShipping::collectCarrierRates method but I’m not sure. Which model/method do you think I should override? Thank you for any […]
Magento
I got the latest version of magento 2.4.3-p1 and I am getting this js error in the checkout: Uncaught TypeError: Unable to process binding "afterRender: function(){return renderReCaptcha() }" Message: this.settings is undefined initCaptcha http://mytheme.local/static/version1637251618/frontend/Magento/Mytheme/nl_NL/Magento_ReCaptchaFrontendUi/js/reCaptcha.js:117 renderReCaptcha http://mytheme.local/static/version1637251618/frontend/Magento/Mytheme/nl_NL/Magento_ReCaptchaFrontendUi/js/reCaptcha.js:182 afterRender http://mytheme.local/static/version1637251618/frontend/Magento/Mytheme/nl_NL/knockoutjs/knockout.js line 3221 > Function:3 init http://mytheme.local/static/version1637251618/frontend/Magento/Mytheme/nl_NL/Magento_Ui/js/lib/knockout/bindings/after-render.js:17 Does anyone know what is the […]
Question How do I configure db_schema.xml to ignore columns inside the destination table when ‘upgrading/renaming’ a table? Information The module has been refactored and rebuilt with a few more requirements, but using an older module’ information, so multiple destination tables have extra columns. Suppose I have a source table userdata, […]
I have upgraded Magento 2.4.1 to 2.4.3 and it is an enterprise edition. After the update when I logged into the admin catalog->category menu, the left bar that is category tree, add category/sub category section is missing. can anyone faced this issue before
I have created the custom Popup and open the popup when click on process to checkout in minicart. login popup not work when click on ‘Proceed to Checkout’ after the login customer account.It’s work after the page refresh or go to another page. Created app/code/{VendorName}/{ModuleName}/view/frontend/requirejs-config.js and added below code: var […]
What is the best way to add the base product image next to the product name within the downloadable products table that shows in a user’s account area?
I have created a customer totals collector with files defined as below: etc/sales.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Sales:etc/sales.xsd"> <section name="quote"> <group name="totals"> <item name="tax_subtotal" instance="VendorModuleModelSalesTotalQuoteTax" sort_order="449"/> </group> </section> </config> VendorModuleModelSalesTotalQuoteTax <?php namespace VendorModuleModelSalesTotalQuote; use MagentoCustomerApiDataAddressInterfaceFactory as CustomerAddressFactory; use MagentoCustomerApiDataRegionInterfaceFactory as CustomerAddressRegionFactory; use MagentoTaxHelperData as TaxHelper; use MagentoTaxApiDataQuoteDetailsInterfaceFactory; use MagentoTaxApiDataQuoteDetailsItemInterfaceFactory; use […]
Magento 2.4.2-p1 Smartwave Porto theme Amasty extensions We migrated from Magento 1.9.4 using the Magento Migration Tool. We had problems with SQLSTATE[42000]: Syntax error or access violation: 1103 Incorrect table name on additional websites that was resolved by me creating the tables for the additional websites as documented here: SQLSTATE[42000]: […]
I have a bunch of “simple products” that will turn into configurable ones. I would prefer not to recreate them (120!), so if anyone has tips to do it differently (SQL, export/import…, I’d be happy to hear from him! TIA