Wednesday, March 19, 2014

Do you have an oDesk account? Are you new to oDesk? Are you looking for job? If all answers are yes, then this post is for you. Today I’m going to give some tips for the beginners in oDesk. Mostly the newbies don’t get jobs. Here I’ll give some tips how to get jobs easily for the first time. The tips are give bellow as points. ·         Make your profile 100%. It is the most important thing that, clients always like a 100% completed profile. ·         Now find...

Tuesday, March 18, 2014

Use copied code on Turbo C

I've posted a code of C programming for beginners. Did you practice that? Did you get success to use copied code directly on your compiler? If you use Turbo C compiler you’ll not be able to paste directly on your project editor copied from anywhere. There is a trick for you. I’m now going to tell you the secret. If you use Turbo C compiler, just copy the code from anywhere. Now create a text file. It’ll appear to you as New Text Document.txt. Now rename it as New Text Document.CPP . Here you've to change the extension. After that, paste your...

Create Custom fields in WordPress

Are you using a website created by WordPress? Do you want to add custom fields on your posts? So this article is only for you. It’s easy to add custom fields on WordPress and use on your posts and pages. You've to use a Plugin to do this that’s name “Advanced Custom Fields”. Go to your Dashboard > Plugins > Add new > Search in WordPress Plugins directory and install. After completing the installation, you’ll find a menu in your dashboard named “Custom Fields”. Click on Custom Fields > Add New. A page will open where...

Have you a blog on blogger.com? Do you want to create a sitemap of your blog and submit it to webmaster tools? So this post is for you. It’s not similar to create a sitemap.xml on blogger like other self hosted site. So you need a trick! Let’s start. I’m giving you a code bellow. You can use it on your blogger.com blog. User-agent: * Disallow: /search Allow: / Sitemap: http://plans-in-action.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500 Copy this code and write your blog’s link in the place of ‘plans-in-action’. Go...

Which WordPress SEO Plug-in is best?

 Have you any website created with WordPress? You need a plug-in for SEO. There are many free and paid plug-ins in WordPress directory. But I like two of them. Now I’ll tell you about WordPress SEO plug-ins. The two plug-ins I like are WordPress SEO by Yoast and All in One SEO Pack. But two of them, I like WordPress SEO by Yoast most. If you use the WordPress SEO by Yoast plug-in, you’ll get more functionality than All in One SEO Pack. You can use a Focus keyword in Yoast SEO. You can also get the SEO status (red, green, yellow). Sometimes...

Monday, March 17, 2014

Some SEO tips for beginners

I’m now working for one of my clients. The job is SEO. Now a days, it’s so important to optimize your site. So I’m going to tell you about something on SEO. You know SEO means Search Engine Optimization. If you want to optimize your site, I’ll give you a master plan which I use always especially. I’m giving the plans step by step. ...

Do you know about the learning management WordPress theme “Academy”? Once one of my clients bought this theme from themeforest. He gives it to me to customize like the demo version of themeforest. I started my work. All are okay. Got only problem. I install the WooCommerce plug-in. That was an updated version of the plug-in. But the checkout page didn’t work. I was searching here and there to fix the problem. But I didn’t get any solution. At last, I uninstalled and delete the plug-in file. Then upload the backdated version “woocommerce.2.0.20”....

Create PDF files using MS Word 2007

Are you searching any option to create PDF files using Microsoft Office Word 2007? I’m here to give you the solution. Hope you’ll enjoy this. It’s easy to create PDF files from Microsoft Office Word 2007. If you don’t have a add-in, you have to download the add-in named “2007 Microsoft Office Add-in: Microsoft Save as PDF or XPS”. http://www.microsoft.com/en-us/download/details.aspx?id=7 (copy and paste the link on your browser’s address bar)....

Summation of two numbers in C

Hello everybody. How’s your day? Great I think. Now I’m going to tell you about C programming. You know, C is a powerful system programming language. Today I’m going to solve a problem in C. It’s a very basic problem I think. The problem is to summation of two numbers. The code is given below: #include<stdio.h> #include<conio.h> void main() { clrscr(); int a,b,c; printf("Enter the value of a:"); scanf("%d",&a); printf("Enter the value of b:"); scanf("%d",&b); c=a+b; printf("c=%d",c); getch(); } Thanks everybody...

Hello readers, how’s everything? Hope all is well. Now I’m going to tell you “How to create table of contents” in “Microsoft office 2007”. Let’s start. At first write down the full body of your topic which you want to create a table of content. After completing total, now select the headlines of articles of your topic. Now click on Heading 1 from your Styles of MS word Home. Then click on References menu. It has a sub menu named Table of contents. Click on that. A drop down will open. Now select a style from there. Are you looking for any...

XAMPP - Download, Install and Start

Hello everybody. How are you all? Hope you are fine and fresh by the grace of Almighty Creator. Today I’m going to tell you about XAMPP. How to install and use it. Do you know what is XAMPP? XAMPP is a free and open source cross-platform web server solution stack package, consisting mainly of the Apache HTTP Server, MySQL database and interpreters for scripts written in the PHP and Perl programming languages. Download XAMPP: At first, you...