Monthly Archives: October 2017

Latest GST Guide For Freelancers In India

Goods and Services Tax or GST has been a hot and confusing topic for freelancers. Here is some clarity. The original rule was that if you earned even a single rupee from outside the state where you filed your taxes,

Posted in Entrepreneurship Tagged with:

PHP Include And Require Files In WordPress functions.php – The Right Way

/** * Include File In WordPress Theme’s Functions.php *   * @since 1.0 * @refer https://millionclues.com/wordpress-tips/php-include-and-require-wordpress/ */ include_once( dirname(__FILE__) . ‘/includes/simple-post-likes/post-like.php’);

Posted in WordPress Tagged with:

5 iOS Features That Boost Your iPad’s Productivity

Gadgets are judged on the basis of a variety of factors today. The intense competition to perform assures punctilious judgments. One of the key factors is efficiency. Apple has set a benchmark in terms of performance and therefore has the

Posted in Guest Posts, Reviews Tagged with: ,

The Finest Wireless Gaming Headsets Of 2017

There are several factors that come into play when it comes to judging whether a wireless gaming headset is good enough or not. This includes the speed of frequency response, the amount of comfort that you get from the device,

Posted in Guest Posts Tagged with:

The Right Way To Load CSS On WordPress Login Pages

/** * Custom Login CSS * * @refer  https://millionclues.com/wordpress-tips/right-way-load-login-css-wordpress/ */ function mc_load_custom_login_css() {      wp_enqueue_style( ‘login-css’, get_template_directory_uri() . ‘/assets/css/login-page.css’ ); } add_filter( ‘login_enqueue_scripts’ , ‘mc_load_custom_login_css’ ); Or you can use the Custom Login Admin Front-end CSS Plugin.

Posted in WordPress Tagged with: