This article was created in partnership with Duda. Thank you for supporting the partners who make SitePoint possible. Kentico’s most recent State of the Headless CMS report claims that the concept of the headless content management system is “becoming the industry standard for future-proofing and streamlining content creation.” In fact, […]
Daily Archives: July 30, 2019
We’re working hard to keep you on the cutting edge of your field with SitePoint Premium. We’ve got plenty of new books to check out in the library — let us introduce you to them. Get Started with React Native For developers with a web background, frameworks such React Native […]
In this article, you’ll learn how to build a RESTful API Server in Node.js using Feathers. An API server, also known as an Application Server, is a program that provides data to front-end applications. It also handles business logic in the back end and provides restricted access to an organization’s […]
In this article, we’re going to dive into the offerings of the most prominent players in the hosting industry, and wade through their plans, infrastructure, and reputation among users, to give you recommendations for the best hosting provider for your needs. We divided hosting vendors into three categories: general-purpose shared […]
Vue continues to grow in popularity and is rapidly being adopted by many developers, and Vue.js tools are popping up everywhere. This is not without reason: Vue’s shallow learning curve, clear functionality-driven structure, and excellent documentation make it easy for novices to pick it up, and for more experienced developers […]
so im using m2e pro extension on magento 2.3 suddenly the synchronizing stopped from working. thats because that m2e pro uses their own cron job and they sends curl calls to the server, but my server response with BOM byte. script for exemple: ?php $ch = curl_init(); curl_setopt_array($ch, array( CURLOPT_URL […]
I just want add a custom function in layered navigation block MagentoLayeredNavigationBlockNavigation the function : public function getActiveFilters() { $filters = $this->getLayer()->getState()->getFilters(); if (!is_array($filters)) { $filters = []; } return $filters; } ive tried to create custom module to override block with preferences as well as plugin, but no luck […]
We are using Magento 2.2.8 When we refund back-ordered items, the order status is not set to complete even though all items have either been refunded or shipped. I’m pretty sure this is the functionality of Magento, but it doesn’t seem right to me and I’m not sure what would […]
I have custom fields at checkout being saved into quote and sales_order tables. InstallSchema.php public function install(SchemaSetupInterface $setup, ModuleContextInterface $context) { $installer = $setup; $installer->startSetup(); /* While module install, creates columns in quote_address and sales_order_address table */ $eavTable1 = $installer->getTable('quote'); $eavTable2 = $installer->getTable('sales_order'); $columns = [ 'input_room_shipping_field' => [ 'type' […]