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

Visual editor to let the user crop images (Crop Images)

Ajax, PHP
[caption id="attachment_502" align="alignnone" width="585"] Crop User images.[/caption] This bundle could be utilized to actualize a superficial manager to let the client yield pictures. It produces Html, Javascript and Css for a client interface to let the client click on a picture and outline a territory of the picture to be edited. A Php class of the bundle can trim the picture as characterized by the client and save the trimmed picture to a given record.  Download Files Here
Read More

Trigger an AJAX request upon an HTML page event

Ajax, PHP, PHP Scripts
This is a very simple class that generates HTML attributes to handle events on page elements using AJAX requests. It generates Javascript code that calls a simple Javascript library that performs an AJAX request and uses the request response to update the contents of a given page element. The AJAX request URL, request method, and the page element to be update are configurable. The code and documentation is available in English and Spanish. Download Files
Read More