We’re using Magento CE and unfortunately Adobe put its Adobe Sensei AI recommendation engine for those using Magento EE. Any (hopefully free or low cost) alternative? Like how some ecommerce sites how they are able to show products that user might want based on that specific user’s browsing patterns in the site submitted by /u/SpiritedBad0 …
Author Archives: Team
how to add an optional checkbox in checkout? (like optional insurance in shipping)
Whats the easiest way to add a checkbox in checkout where user can opt to have optional insurance in shipping and then the total will be updated with the insurance shipping amount? submitted by /u/SpiritedBad0 [link] [comments]
Any good tips for a new Magento Technical Support Engineer
Hey all, I just recently started a role doing Technical support with a heavy focus on Magento in Brazil. They hired me mostly for my PHP and Linux knowledge. I was wondering if there was a good complied list somewhere of the top Magento 2 issues and tips on how to debug/resolve them? submitted by …
Continue reading “Any good tips for a new Magento Technical Support Engineer”
A past take home assignment for a job interview has me scratching my head…
Hey guys I just wanted to share with you some past job homework assignment, that really stumped me, I didn’t get the job but felt the need to share with you a very interesting problem that I still want to solve just for the fun of it: • Create custom module for adding 10% off …
Continue reading “A past take home assignment for a job interview has me scratching my head…”
How to override module-wishlistCustomerDataWishlist.php by using a custom module?
I have added custom code in m3vendormagentomodule-wishlistCustomerDataWishlist.php, and called inside the appdesignfrontendzeromy_themeMagento_Wishlisttemplatessidebar.phtml, for testing i am directly edited in core files, how to properly Override by using custom module? submitted by /u/aveeva7 [link] [comments]
Issue with Mageworx Custom Product Options
Does anybody know the correct file layout and format for uploading these in bulk? it is a tedious and annoying process to input all of these by hand with limited support for bulk management virtually anywhere in magento. I can not find an answer anywhere, and naturally Mageworx is of no help. Magento 2.3.5 …
Continue reading “Issue with Mageworx Custom Product Options”
Need help please. Experience on average time required per week to manage a Magento shop (as a User)
A friend of mine runs a business manufacturing and selling frozen foods. They currently have a very very simple SaaS system for selling their products. They have expanded and this system is no longer suitable. I have built them a Magento 2 platform. I tried to keep it simple with minimum modules, but they kept …
Setting up configurable products on M2.4.2
Hello M2 family. I am not able to wrap my head setting up configurable product for my store. I hope someone here might help. Below are the setups: I have an apparel A, with 4 different colours. Each colour has 3 different sizes. Each size belonging to the each colour has different quantities. That is …
Continue reading “Setting up configurable products on M2.4.2”
Thanks Magento 1
I have been running an online store based on Magento 1 for the last ten years. I switched to woocommerce instead of Magento 2 for several reasons but, anyway, I would like to share a big thank you to Magento as a product and to all the community. I haven’t had any major issues during …
Bundling in Magento 2.1
I’ve hired a consultant to help our company with the upcoming Core Web Vitals change from Google. The first thing he suggested was bundling. I took that to my lead engineer, and he said that they had tried bundling in the past, but it broke the site. Apparently, Magento 2.1 doesn’t handle bundling very well, …
Best WEBP/Nextgen solution for M2
Hi Guys. So basically im looking for the best module/extention/solution for WebP/Nextgen images on my website. I would (if i wasn’t a straight up cheap ass) use Cloudflare, but 200buccks pr. months is just to pricy right now. I’ve tried Yireo’s extention but working to slow frontend to be honest. Share your tips! submitted …
Uncaught TypeError: $.widget is not a function
My code : define([ ‘Magento_Customer/js/model/authentication-popup’, ‘Magento_Ui/js/modal/alert’, ‘Magento_Ui/js/modal/confirm’, ‘underscore’, ‘jquery/ui’, ‘jquery-ui-modules/core’, ‘jquery-ui-modules/widget’, ‘mage/decorate’, ‘mage/collapsible’, ‘mage/cookies’, ‘loader’ ], function ($, authenticationPopup, customerData, alert, confirm, _) { ‘use strict’; return function (widget) { $.widget(‘mage.sidebar’, widget, { _updateItemQty: function (elem) { var itemId = elem.data(‘cart-item’); var btnplus = elem.data(‘btn-plus’); var btnminus = elem.data(‘btn-minus’); $(‘#cart-item-‘ + itemId + ‘-qty’).trigger(‘processStart’); this._ajax(this.options.url.update, …
Continue reading “Uncaught TypeError: $.widget is not a function”
firebase otp verification
So I was trying to use firebase OTP verification on phone no on my Magento store. Here is the code <script> // Your web app’s Firebase configuration var firebaseConfig = { apiKey: “##############################”, authDomain: “###########################”, projectId: “#########################”, storageBucket: “########################”, messagingSenderId: “#################”, appId: “#######################”, measurementId: “#######################” }; // Initialize Firebase firebase.initializeApp(firebaseConfig); window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier(‘recaptcha-container’, { …
How to include ajax loader
How to add https://devdocs.magento.com/guides/v2.4/javascript-dev-guide/widgets/widget_loader.html ajax loader to my script, define([ ‘jquery’, ‘Magento_Customer/js/model/authentication-popup’, ‘Magento_Customer/js/customer-data’, ‘Magento_Ui/js/modal/alert’, ‘Magento_Ui/js/modal/confirm’, ‘underscore’, ‘jquery/ui’, ‘mage/decorate’, ‘mage/collapsible’, ‘mage/cookies’ ], function ($, authenticationPopup, customerData, alert, confirm, _) { ‘use strict’; return function (widget) { $.widget(‘mage.sidebar’, widget, { _updateItemQty: function (elem) { var itemId = elem.data(‘cart-item’); var btnplus = elem.data(‘btn-plus’); var btnminus = elem.data(‘btn-minus’); …