REST is an acronym for Representational State Transfer — an almost meaningless description of the most-used web service technology! REST is a way for two computer systems to communicate over HTTP in a similar way to web browsers and servers. Sharing data between two or more systems has always been […]
Daily Archives: February 7, 2020
I’m nearly at the end of a reasonably lengthy PHP contract in the Gloucestershire, UK area – nearly a year and a half. When I exit I’ll be at a few months off the start of a new financial year, and we have IR35 (tax) changes plus Brexit impact looming […]
I wanted to use the functionality of gift-options.js file. Basically I want to reuse the REST api call for gift-message. I don’t want to recreate the same function as it’s already existing. Now I want to use this function inside my update-shopping-cart.js how do I do that? So basically inside […]
How can I update the quote item custom gift message? I’m thinking of adding that function inside the Module_Checkout/Model/Cart.php inside the function updateItems. So if I take a look at this file the content is public function updateItems($data) { $infoDataObject = new MagentoFrameworkDataObject($data); $this->_eventManager->dispatch( 'checkout_cart_update_items_before', ['cart' => $this, 'info' => […]
I have a product that has to have a color swatch. This product is compound by a 3 inks and a 3 color fasteners. First I tried to use a bundle product, but I wans’t able to show the color swatch once its options isnt attribute managed. So I tried […]
New Magento 2 Install. Authorize.net and Paypal having the same issue. Order is placed on our website Payment is captured and accepted The order DOES NOT show up in Magento`s backend. Customer does not receive any confirmation emails Making big problems for us at the moment. I tested it myself, […]
I want to get a numeric value from the database that calculates how many times in the column there are words “Test” in the database I know how to do it (SELECT COUNT (*) FROM training_reviews WHERE result LIKE ‘test’;) but how I will appreciate this in magento2 for your […]