Yearly Archives: 2017

“If You Had To Start Over, What Would You Do Differently?”

An interview with myself. It was supposed to be published elsewhere, but the publisher bailed. I speak about Blogging, Monetizing and Building Email List.

Posted in Pro Blogging Tagged with: , , ,

7 Things Every Programmer Must Know

Programming for the last two decades has been indispensable to the success of every industry. Programmers contribute a lot in terms of success and are therefore always in high demand. It would not be surprising if you were willing to

Posted in Guest Posts Tagged with: ,

Enable Debug Logging In WordPress

Add this to wp-config.php define(‘WP_DEBUG’, true);    // Enable WP_DEBUG mode define( ‘WP_DEBUG_DISPLAY’, false );  // Hide errors from browser. Set to true if you want to see errors in browsers as well. define( ‘WP_DEBUG_LOG’, true );  // Enable Debug logging to the /wp-content/debug.log

Posted in WordPress Tagged with:

5 Technologies That Will Change The World Forever

When you think about what’s going to happen in the future, you might be thinking about flying cars, enormous skyscrapers that reach into space, and medicines that can cure pretty much any disease or infection. However, did you know that

Posted in Guest Posts Tagged with:

Change From Placeholder Text With jQuery

Add this to footer.php before the closing </body>. <script language=”javascript” type=”text/javascript”>  document.getElementsByName(‘es_txt_email’)[0].placeholder=’yourname@email.com’; </script> Where es_txt_email is the name if the <input>. The above script was used to change the placeholder in the Email Subscribers & Newsletters plugin.

Posted in WordPress Tagged with: