I have created a configurable product with several configurations. Some simple products that represent a distinct configuration have their own dedicated special price, which is lower than the actual price. However, not all of these simple products have their own dedicated special price. When I load the page of the […]
Magento
All of a sudden a cache tag was added to my env.php which made made my Magento 2.4.4 crash. I cannot run cache flush or anything without getting the following error: Notice: Undefined index: frontend in /var/www/magento2/vendor/magento/framework/App/Cache/Frontend/Pool.php on line 90 When I remove the cache-tag, everything works are normal again. […]
I am trying to connect our Magento2.3.4 to a platform that pulls orders into it . It asks for an OAuth token and Magento Endpoint. I logged into my Magento admin panel when to Systems -> Integrations and clicked Add new Integration Added the needed information and clicked save. I […]
I don’t have access to templates just permission to add/edit content in Admin. Typically I use this widget code to insert a block onto a CMS page: {{widget type=”MagentoCmsBlockWidgetBlock” template=”widget/static_block/default.phtml” block_identifier=”homepage_12″}} If I wanted to make a list of all of our blocks on a page that contained the word […]
We are generating payment token against credit card for this we build a custom payment module which is working fine, now we want to enable the customer to save the card and choose saved card during the checkout to make the checkout process faster. We wil not make any transacton […]
The store front shows 500 Internal server error after I followed all instructions in the article here to upgrade Magento. On checking the version of Magento with the command bin/magento --version after the upgrade process, I see this old version. Running git status shows what’s seen in the image below. […]
As I ran the command composer require -w as part of the process to upgrade Magento 2.4.2 to 2.4.4, I found the error seen in the image below. Below is the article I’m referring to upgrade Magento. https://www.mgt-commerce.com/tutorial/how-to-upgrade-magento-2-4-3-to-magento-2-4-4/ I request someone to share the list of commands to be run […]
I am creating a second store in the same website, for that i followed blow link https://magefan.com/blog/create-multiple-stores-in-magento-2. After Created a new store it’s looking as below. Then in that store I changed the base url and base secure url as like below Now in my home page I’ve got the […]
I am trying to run some of my code by each time, I am getting this error, I am using the latest version of PHP. I replaced my caused as per the error; from this function __autoload($class_name) { $class_name = strtolower($class_name); $path = LIB_PATH.DS."{$class_name}.php"; if(file_exists($path)){ require_once($path); }else{ die("The file {$class_name}.php […]