NoSQL databases are rather popular among Node developers, with MongoDB (the “M” in the MEAN stack) leading the pack. When starting a new Node project, however, you shouldn’t just accept Mongo as the default choice. Rather, the type of database you choose should depend on your project’s requirements. If, for […]
Daily Archives: January 22, 2020
Sitemaps are the most important part to boost your app’s SEO. Here, I’ll try to explain the easiest way to implement a dynamic sitemap in your Laravel app.
We are unable to get any Shipping Methods to show on customer check out. Checking out as a guest (call to estimate-shipping-method) or as a registered user (call to estimate-shipping-method-by-address-id) are returning empty arrays. According to this... I am missing the email and region_code as required in the payload. On our […]
For a configurable product, the following code will list the configurable’s childs prices only for the childs that are in stock: if ($_product->getTypeId() == 'configurable') { $_children = $_product->getTypeInstance()->getUsedProducts($_product); foreach ($_children as $child){ echo $child->getPrice(); } } When all childs are out of stock, the code above will not show […]