Custom Google Analytics Events in WordPress
Today we are going to learn how to integrate custom Google Analytics events in WordPress. For example I will setup a component I have here. Mick Jagger – RevengeBuy now! All we need is to setup the...
View ArticleFormat Time Functions xx:xx in PHP and Javascript
Today I am going to show you format time from this format x ( seconds ) to xx:xx . And the reverse. Javascript function from 90 to 1:30 function formatTime(arg) { //formats the time var s =...
View ArticleMatch javascript lines with comments on them
The regex should be \/\/ .*$ You can use this in IDE such as PHPSTORM
View ArticleMatch lines with comments in them
The regex should be (\/\/).*$ If you have a way to mark your useful comments. Like I have — to mark them, you can use it in the negative lookahead ( to filter only the unuseful comment ) (\/\/)(?! –)...
View ArticleHow to checkout / submit wordpress plugin in Mac OS X Terminal
First you need to enter your directory and to checkout: svn co https://plugins.svn.wordpress.org/your-plugin-name Add new files: svn add trunk/* Then you’ll need to svn ci -m 'description'
View ArticleConvert php arguments to documentation html
Let us say you have a documented php function with arguments in this form 'display_type' => 'list',// -- "list" or "grid" or "grid-2" or "scroller" or "map" or "horizontal" 'grid_skin' =>...
View ArticleHow to force resize every 3 seconds javascript
Go to the text editor ( where you can input html content ) and input: <script>setInterval(function(){ if(window.jQuery){ jQuery(window).trigger('resize'); } },3000);</script>
View ArticleRedux Javascript update state with multiple nested levels – immutable
The only solution I found is having this in the return statement of the reducer return { ...state ,[topic_id]:{ ...state[topic_id] ,matches:[ ...state[topic_id].matches ,subticket ] } } ; If there are...
View Article