How to remove jQuery migrate from WordPress.
It is important to preserve jquery_migrate file in Admin section.
You can remove it from client section if it is not creating any issues, because it load unnecessary in client section.
Below are the only 4 lines of code which you needed to paste in your theme's function.php file.
<?php
add_filter(...
Friday, February 24, 2017
Wednesday, February 15, 2017
Java Script Handle name in Wordpress
Java Script Handle name in WordPress
Here listed below most common Javascript handle name with path.
Handle Path in WordPress
utils /wp-includes/js/utils.js
common /wp-admin/js/common.js
sack /wp-includes/js/tw-sack.js
quicktags /wp-includes/js/quicktags.js
colorpicker /wp-includes/js/colorpicker.js
editor /wp-admin/js/editor.js...
Tuesday, February 14, 2017
How to install Pure Chat

How to install Pure Chat
If you want to use chat in your web application then Pure chat can help you. it is easy to use. To use Pure Chat just signup and click on "Account" menu (Top Position)
Then click on "Websites". You will find a page with heading
Step...
Tuesday, February 07, 2017
How to avoid conflict with other JavaScript
How to avoid conflict with other JavaScript
To avoid conflict with other javascript code we should use closure.
Example is listed below:
(function(){ // Paste here JavaScript here })(); ...
how to load javascript file from assets folder in shopify
How to load JavaScript file from assets folder in Shopify
We all already know that Shopify assets folder's path is random and unique name for each Shopify store holders. If you upload some graphics files or JavaScript files or any other files in your Shopify store's assets folder, then how can you identify it's real pah?
For this situation we...