Bootstrap based Free WordPress Themes

Blog, Mobile Applications, Tutorials, Web Design & Programming, Web Development Services, WordPress
Bootstrap is a free front-end framework that consists of tools for creating websites and web applications. It contains HTML and CSS-based design templates for typography, forms, buttons, navigation and other interface components, as well as optional JavaScript extensions for navigation, slider, transitions, scrollspy, tabs, alerts etc. It was origionally developed by Mark Otto and Jacob Thornton at Twitter as a framework to encourage consistency across internal tools. Now it is open sources and is the most popular GitHub development project. Since Bootstrap hit version 2.0 it is no longer associated with Twitter. Bootstrap 3.1 introduced an official Sass port, further expanding the framework’s toolbox. Last year Bootstrap joined the flat design craze with its 3.0 release and a new optional theme. The default box model and basic UI components have…
Read More

Simple HTML5 Charts using the Canvas element

Techniques, Tips, Tutorials
An Easy, object oriented client side graphs for designers and developers This allows you to create rich dashboards that work on all devices without compromising on maintainability or functionality of your web application. Simple and flexible HTML5 Based 6 types of Charts Easy to use HTML5 & JavaScript Charting library built on Canvas element Line Charts Bar Charts Radar Charts Pie Charts Polar Area Charts DoughNut Charts Show your statistic data in different ways. Each of them animated, fully customizable and looks great, even on retina displays. Chart.js uses the HTML5 canvas element. It supports all modern browsers, and polyfills provide support for IE7/8. Chart.js is dependency free, lightweight and offers loads of customization options. Source: http://www.jqueryrain.com/
Read More

Validate HTML and remove forbidden tags and data

PHP, Techniques, Tutorials
This class might be utilized approve HTML that is XHTML agreeable and uproot tags and information that are not acknowledged. The class can parse the HTML information as a XML record and cross it to confirm if it agrees to a rundown of decides that characterize worthy tags and information. It can erase prohibited and copy tags and characteristics. The prepared record is saved in a class variable. Download Source File
Read More

Produce HTML Forms to control Mysql records

PHP, PHP Scripts, Tutorials
This class could be utilized to create HTML structures to control Mysql table records. It can take a rundown of Mysql table fields and produce HTML for structures to select, addition, redesign, erase table records. The class can additionally perform given approvals of specified fields and conjure given callback works on certain structure preparing occasions. Source Code is here
Read More

How to start LAMPP automatically in Ubuntu?

Blog, Tutorials, Web Design & Programming
For a web developer LAMPP is the primary application for web development, so to start it every time whenever you login. You can make a script which will automatically start LAMPP on login. Open terminal and run following command. [code]sudo gedit /etc/init.d/lampp[/code] Use following code in file & save and close the file. [code] #!/bin/bash /opt/lampp/lampp start [/code] Now run following command to make this script executable. [code] sudo chmod +x /etc/init.d/lampp [/code] In Last run following command to install init scripts to all runlevel. [code] sudo update-rc.d lampp defaults [/code] Restart the system for confirmation, lampp would be start automatically & you can check it by running http://localhost in your browser.
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

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

Display and edit data grids using AJAX

Ajax, Tutorials
This package can be used to display and data grids using AJAX. It uses Yahoo User interface library Javascript classes to perform AJAX requests. A Javascript script calls Yahoo UI libraries to load the data for the table from the server. The same Javascript script performs the AJAX interaction with the PHP script that includes the PHP class. This PHP class accesses an CSV file with the data to be displayed and edited in the grid. The grid supports column sorting, data filtering, pagination and context menu that appears when the menu mouse button is clicked. Download Files
Read More