Voting Rights Bill For NRI (Non Resident Indian)

Blog, Internet and Media, News, Social Responsibilities
Parliament has approved voting rights for non-resident Indians in elections with the Lok Sabha adopting the Representation of the People (Amendment) Bill, 2010, However, the person will be able to exercise the franchise only if he or she is present in the constituency on the polling day. The new law will allow an Indian citizen residing abroad to enrol in voter’s list and exercise his franchise even if he or she remained away from place of residence in India for more than six months owing to employment, education or otherwise. But there are more then 20 million Indians living abroad and it is practically impossible to have 20 million people travel to India at the same time. So a combination of Internet and Postal Ballot is more practical, reasonable and…
Read More

Google India celebrated Children’s Day with the Doodle 4 winner

Internet and Media, News
The Google India homepage on Thursday, November 14, 2013 shows Google written with characters that well and truly are Indian. The doodle is titled 'Sky's the limit for Indian women' and has been designed by Gayatri Ketharaman from Pune for the fifth edition of Doodle 4 Google competition. The theme this year was celebrating Indian women. [caption id="" align="aligncenter" width="652"] Google Doodle 4 India[/caption] Today's doodle has G written with a young girl character who is seen leaping in the air with a dupatta and a musical instrument behind her indicating that she is dancing. The two Os are written with a Re 1 coin that has a graduation cap on it while the other O is balance by a house on a beam balance. The other G shows a…
Read More

WordPress Category template

Web Design & Programming, WordPress
If you want to create a different category template of wordpress theme to display specific category. You can do this by saving your Category template as category-xxx.php . Please note that adding hyphen ("-") and the category id to the file name. So, category-xxx.php will be used to display category that have ID  xxx, & category-1.php will be used for category ID 1. You can follow the same logic of hyphen and id number for individual post template creation.
Read More

How to Customize the WordPress admin bar?

CMS, PHP Scripts, Tutorials, Web Design & Programming, WordPress
In WordPress 3.3 version there is a handy admin bar that provides quick access to some Admin features for logged in users. There are several ways to do customize it by creating functions. Here I will show, how you can customize the admin bar the way you want. WorPress adds a black menu bar (Admin Bar or Toolbar) at the top of the screen when user is logged in. This menu bar is also visible even when you are at the front end of the site and provide you a quick links of pages quickly. WordPress allows us to customize the this bar and it’s possible to add new links (menu items) in that bar or remove or change the existing ones. Using admin_bar_menu or wp_before_admin_bar_render hook we can customize…
Read More

How to customize your WordPress dashboard

CMS, PHP, Tutorials, Web Development Services, WordPress
There are many ways to customize the WordPress Dashboard. In default Wordpress Installation WP Dashboard have a brief view of the main sections of your site in terms of meta boxes, they also provide granular & graphical data on everything from recent comments & plugin updates to incoming links as well as WordPress latest news. There are many of dashboard widgets and plugins available in the WordPress Plugin Directory that you can use to transform your Dashboard into nice customized dashboard with your own text/images and links, or even disable it completely. The details of new plugins, WordPress News & Blog Updates , all these sections are added using the wp_dashboard_setup() hook and we can used it to remove them. You can use below code in your theme`s functions.php file…
Read More

How to Setup WordPress Multisite

Blog
WordPress released version 3.0 among the many improvements included in the release, now the WordPress community combined WordPress MU into the main WordPress configuration. This process also know as WPMU. WordPress has made it easier to create multiple WordPress sites on one server with single installtion, Now WordPress website can be installed once, and other blogs can be set up from within the single WordPress dashboard. To change WordPress from the single install to a WordPress multi-site you need to follow these simple instructions: Update the wp-config.php file You will need to add this line of code to your wp-config.php [code]define('WP_ALLOW_MULTISITE', true);[/code] Choose the way of multi-site whether you want to use sub-domains or sub-directories Create your blogs.dir directory. (If using WordPress 3.5+ ignore this as this has been deprecated…
Read More

AJAX in WordPress

Ajax, CMS, PHP, Tutorials, WordPress
Introduction AJAX = Asynchronous JavaScript and XML AJAX is not a programming language, but a way to use existing standards, AJAX is the art of exchanging data with a web-server, and updating parts of a web page - without reloading the whole page. Here is a basic example of how we use AJAX in WordPress. It explains how to take a variables from JavaScript and pass it to a PHP function,  and then pass it back to the JavaScript. For using this you must know how to enqueue JavaScript in Wordpress. JavaScriptCode [code] //PS: you may need to add jQuery Library in your theme for using this in some cases, but in admin side, jQuery is already added. jQuery(document).ready(function($) { // here you can get any user input or can…
Read More

Powerful WooCommerce Plugins for Your WordPress eCommerce Sites

CMS, Web Development Services, WordPress
All WordPress users knows about WooCommerce, It is very popular eCommerce plugin. WooCommerce provides you opportunity to turn your WordPress websites into a Powerful eCommerce websites with unlimited features. If you are looking for plugins that allows you to sell your products on your WordPress website, we recommend WooCommerce. Here are some WooCommerce plugins we collected by search engines as well as while working on many websites. You also can use these plugin for eCommerce websites.  Some of those are having multi-language feature,  so it can be transform your store into any language you need with WPML! These are the Powerful WooCommerce Plugins for Your WordPress eCommerce sites: WooCommerce Product Already In Cart Woocommerce Order Limits WooCommerce Product Listing WooCommerce – ShareASale Merchant Connector Loyalty Rewards Product Slider Multiple Images…
Read More

iPhone and iPad with CSS3 Media Queries

Blog
I've posted media queries to help designers & developers for their responsive designes. Many times We've had to design responsive websites targeting specific devices with CSS media queries. [code]iPad in portrait & landscape @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { /* Your Styles */ }iPad in landscape@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { /* Your Styles */ } iPad in portrait @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { /* Your Styles */ } iPhone 5 in portrait & landscape @media only screen and (min-device-width : 320px) and (max-device-width : 568px) { /* Your Styles */ } iPhone 5 in landscape @media only screen and (min-device-width : 320px)…
Read More

Browse and choose images without page reloading (Image File Browser)

Ajax, PHP
[caption id="attachment_505" align="alignnone" width="585"] Image File Browser[/caption] This class might be utilized to let the client peruse and pick pictures archived in the server. It utilizes an Ajax based client interface to keep away from page reloading when the perusing showcase is redesigned. Needed outside javascripts: prototype.js, scriptaculous library (scriptaculous.js,unittest.js,effects.js) Download Files Here
Read More