Author: websourceblog

List of CMS for blogs and websites 7

List of CMS for blogs and websites

There are a lot of open source content management systems and blogging systems. WordPress is very famous for blogging but now it is also using as content management system and e-commerce solutions. I like...

Add menu item programmatically in WordPress 0

Change wordpress admin language.

WordPress is in U.S. English by default. WordPress has already been translated into many languages and all are available on wordpress site for free. WordPress also providing support for translating it in different languages....

Install imagick php extension 3

Date Addition and Subtraction in PHP

While development, you might need to add or subtract date from other date. It’s very easy via PHP date and strtotime functions. Following are few examples. Add 2 Months in current date. You can...

Git commands 0

Git commands

I like Git a lot. It is very much powerful then SVN. You can’t commit or merge if there are changes on same branch on server, this will prevent files to overwrite. See following...

How to remove button text in IE7? 0

How to remove button text in IE7?

Negative text-indent isn’t working in IE7 to remove button text but you can apply text-transform: capitalize with text-indent property. Following is code snippet. HTML code: <input class="button" type="button" value="Button Text" /> CSS: input.button {...

0

How to change textbox value on blur() and focus() events in jquery?

Let following text field. <input type=’text’ name="textbox" id="textbox" /> By following statement you can set its default value. $("#textbox").val("Any Value"); Use focus() event to change value when you focus on input field. $("#textbox").focus(function(){ $("#textbox").val("");...

3

How to configure multi store in OpenCart?

Many of you might use opencart for online store development. Opencart can also be used for multi store with single admin; you can manage both stores with same admin. I am using wamp so...