AttributeError: ‘NoneType’ object has no attribute ‘join’ in Databrick #data_engineer
AttributeError: ‘NoneType’ object has no attribute ‘join’ in Databrick #data_engineer
AttributeError: ‘NoneType’ object has no attribute ‘join’ in Databrick #data_engineer
Trying to update all cms_page_view pages except for cms_index_index layouts. E.g. on Magento_Theme/page_layout/cms_page_view.xml <referenceContainer name=”columns” htmlClass=”columns bluey” /> But I want to remove it on any cms_index_index page. e.g. Magento/layout/cms_index_index.xml <referenceContainer name=”columns” htmlClass=”columns” /> However the div will display class=’columns… Read More »Updating cms_page_view but not cms_index_index htmlClass
I’m encountering a strange issue with a fresh installation of Magento 2.4.7-p2. The problem: Some JavaScript files from RequireJS are not loading with the correct path on a simple page refresh, but they load correctly after a hard refresh. Specifically,… Read More »Issue with RequireJS Path in Magento 2.4.7-p2 Fresh Setup
I am trying to add custom fields to the Magento 2 Page Builder slider, specifically for Desktop Image Width, Desktop Image Height, Mobile Image Width, Mobile Image Height and Alt Text. I want to create the following fields under the… Read More »How to Add Height, Width, and Alt Text Fields in Magento 2 Page Builder Slider and Render on Frontend?
For some reason we had a problem with magento 2.4.6 databaase and we forced to restart database without checking that indexers were working. Now when I duplicate a product from admin I get this error: main.CRITICAL: PDOException: SQLSTATE[23000]: Integrity constraint… Read More »SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: After issue with reindex
When i upgrade the Magento2 stripe version to 4.0.9, the cart page and checkout page grand total become zero. composer require “stripe/module-payments:4.0.9” “stripe/stripe-payments:4.0.0” “stripe/stripe-php:13.15.0”
Site is working fine in developer mode but when we put the site in production mode there are different files showing 404 in console and these seems default files of magento but the path of the file they are showing… Read More »Js files issue in production mode magento2.4.6-p3
Im trying to add custom atribute ‘currency codes’ by creating ‘Vendor/Module/Setup/Patch/Data/PriceCrncyCodeAttribute.php’. declare(strict_types=1); namespace VendorModuleSetupPatchData; use MagentoEavModelEntityAttributeScopedAttributeInterface; use MagentoEavSetupEavSetup; use MagentoEavSetupEavSetupFactory; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupPatchDataPatchInterface; use MagentoFrameworkSetupPatchPatchRevertableInterface; use MagentoStoreModelStoreManagerInterface; use MagentoFrameworkAppState; class PriceCrncyCodeAttribute implements DataPatchInterface, PatchRevertableInterface { /** * @var ModuleDataSetupInterface… Read More »How to get all currency codes whether enabled or not in magento 2
I have setup my magento2 site on dedicate root server from Hetzner.The site is setup correctly and have no issues at all in magento logs or apache2 logs. I also checked most of my cpu is also free so is… Read More »Magento2 site need reboot every night
I am generating XML data that I need to write to an XML file and store in a directory on the server, making it accessible for future use. What is the best approach for writing this data to an XML… Read More »How can I write XML data to an XML file?