Magento
I have an aws endpoint setup and would like to implement it in 2.4.3.p2. Is this possible? If so how would I hook it up? Thank you.
I’ve been looking at the examples in the documentation and also issuing GET requests via REST to get various information about products and categories. One thing that I find unusual is that there are many numerical parameters which are passed as strings (numbers within quotes) in JSON output. Those are […]
I followed closely enough the Magento devdoc on advanced JavaScript bundling for better store performance. I see that pub/static/frontend/Perfectmakeupmirrors/argento-luxury-custom/en_US/bundles has all the bundles created. Something is wrong somewhere which is why these bundles are not present in requirejs-config.js. Please have a look at the build.js file to see if there […]
welcome everybody. I’m Mostafa from Egypt, new to Magento. I installed magento 2.4.5 in localhost, and used the default theme “Luma“, and added the Arabic language pack for the system, and created two store view, one in Arabic and one in English. The problem I’m currently facing is that I […]
I’m trying to convert text editor content to html, There are lots of solution over the internet to convert wysiwyg text to html but in my case the text is not coming from the wysiwyg, it’s coming from the contentful(cms) by calling the API. Text coming from the API (Text […]
I Want to create two dropdown product attributes. Depending on the first dropdown send dropdown option will be display in product admin edit page.(not need it in frontend) e.g : ABC attribute (options 1,2,3,4,5) now EFG attribute (option will be like If abc select 1 then (x,y,z), If abc select […]
define([ 'jquery', 'uiComponent', 'Magento_Customer/js/customer-data', 'domReady' ], function ($, Component, customerData) { 'use strict'; return Component.extend({ /** @inheritdoc */ initialize: function () { var _this = this; this._super(); this.wishlist = customerData.get('wishlist'); console.log(this.wishlist); this.wishlist.subscribe(function(newValue) { _this.decorateItems(); }); _this.decorateItems(); }, decorateItems: function() { var items = this.wishlist().items; if (typeof items === 'undefined' || […]