Choosing a web hosting company can be a difficult decision, a problem for web designers who have designed their website but need to find a suitable web-hosting provider. Many hosting companies offer attractive service packages but, even if you are a knowledgeable in this field,  You may still face...
When you have a good WordPress blog and plugins are installed from the plugin's library,  you can create your own simple WordPress plugin. How you want to customize it depends on your needs. Here's an article outlining the steps necessary on How to Write a Simple WordPress Plugin! The main...
Today I’d like to show you how to make your work easier by creating whats called an Action. Actions are simply little scripts that tell Photoshop to perform a pre-defined set of tasks. For example, lets say that you have lots of images that you want to turn from color...
By default, WordPress used name “WordPress” and email “[email protected]” when it sends notifications on your blog. For examples, see picture below: It isn’t convenient and you will want to change it on your Blog. This article will show you how to do this just with one simple step. Finding and opening functions.php...
How to make custom shapes with Photoshop. As with most tools in Photoshop there are a number of pre-installed shapes at your disposal and it’s very easy to make your own. The custom shapes tool is where Photoshop meets Illustrator as the shapes are actually vectors, meaning that you have the...
Making custom patterns in Photoshop is a very easy process. If you're like me then having the ability to create your own patterns will make your work stand out and become much more unique and after all that's what our clients are paying us for. Its a quick and simple...
Normal 0 21 false false false BG X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Calibri","sans-serif";} In the following tutorials I will show you an easy way to create your very own custom brushes, shapes and patterns in Photoshop. Photoshop comes with a pretty useful array of pre-installed brushes, shapes and patterns but what if you can’t...
In WordPress to display the most commented posts there are many plugins to do this. Using these codes can help accelerate your Wordpress site and then display them on the page anywhere easily. Method 1 : Using the loop Allows you to use the WordPress loop to retrieve the articles that...
Robots.txt is used to instruct search engines to automatically discover your pages and then search the index page. Most sites have folders and files that do not need the search engine robots to visit, so creating a robots.txt file can help you with SEO. Robots.txt file is a simple file...
Step 1. Finding file wp-config.php in your wordpress root file and adding 2 these codes: define('WP_ADMIN_DIR', 'your-custom-folder'); define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . WP_ADMIN_DIR); Step 2. Go to the theme that you are using and open the functions.php file Add this code to the bottom of the file: add_filter('site_url', 'wpadmin_filter', 10, 3); function wpadmin_filter( $url, $path, $orig_scheme...