Via the api, multi select options were accidentally inserted as duplicates. So instead of 11111,22222 being stored in catalog_product_entity_text.value it was submitted as 11111,22222,11111,22222 and stored as such. This causes the indexer to break with duplicate errors. SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '681306-12156-1-7638991-681306' for key 'PRIMARY', query was: […]
Magento
I have two website example.com(store code is usa) and example.ca(store code is default) both website in English language This two website working fine, now I want to convert only example.ca to example.com/en-ca How to do achieve this? I tried to change default store base secure and unsecure url from store […]
I need some way to know what method the magmi is set to to make a plugin, I mean by method (edit/create or whatever it is)
I have an issue with the meta tag in Magento 2. Where in admin I can add Facebook or any social media meta tag or key?
My hosting provider send me mail regarding patch installation on my store, but I want to know that how can I install this patch on my store, Adobe does not provide any kind of documentation regarding this : https://helpx.adobe.com/security/products/magento/apsb24-18.html Can anyone help me about this ?
I know it is possible to change it in php.ini or .user.ini and such, but is it possible to rename the default session cookie name PHPSESSID to something else on the application level? EDIT: If yes, how?
Currently the Tax Exempt application from the Admin side has no option for a streamlined rejection process, is just a Y or N switch. Is it possible to have a rejection flow where a template goes out inviting someone to re-apply or else, all from Magento? Rejections when a customer […]
How can I use a custom widget function in a magento jquery widget? requirejs-config.js var config = { "map": { "*": { "customwidget": "Vendor_Module/js/customwidget", "Magento_Catalog/js/catalog-add-to-cart": "Vendor_Module/js/catalog-add-to-cart" } } }; catalog-add-to-cart.js define([ 'jquery', 'mage/translate', 'underscore', 'Magento_Catalog/js/product/view/product-ids-resolver', 'Magento_Catalog/js/product/view/product-info-resolver', 'Vendor_Module/js/customwidget', 'jquery-ui-modules/widget' ], function ($, $t, _, idsResolver, productInfoResolver, customwidget) { 'use strict'; $.widget('mage.catalogAddToCart', […]