Skip to content

Import: Value for ‘country_of_manufacture’ attribute contains incorrect value but I just exported it… sanity check for 2.4.4

I am confident I am not going crazy – but has anyone else experienced odd behaviour with the Magento 2 imports? I am importing data sheets and it is flagging up country_of_manufacture as having incorrect values for lines containing: Taiwan,… Read More »Import: Value for ‘country_of_manufacture’ attribute contains incorrect value but I just exported it… sanity check for 2.4.4

My build.js is not adding generated bundles in requirejs-config.js file

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… Read More »My build.js is not adding generated bundles in requirejs-config.js file

How to use external js for the phtml files in magento 2

my phtml file <div class=”home-del-days-main-cont”> <div class=”hof-changeoutletcontent”> <div class=”h-find-de-day”> <h2><?php echo __(“Enter your postcode to find delivery days “);?></h2> <div> <p style=”text-align: center;”><?php // echo __(“Please enter a delivery postcode to see delivery days.”);?></p> </div> </div> </div> <div> <div class=”h-news-frm”>… Read More »How to use external js for the phtml files in magento 2

How to ad html tag inside trans directive in magento2

I am trying to add a <span> tag inside a trans directive but, it is not working for me. Below is what I am trying: <h1 class=”section-heading order-number-heading”>{{trans ‘Your Invoice <span class=”number”>#%invoice_id</span> for Order <span class=”number”>#%order_id</span>’ invoice_id=$invoice.increment_id order_id=$order.increment_id}}</h1> The output… Read More »How to ad html tag inside trans directive in magento2