Generate editable text box that is saved with AJAX

Ajax, PHP, PHP Scripts, Techniques
This class might be utilized to produce a content box that gets editable when the client twofold clicks on the content. It shows the content to be altered inside a DIV tag that is displaced by a content info when the client twofold clicks on the DIV. The point when the content data looses the center, the altered content is submitted to the server to be spared without reloading the page utilizing AJAX. Download Files
Read More

Adding Menu Descriptions in a WordPress Theme

CMS, Web Design & Programming, Web Development Services, WordPress
WordPress 3.x menu has a very nice feature where you can add descriptions with each menu items. But this feature is hidden by default. When enabled displaying these description is not supported sometime in few themes. These menu descriptions provides a better user experience on your website and these descriptions can be used to show visitors more about a menu item. Most of the themes are not designed with menu-item descriptions but here We can guide you how to enable menu descriptions in WordPress and how to add each menu descriptions in your WordPress theme. You can follow these simple steps to show menu description for your WordPress theme: 1. Go to Menu section and click on screen option in top right. 2. Tick the checkbox of description and click…
Read More

PayPal Test payments in WooCommerce Plugin

Blog
The PayPal Sandbox is a place where you can test your shopping cart and other PayPal integrations in a realistic way, except that no money changes hands. This means you can test your PayPal processes in the Sandbox and know they will behave the same on the when you go live. You need to follwo these steps 1. Login to the PayPal developer website Login to the PayPal developer website: http://developer.paypal.com. Use your PayPal username and password to login and navigate to Applications → Sandbox accounts. 2. Create Your Sandbox test accounts Now You need to create 2 test accounts – 1 for the merchant (representing your shop’s PayPal account) and 1 for a buyer (representing a customer/buyer). Click the Create Account button to create an account. 3. Configure WooCommerce PayPal settings Now login to…
Read More

Virtual Currency: Bitcoin

Internet and Media, News
Bitcoin is being used to pay for everything from pin to smartphones on the Internet. The Bitcoin is being traded without  tracking, for reducing banking-transaction fees and making it an attractive for those seeking to buy and sell via the Web-stores. The price of Bitcoin is $1,034 on the http://preev.com/ , and this virtual currency gaining wider acceptance. Bitcoins, which exist as software and aren’t regulated by any country or banking authority,surged to a record $1,073 yesterday, up more than 80-fold from a year earlier. The currency has rallied on growing interest from investors in China and the U.S., while merchants are starting to accept Bitcoins for everything from Bears to tuition fees. History Bitcoin was introduced in 2008 by a group of programmers going under the name of Satoshi Nakamoto, Bitcoins exist as software,…
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