Making a Magento website live is not child’s play. If you are a Magento developer you know that this a daunting task for even a seasoned developer. It's the final step of a long and stressful journey, and this makes it even more stressful. In this tutorial, I'll keep it simple by giving you a pre-launch checklist, and a brief explanation of each point.
Let's start with a few key points that you need to get right before going live.
Before making your Magento website live (or moving it), you should update the base URLs of your website. Otherwise your URLs will redirect visitors to your development website. To access the store pages, you need the base URLs. This can be edited in the store view.
The base URL can be modified in two ways: through the back end, or by applying a SQL query.
To modify the base URL from the back end, go to the Magento Admin Area. Then modify the option of Base URL like System > Configuration > Web > Unsecure > Base URL to System > Configuration > Web > Secure > Base URL. Do not forget to include trailing forward slashes.
If you are unable to access the back end because of some
erroneous update of the Base URL then you need to update it directly in the
database table. These URLs are stored inside the table core_config_data
of
MySQL database. Change the field values of the web/unsecure/base_url
and web/secure/base_url
paths:
Flush the Magento cache
under the directory of var/cache
to apply the changes.
Before launching your Magento website, you should create Favicons. This minor point is often overlooked. Most often users keep open multiple tabs while browsing. For ease of browsing, do not forget to include Favicons for your website. This also reinforces visual branding. The path for the favicon is as follows: /skin/frontend/default/favicon.ico.
Change the original setting of the HTML head for better SEO purposes. Change the ‘Title’, and set Meta descriptions and keywords. The path for these changes is System > Configuration > General > Design.
Placeholder images are default images set for your site if products do not have their own images. By default Magento has a nice light grey set of default placeholder images, but for the purpose of branding, you can create a set of your own by going to System > Configuration > Catalog > Product Image Placeholders.
For customizing the Contact Us page, first of all enable it from System > Configuration > General > Contacts.
To create a little advanced contact us page, remove the link at the default Contact Us Page. If your theme doesn't already have a local.xml file, then create a new
file of local.xml in your current theme’s layout folder. The content of the
file will be as follows:
<?xml version="1.0"?> <layout version="0.1.0"> <default> <reference name="footer_links"> <action method="removeLinkByUrl"><url>http://your.site/index.php/contacts/</url> </action> </reference> </default> </layout>
If your theme file already has a local.xml file, then add the following code under the <default>
handle:
<reference name="footer_links"> <action method="removeLinkByUrl"><url>http://your.site/index.php/contacts/</url> </action> </reference>
Replace the path with the current URL. Now save this file and
clear the cache. Then you should create contact-us-form.phtml
. This is your
form template. The next step is to place it into your current theme’s Template
folder. The path is as follows: app/design/frontend/your_namespace/your_theme/template/contact-us/contact-us-form.phtml.
Next, paste this code into the file and save it.
<form action="<?php echo Mage::getUrl('contacts/index/post'); ?>" id="contactForm" method="post"> <div class="fieldset"> <h2 class="legend"><?php echo Mage::helper('contacts')->__('Contact Information') ?></h2> <ul class="form-list"> <li class="fields"> <div class="field"> <label for="name" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Name') ?></label> <div class="input-box"> <input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->htmlEscape($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" /> </div> </div> <div class="field"> <label for="email" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Email') ?></label> <div class="input-box"> <input name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->htmlEscape($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email" type="text" /> </div> </div> </li> <li> <label for="telephone"><?php echo Mage::helper('contacts')->__('Telephone') ?></label> <div class="input-box"> <input name="telephone" id="telephone" title="<?php echo Mage::helper('contacts')->__('Telephone') ?>" value="" class="input-text" type="text" /> </div> </li> <li class="wide"> <label for="comment" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Comment') ?></label> <div class="input-box"> <textarea name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Comment') ?>" class="required-entry input-text" cols="5" rows="3"></textarea> </div> </li> </ul> </div> <div class="buttons-set"> <p class="required"><?php echo Mage::helper('contacts')->__('* Required Fields') ?></p> <input type="text" name="hideit" id="hideit" value="" style="display:none !important;" /> <button type="submit" title="<?php echo Mage::helper('contacts')->__('Submit') ?>" class="button"><span><span><?php echo Mage::helper('contacts')->__('Submit') ?></span></span></button> </div> </form> <script type="text/javascript"> //<![CDATA[ var contactForm = new VarienForm('contactForm', true); //]]> </script>
The next step is to create a CMS page, and the path is CMS > Pages > Add new page. To display your Contact Us page in the desired place, paste the following code:
{{block type='core/template' name='contactForm' template='contact-us/contact-us-form.phtml'}}
After this, save this page and add the link to the footer of your web page. To edit the Contact Information, update your form.phtml and save the file.
It is essential that your copyright information in the footer is correct and up-to-date, as it will be displayed on all pages. You can change/reconfigure your copyright information by following this path: System > Configuration > General > Design > Footer > Copyright.
Make sure that your store logo's file path is correct, and that it has the right alt text and Welcome text configured. To view these logo details, go to System > Configuration > Design > Header.
Also make sure that all store information and business mail addresses are correctly set. The required path for configuring these email addresses is System > Configuration > General > Store Email Addresses.
In addition the transactional emails often use different
logos. Save that logo as logo_email.gif
in your current theme directory.
This performance checklist will improve your store’s speed and responsiveness, and ensure that your eCommerce store will be able to withstand high traffic pressure without crashing.
Magento indexes data for faster access. To update a product in your store, you should re-index it so that it will be displayed on the front-end.
To update the indexes follow the path: System > Index Management. The indexes that need re-indexing will be displayed in red font and Reindex Required will flash. Otherwise up to date indexes will display Ready status in green font. Until you re-index the data, the sample products will not be displayed on the front end of your website.
Full page caching has an immense impact upon the performance of your store. A Magento store runs blocks of codes for determining which HTML to run on the client browser. Full page caching stores emitted HTMLs and resends them for every subsequent request. This cache feature ensures variations of dynamic contents (Welcome message, cart count, etc.) from customer to customer. Make sure that before launch, all your caches are enabled, by going to System > Cache Management.
To keep down the loading time of your Magento web page, system compilation proves extremely helpful. Page loading speed is increased up to 50% after you apply this step. The correct way to use it is through the back-end of your website, and the path is System > Tools > Compilation.
When a customer requests a page, the server spends a considerable amount of time locating the exact files. This leads to higher I/O operations that may create bottlenecks during high traffic cases. The compilation process stores codes in one folder and compiles them into a smaller number of files on the disk. The compiled code should be refreshed for a single code deployment.
Log cleaning is a part of database maintenance. Magento is an excellent CMS platform but its default database maintenance ability is not up to the mark. A big database can make your site sluggish.
The site latency and performance can be dramatically improved through log cleaning. Frequently compared products and customer access data are stored in these files. Enable this feature. The easiest way to do this is through the back-end. The path is System > Configuration > Advanced > System > Log cleaning. Then set Enable Log Cleaning to Yes.
You can manually clean the log via PhpMyAdmin. The log cleaning
function of Magento manages the following tables.
Select your required table from PhpMyAdmin and then click Operations. Then click Empty the table (Truncate).
Then go to Structure on the top menu and click on Optimize in the With Selected option.
Minified versions of JS and CSS will again help you speed up the loading speed of your website. For this the easiest way is from your back end. The path is System > Configuration > Advanced > Developer. First go to the JavaScript settings and click Yes to Merge JavaScript Files. Do the same with the CSS settings.
You can also install User Interface Optimization for JS and CSS minification.
A web page may undergo maintenance processes. You must keep a default error page design and a default structure of "page not found" to provide better user satisfaction.
The 404 page is a great place to advertise special offers, coupons and points to be generated by users. Change the ‘Magento Store’ reference on the default 404 page, which can be found at CMS > Pages.
Use a different theme design to display your 404 not found page. Change the action of ‘print’ into ‘email’ in the errors/local.xml file. Otherwise customers will view the default logo and theme.
This function will help you to keep a personalized communication with your customers.
Admin can dynamically change the
content of the email. Transactional emails use a different logo to the default one. Make sure that the image that you want to use is saved in your theme directory as logo_email.gif
.
Make sure that your newsletter settings are correct and updated. You can access them at System > Configuration > Customers > Newsletter > Subscription Options. Check out a more detailed article on correctly configuring a Magento newsletter.
Make sure that your product shipment, payment settings and tax settings are up-to-date and in accordance with the laws of your country.
You can modify/view your tax settings at the following path in the Magento admin panel: System > Configuration > Sales > Tax > Tax Classes > Tax Class for shipping.
Then choose between the Taxable Goods, Shipping and None options.
Set the shipping settings for the Country, Region/State, and Zip/Postal Code for your local or global eCommerce website from System > Configuration > Sales > Shipping Settings.
Rates for shipping can be enabled through System >
Configuration > Sales > Shipping Methods > Shipping Table Rates and
many other available options. You can include them to enhance your store’s
shipping functionality.
You may choose different payment gateways for your online store like PayPal, Authorize.Net, Stripe, etc. through this path: System > Configuration > Sales > Payment Methods. You can also set the mode of payment from here.
To optimize the web pages for different Search Engine Results, make sure that your Google sitemap and Analytics are properly set up in your Magento store.
Search engines crawl the pages using the xml file. The spiders read sitemap.xml and this improves your visibility and ranking in SERPs. The path for setting up an XML sitemap in Magento is Catalog > Google Sitemap > Add new sitemap. There you can set the File Name (in xml extension) and Path for your xml file.
Google Analytics helps you analyze the traffic of your website. For setting up Google Analytics in Magento, you can set up an account with Google Analytics and then place it in the Analytics account ID. The path is: System > Configuration > Sales > Google API > Google Analytics.
Website owners often underestimate this checklist. But this is an important feature to include, for keeping your business out of legal entanglements.
You can generate a privacy policy for your online store by installing iubenda. It is a professional way to add one. A privacy policy is must for every website. Some countries like the U.K. legally require you to show a privacy policy on your website if you are storing users' information on your server, as is the case most of the time.
Just after setting up your website, you can generate the Policy attached as a badge to the lower border. After installation, an email will be forwarded to you explaining how to integrate it and customize it as you need.
If your store includes its own terms and conditions and your visitors need to accept them to book an order, you can set that up from the admin panel. The path is: Sales > Terms and Conditions > Add New Condition.
After you click Add New Content the following window will open.
In order to agree with the terms and conditions you need to provide a checkbox. In the Checkbox Text you can add text to be displayed beside the checkbox like ‘I Agree’, etc. Put in the exact Terms and Conditions as text in the ‘Content’ field. In the ‘Content Height (CSS)’ you can set the height of the text area in the front end in pixels. After specifying all the conditions, click Save Condition.
You may also require setting up the Order Review for the Checkout process. The path is System > Configuration > Sales > Checkout. Then in the Checkout Options, set Enable Terms and Conditions to Yes.
You can add a CMS page for setting the ‘Return Policy’ of the website, and you could also use an extension like Magento RMA Extension. Using this extension you can smoothly set up the Return Management Authorization policies. After clients accept them, they can create requests for RMA. The easy method for RMA Tracking helps you to take precautions against fraudulent returns.
Using this extension you can set up different ‘Request Types’ beyond the default types of refund or replacement. For example you can add credit, repair or any other request type. For every status and request type you can also specify the store view. In this way the extension supports multistore view.
The shipping info page can be created as a separate CMS page from CMS > Pages > Manage Pages > Add New Page. If you want, you may also use an extension like Custom Shipping Options. The primary function of this extension is to enable your customers to have their personal shipping accounts at the time of checkout.
You can create an option for Custom Shipping to be displayed on the Shipping Method portion of the checkout page. Using this extension you can demand a surcharge for shipping. The rate of surcharge will either be per order, or will be based on the number of items.
In this article, I've listed important points to be checked before launching your online Magento based store. In addition to these points, you should also carefully check the functionality of all pages and extensions before launch. A small bug or extension incompatibility can create a bad user experience. This may also cause valuable loss to your business in the long run.
Did you like the article? Please let me know in your comments and your feedback for this article.
Create Modern Vue Apps Using Create-Vue and Vite
/Pros and Cons of Using WordPress
/How to Fix the “There Has Been a Critical Error in Your Website” Error in WordPress
/How To Fix The “There Has Been A Critical Error in Your Website” Error in WordPress
/How to Create a Privacy Policy Page in WordPress
/WordPress Website Maintenance Guide For Beginners
/How Long Does It Take to Learn JavaScript?
/The Best Way to Deep Copy an Object in JavaScript
/Adding and Removing Elements From Arrays in JavaScript
/Create a JavaScript AJAX Post Request: With and Without jQuery
/5 Real-Life Uses for the JavaScript reduce() Method
/How to Enable or Disable a Button With JavaScript: jQuery vs. Vanilla
/How to Enable or Disable a Button With JavaScript: jQuery vs Vanilla
/Confirm Yes or No With JavaScript
/How to Change the URL in JavaScript: Redirecting
/15+ Best WordPress Twitter Widgets
/27 Best Tab and Accordion Widget Plugins for WordPress (Free & Premium)
/21 Best Tab and Accordion Widget Plugins for WordPress (Free & Premium)
/30 HTML Best Practices for Beginners
/31 Best WordPress Calendar Plugins and Widgets (With 5 Free Plugins)
/25 Ridiculously Impressive HTML5 Canvas Experiments
/How to Implement Email Verification for New Members
/How to Create a Simple Web-Based Chat Application
/30 Popular WordPress User Interface Elements
/Top 18 Best Practices for Writing Super Readable Code
/Best Affiliate WooCommerce Plugins Compared
/18 Best WordPress Star Rating Plugins
/10+ Best WordPress Twitter Widgets
/Working With Tables in React: Part Two
/Best CSS Animations and Effects on CodeCanyon
/30 CSS Best Practices for Beginners
/How to Create a Custom WordPress Plugin From Scratch
/10 Best Responsive HTML5 Sliders for Images and Text… and 3 Free Options
/16 Best Tab and Accordion Widget Plugins for WordPress
/18 Best WordPress Membership Plugins and 5 Free Plugins
/25 Best WooCommerce Plugins for Products, Pricing, Payments and More
/10 Best WordPress Twitter Widgets
1 /12 Best Contact Form PHP Scripts for 2020
/20 Popular WordPress User Interface Elements
/10 Best WordPress Star Rating Plugins
/12 Best CSS Animations on CodeCanyon
/12 Best WordPress Booking and Reservation Plugins
/12 Elegant CSS Pricing Tables for Your Latest Web Project
/24 Best WordPress Form Plugins for 2020
/14 Best PHP Event Calendar and Booking Scripts
/Getting Started With Django: Newly Updated Course
/Create a Blog for Each Category or Department in Your WooCommerce Store
/8 Best WordPress Booking and Reservation Plugins
/Best Exit Popups for WordPress Compared
/Best Exit Popups for WordPress Compared
/11 Best Tab & Accordion WordPress Widgets & Plugins
/12 Best Tab & Accordion WordPress Widgets & Plugins
1 /New Course: Practical React Fundamentals
/Preview Our New Course on Angular Material
/Build Your Own CAPTCHA and Contact Form in PHP
/Object-Oriented PHP With Classes and Objects
/Best Practices for ARIA Implementation
/Accessible Apps: Barriers to Access and Getting Started With Accessibility
/Dramatically Speed Up Your React Front-End App Using Lazy Loading
/15 Best Modern JavaScript Admin Templates for React, Angular, and Vue.js
/15 Best Modern JavaScript Admin Templates for React, Angular and Vue.js
/19 Best JavaScript Admin Templates for React, Angular, and Vue.js
/New Course: Build an App With JavaScript and the MEAN Stack
/10 Best WordPress Facebook Widgets
13 /Hands-on With ARIA: Accessibility for eCommerce
/New eBooks Available for Subscribers
/Hands-on With ARIA: Homepage Elements and Standard Navigation
/Site Accessibility: Getting Started With ARIA
/How Secure Are Your JavaScript Open-Source Dependencies?
/New Course: Secure Your WordPress Site With SSL
/Testing Components in React Using Jest and Enzyme
/Testing Components in React Using Jest: The Basics
/15 Best PHP Event Calendar and Booking Scripts
/Create Interactive Gradient Animations Using Granim.js
/How to Build Complex, Large-Scale Vue.js Apps With Vuex
1 /Examples of Dependency Injection in PHP With Symfony Components
/Set Up Routing in PHP Applications Using the Symfony Routing Component
1 /A Beginner’s Guide to Regular Expressions in JavaScript
/Introduction to Popmotion: Custom Animation Scrubber
/Introduction to Popmotion: Pointers and Physics
/New Course: Connect to a Database With Laravel’s Eloquent ORM
/How to Create a Custom Settings Panel in WooCommerce
/Building the DOM faster: speculative parsing, async, defer and preload
1 /20 Useful PHP Scripts Available on CodeCanyon
3 /How to Find and Fix Poor Page Load Times With Raygun
/Introduction to the Stimulus Framework
/Single-Page React Applications With the React-Router and React-Transition-Group Modules
12 Best Contact Form PHP Scripts
1 /Getting Started With the Mojs Animation Library: The ShapeSwirl and Stagger Modules
/Getting Started With the Mojs Animation Library: The Shape Module
/Getting Started With the Mojs Animation Library: The HTML Module
/Project Management Considerations for Your WordPress Project
/8 Things That Make Jest the Best React Testing Framework
/Creating an Image Editor Using CamanJS: Layers, Blend Modes, and Events
/New Short Course: Code a Front-End App With GraphQL and React
/Creating an Image Editor Using CamanJS: Applying Basic Filters
/Creating an Image Editor Using CamanJS: Creating Custom Filters and Blend Modes
/Modern Web Scraping With BeautifulSoup and Selenium
/Challenge: Create a To-Do List in React
1 /Deploy PHP Web Applications Using Laravel Forge
/Getting Started With the Mojs Animation Library: The Burst Module
/10 Things Men Can Do to Support Women in Tech
/A Gentle Introduction to Higher-Order Components in React: Best Practices
/Challenge: Build a React Component
/A Gentle Introduction to HOC in React: Learn by Example
/A Gentle Introduction to Higher-Order Components in React
/Creating Pretty Popup Messages Using SweetAlert2
/Creating Stylish and Responsive Progress Bars Using ProgressBar.js
/How to Make a Real-Time Sports Application Using Node.js
/Creating a Blogging App Using Angular & MongoDB: Delete Post
/Set Up an OAuth2 Server Using Passport in Laravel
/Creating a Blogging App Using Angular & MongoDB: Edit Post
/Creating a Blogging App Using Angular & MongoDB: Add Post
/Introduction to Mocking in Python
/Creating a Blogging App Using Angular & MongoDB: Show Post
/Creating a Blogging App Using Angular & MongoDB: Home
/Creating a Blogging App Using Angular & MongoDB: Login
/Creating Your First Angular App: Implement Routing
/Persisted WordPress Admin Notices: Part 4
/Creating Your First Angular App: Components, Part 2
/Persisted WordPress Admin Notices: Part 3
/Creating Your First Angular App: Components, Part 1
/How Laravel Broadcasting Works
/Persisted WordPress Admin Notices: Part 2
/Create Your First Angular App: Storing and Accessing Data
/Persisted WordPress Admin Notices: Part 1
/Error and Performance Monitoring for Web & Mobile Apps Using Raygun
/Using Luxon for Date and Time in JavaScript
7 /How to Create an Audio Oscillator With the Web Audio API
/How to Cache Using Redis in Django Applications
/20 Essential WordPress Utilities to Manage Your Site
/Introduction to API Calls With React and Axios
/Beginner’s Guide to Angular 4: HTTP
/Rapid Web Deployment for Laravel With GitHub, Linode, and RunCloud.io
/Beginners Guide to Angular 4: Routing
/Beginner’s Guide to Angular 4: Services
/Beginner’s Guide to Angular 4: Components
/Creating a Drop-Down Menu for Mobile Pages
/Introduction to Forms in Angular 4: Writing Custom Form Validators
/10 Best WordPress Booking & Reservation Plugins
/Getting Started With Redux: Connecting Redux With React
/Getting Started With Redux: Learn by Example
/Getting Started With Redux: Why Redux?
/Understanding Recursion With JavaScript
/How to Auto Update WordPress Salts
/How to Download Files in Python
/Eloquent Mutators and Accessors in Laravel
1 /10 Best HTML5 Sliders for Images and Text
/Site Authentication in Node.js: User Signup
/Creating a Task Manager App Using Ionic: Part 2
/Creating a Task Manager App Using Ionic: Part 1
/Introduction to Forms in Angular 4: Template-Driven Forms
/24 Essential WordPress Utilities to Manage Your Site
/25 Essential WordPress Utilities to Manage Your Site
/Get Rid of Bugs Quickly Using BugReplay
1 /Manipulating HTML5 Canvas Using Konva: Part 1, Getting Started
/10 Must-See Easy Digital Downloads Extensions for Your WordPress Site
/22 Best WordPress Booking and Reservation Plugins
/Understanding ExpressJS Routing
/15 Best WordPress Star Rating Plugins
/Creating Your First Angular App: Basics
/Inheritance and Extending Objects With JavaScript
/Introduction to the CSS Grid Layout With Examples
1Performant Animations Using KUTE.js: Part 5, Easing Functions and Attributes
Performant Animations Using KUTE.js: Part 4, Animating Text
/Performant Animations Using KUTE.js: Part 3, Animating SVG
/Performant Animations Using KUTE.js: Part 2, Animating CSS Properties
/Performant Animations Using KUTE.js: Part 1, Getting Started
/10 Best Responsive HTML5 Sliders for Images and Text (Plus 3 Free Options)
/Single-Page Applications With ngRoute and ngAnimate in AngularJS
/Deferring Tasks in Laravel Using Queues
/Site Authentication in Node.js: User Signup and Login
/Working With Tables in React, Part Two
/Working With Tables in React, Part One
/How to Set Up a Scalable, E-Commerce-Ready WordPress Site Using ClusterCS
/New Course on WordPress Conditional Tags
/TypeScript for Beginners, Part 5: Generics
/Building With Vue.js 2 and Firebase
6 /Essential JavaScript Libraries and Frameworks You Should Know About
/Vue.js Crash Course: Create a Simple Blog Using Vue.js
/Build a React App With a Laravel RESTful Back End: Part 1, Laravel 5.5 API
/API Authentication With Node.js
/Beginner’s Guide to Angular: HTTP
/Beginner’s Guide to Angular: Routing
/Beginners Guide to Angular: Routing
/Beginner’s Guide to Angular: Services
/Beginner’s Guide to Angular: Components
/How to Create a Custom Authentication Guard in Laravel
/Learn Computer Science With JavaScript: Part 3, Loops
/Build Web Applications Using Node.js
/Learn Computer Science With JavaScript: Part 4, Functions
/Learn Computer Science With JavaScript: Part 2, Conditionals
/Create Interactive Charts Using Plotly.js, Part 5: Pie and Gauge Charts
/Create Interactive Charts Using Plotly.js, Part 4: Bubble and Dot Charts
/Create Interactive Charts Using Plotly.js, Part 3: Bar Charts
/Awesome JavaScript Libraries and Frameworks You Should Know About
/Create Interactive Charts Using Plotly.js, Part 2: Line Charts
/Bulk Import a CSV File Into MongoDB Using Mongoose With Node.js
/Build a To-Do API With Node, Express, and MongoDB
/Getting Started With End-to-End Testing in Angular Using Protractor
/TypeScript for Beginners, Part 4: Classes
/Object-Oriented Programming With JavaScript
/10 Best Affiliate WooCommerce Plugins Compared
/Stateful vs. Stateless Functional Components in React
/Make Your JavaScript Code Robust With Flow
/Build a To-Do API With Node and Restify
/Testing Components in Angular Using Jasmine: Part 2, Services
/Testing Components in Angular Using Jasmine: Part 1
/Creating a Blogging App Using React, Part 6: Tags
/React Crash Course for Beginners, Part 3
/React Crash Course for Beginners, Part 2
/React Crash Course for Beginners, Part 1
/Set Up a React Environment, Part 4
1 /Set Up a React Environment, Part 3
/New Course: Get Started With Phoenix
/Set Up a React Environment, Part 2
/Set Up a React Environment, Part 1
/Command Line Basics and Useful Tricks With the Terminal
/How to Create a Real-Time Feed Using Phoenix and React
/Build a React App With a Laravel Back End: Part 2, React
/Build a React App With a Laravel RESTful Back End: Part 1, Laravel 9 API
/Creating a Blogging App Using React, Part 5: Profile Page
/Pagination in CodeIgniter: The Complete Guide
/JavaScript-Based Animations Using Anime.js, Part 4: Callbacks, Easings, and SVG
/JavaScript-Based Animations Using Anime.js, Part 3: Values, Timeline, and Playback
/Learn to Code With JavaScript: Part 1, The Basics
/10 Elegant CSS Pricing Tables for Your Latest Web Project
/Getting Started With the Flux Architecture in React
/Getting Started With Matter.js: The Composites and Composite Modules
Getting Started With Matter.js: The Engine and World Modules
/10 More Popular HTML5 Projects for You to Use and Study
/Understand the Basics of Laravel Middleware
/Iterating Fast With Django & Heroku
/Creating a Blogging App Using React, Part 4: Update & Delete Posts
/Creating a jQuery Plugin for Long Shadow Design
/How to Register & Use Laravel Service Providers
2 /Unit Testing in React: Shallow vs. Static Testing
/Creating a Blogging App Using React, Part 3: Add & Display Post
/Creating a Blogging App Using React, Part 2: User Sign-Up
20Creating a Blogging App Using React, Part 1: User Sign-In
/Creating a Grocery List Manager Using Angular, Part 2: Managing Items
/9 Elegant CSS Pricing Tables for Your Latest Web Project
/Dynamic Page Templates in WordPress, Part 3
/Angular vs. React: 7 Key Features Compared
/Creating a Grocery List Manager Using Angular, Part 1: Add & Display Items
New eBooks Available for Subscribers in June 2017
/Create Interactive Charts Using Plotly.js, Part 1: Getting Started
/The 5 Best IDEs for WordPress Development (And Why)
/33 Popular WordPress User Interface Elements
/New Course: How to Hack Your Own App
/How to Install Yii on Windows or a Mac
/What Is a JavaScript Operator?
/How to Register and Use Laravel Service Providers
/
waly Good blog post. I absolutely love this…