All Stories

Monday, November 24, 2014

In the starting of this blog on WordPress, I never had any difficulty with “Spam Comments”, I used to receive upto 5 to 10 spam comments daily which is usual for WordPress users. But suddenly, few days back, I received 100+ spam comments every single day, it was full of headache to delete these comments upon login to WP Dashboard all the time. The “Aksimet” and some other plugins keep the spam comments in a separate folder, but the problem is; you have to delete them , because you don’t want the mess inside your dashboard. When I got tired of it, I started searching for solution, and also I tried to use every trick I knew regarding it. What I did so far and  how I reduced the spam comments upto 60% in a week, I’ll be sharing my experience with you in this post.


Before starting this post, I’ll give you a brief how-to-do steps to make the default settings inside your WordPress dashboard, so you can automatically reduce the spam comments in the starting of your blog, however, if you didn’t care, you might receive tons of spam comments from the first day.

How to Reduce Spam comments in WordPress

Here are few changes you can make in your WP dashboard after installing “WordPress“, this will actually solve half of the problem and for the rest, I’ll be sharing my previous few days struggles to get rid of this shit :)

Plugins to Install for Detecting Spam Comments

#1. Please install “Akimset” Plugin for detecting spam comments, this plugin is actually installed by default with your WP installation, you just need to activate it and get the “Key” from its website for “Free“. It actually detects all the spam comments and put them in the “Spam folder”, you can delete them anytime you want.
 #2. Install “Growmap Anti Spambot Plugin” which will add a “Confirm” Box at the end of your comment form, so if a comment is being posted by human that will only be possible by clicking the “Confirm” box, so it will not allow any “Software” or “Bot” to insert comments automatically. You can see the example of it in our comment form on this blog.

Make changes to the default WordPress Discussion

After installing above two plugins, now go to WordPress Dashboard >> Setting >> Discussion, you’ll find a page like below one, just make sure you keep the setting as strict as possible, because through spam or malware comments, people can destroy your blog within minutes and I’ve experienced it many times.


You can keep the same setting as showing in the above picture, but I’ll recommend you to “Automatically close comments on articles older than 180 days”, because the older articles get more spam comments than the newest ones. You can manually disable comments on the older articles by just clicking “Quick Edit” option in the posts list and disable the comments on a particular post. That’s also a good way to get rid of some spam comments, see the picture below for this:


So this is what you need to actually do for reducing spam comments, which I myself did in the starting of this blog. However, you need to take some more actions, in order to get rid of all spam comments.

To remove the URL field from comment form

Now here is the magic that I used to reduce upto %30 spam comments in a single day, spammers mostly try to post comments for the sake of a backlink, which they usually insert in the “URL or Website” field in the comment form, you can see it here:


So as you can clearly see the visible “Website” field that is mostly used by spammers to create backlinks, and they put their website URL in the “website” field, what you can do to reduce the spam comments dramatically is to remove this field manually from the comment form.
To do this, just follow below steps: 
Copy this piece of PHP code and paste it inside “functions.php” file which you can find by going to Appearance >> Editor in your WordPress dashboard, just copy and paste the below code inside functions.php before the closing ?> PHP tag:
add_filter(‘comment_form_default_fields’, ‘url_filtered’);
function url_filtered($fields)
{
if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;
}
The above PHP script works on all premium & free WordPress themes, it basically add a filter which removes the “URL” field from the comment form. So by doing this, you’ll reduce the spam comments upto 30% to 40%.
I’ve reduced the spam comments upto 60%, and you can do the same if you apply above tricks mentioned in this post. However, I’m sure, I’ll get rid of all spam comments very soon. I’ll be updating this post regularly with new tricks I implement.
Let me know in the comment section :) if you have any questions or suggestions. Say bye to Spamming!

How to Reduce Spam Comments in WordPress

In the starting of this blog on WordPress, I never had any difficulty with “Spam Comments”, I used to receive upto 5 to 10 spam comments daily which is usual for WordPress users. But suddenly, few days back, I received 100+ spam comments every single day, it was full of headache to delete these comments upon login to WP Dashboard all the time. The “Aksimet” and some other plugins keep the spam comments in a separate folder, but the problem is; you have to delete them , because you don’t want the mess inside your dashboard. When I got tired of it, I started searching for solution, and also I tried to use every trick I knew regarding it. What I did so far and  how I reduced the spam comments upto 60% in a week, I’ll be sharing my experience with you in this post.


Before starting this post, I’ll give you a brief how-to-do steps to make the default settings inside your WordPress dashboard, so you can automatically reduce the spam comments in the starting of your blog, however, if you didn’t care, you might receive tons of spam comments from the first day.

How to Reduce Spam comments in WordPress

Here are few changes you can make in your WP dashboard after installing “WordPress“, this will actually solve half of the problem and for the rest, I’ll be sharing my previous few days struggles to get rid of this shit :)

Plugins to Install for Detecting Spam Comments

#1. Please install “Akimset” Plugin for detecting spam comments, this plugin is actually installed by default with your WP installation, you just need to activate it and get the “Key” from its website for “Free“. It actually detects all the spam comments and put them in the “Spam folder”, you can delete them anytime you want.
 #2. Install “Growmap Anti Spambot Plugin” which will add a “Confirm” Box at the end of your comment form, so if a comment is being posted by human that will only be possible by clicking the “Confirm” box, so it will not allow any “Software” or “Bot” to insert comments automatically. You can see the example of it in our comment form on this blog.

Make changes to the default WordPress Discussion

After installing above two plugins, now go to WordPress Dashboard >> Setting >> Discussion, you’ll find a page like below one, just make sure you keep the setting as strict as possible, because through spam or malware comments, people can destroy your blog within minutes and I’ve experienced it many times.


You can keep the same setting as showing in the above picture, but I’ll recommend you to “Automatically close comments on articles older than 180 days”, because the older articles get more spam comments than the newest ones. You can manually disable comments on the older articles by just clicking “Quick Edit” option in the posts list and disable the comments on a particular post. That’s also a good way to get rid of some spam comments, see the picture below for this:


So this is what you need to actually do for reducing spam comments, which I myself did in the starting of this blog. However, you need to take some more actions, in order to get rid of all spam comments.

To remove the URL field from comment form

Now here is the magic that I used to reduce upto %30 spam comments in a single day, spammers mostly try to post comments for the sake of a backlink, which they usually insert in the “URL or Website” field in the comment form, you can see it here:


So as you can clearly see the visible “Website” field that is mostly used by spammers to create backlinks, and they put their website URL in the “website” field, what you can do to reduce the spam comments dramatically is to remove this field manually from the comment form.
To do this, just follow below steps: 
Copy this piece of PHP code and paste it inside “functions.php” file which you can find by going to Appearance >> Editor in your WordPress dashboard, just copy and paste the below code inside functions.php before the closing ?> PHP tag:
add_filter(‘comment_form_default_fields’, ‘url_filtered’);
function url_filtered($fields)
{
if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;
}
The above PHP script works on all premium & free WordPress themes, it basically add a filter which removes the “URL” field from the comment form. So by doing this, you’ll reduce the spam comments upto 30% to 40%.
I’ve reduced the spam comments upto 60%, and you can do the same if you apply above tricks mentioned in this post. However, I’m sure, I’ll get rid of all spam comments very soon. I’ll be updating this post regularly with new tricks I implement.
Let me know in the comment section :) if you have any questions or suggestions. Say bye to Spamming!

Posted at November 24, 2014 |  by Online Ustaad
There should not be any further doubt that WordPress is the most commonly used CMS (Content Management System) for creating any type of website. Whether its a small blogger or a corporation, WordPress has become everyone’s #1 choice to start their business website with. After starting up a site/blog on WP, the site owner looks for the best and unique design which meets their specific requirements. And that’s why, WordPress designers have built thousands of premium themes which one can buy from different marketplaces as well as particular websites. So here on this page, I’ll share top 5 places from where you can easily buy the best theme which suits your WP site. You can buy your desired theme for your WP website very easily and these themes are something you’d really love in fact.


The first point to be noted is that; Premium WordPress themes are more professional than any other platform, they are the best in design as well as the functionality they have make them unique among others.
The second thing to be noted that you can never establish a long term business or website with a free WP theme, you must buy a premium theme if you want to present your website in a unique way. Using Free WordPress themes are not recommended by me. Because they are not well-coded, not well designed and more importantly not SEO optimized by default, while when you pay to someone, they provide you a great thing in return.
The third point to be noted that; There are some specific companies who have their own websites and they sell their WP themes directly to their customers, while there are marketplaces which are open for all the companies and designers, and every can offer their theme for selling using these marketplaces. So I’ll give you 5 best places to buy premium WP themes, this includes companies as well as market places.

#1. Themeforest.net (MarketPlace)

Themeforest.net is the best and largest marketplace for WordPress themes, there are hundereds of designers who create unique WP themes and offer them for selling using this great platform, not only WP themes, but you can also find HTML templates, Blogger Templates, Joomla Themes, different CMS scripts and many other kind of website themes and templates using themeforest.net. You can find a theme for your WP blog/site of any category. Just make a search if you are not able to find the theme easily.

#2. WooThemes .com

This website actually provides you a large number of WP themes that may match your “Idea”. You can have many categories over there to search your desired themes from. While browsing this website you can find WP themes for Ecommerce websites, themes for blogs, themes for companies and many other kind of quality themes.  You can also use their WooCommerce plugin for free which handles all of your E-shopping tasks.

#3. StudioPress.com (MarketPlace)

This is another market place to buy and Sell WordPress themes, you can find so many themes for your WP blog. Whether you have a business website or a personal blog, this website will provide you themes related to your category or your business. Do try it out if you want to have awesomeness and professionalism.

#4. MyThemeShop.com

This is another WP themes provider which is a company actually and provides a list of professoinal WP themes, you can browse their themes by visiting the website at “Mythemeshop.com”, I’ve already bought all of their themes and I’m using them on my blogs. So I’ll highly recommend you to get your theme from their if you want to have SEO friendly themes for your blog/site, here is the link to visit this website:

#5. Theme-junkie.com

This is the last website in our list which you can visit to buy professional and Search Engine friendly themes for your WP website. I’m using their theme “Freshlife” on my website “onlineustaad.com”, and its working just fine in terms of pasibility and simplicity. While it’s looking professional too. If you ever needed a great WP theme then must visit the above website.
I just shared few themes providers which I’ve used personally myself, but for a complete list of marketplaces you can visit this link to find more websites:
Moreover, you can search on Google.com for finding more websites to buy WordPress themes just by entering this pharse “Best marketplaces to buy wordpress themes”, however, as I mentioned the above listed websites are used by myself and I’m satisfied with their service. You can go your way which you understand is better for you.
Let me know if you have any question regarding this post or you just want to say something in Advance 

5 Best Websites for Buying WordPress Themes

There should not be any further doubt that WordPress is the most commonly used CMS (Content Management System) for creating any type of website. Whether its a small blogger or a corporation, WordPress has become everyone’s #1 choice to start their business website with. After starting up a site/blog on WP, the site owner looks for the best and unique design which meets their specific requirements. And that’s why, WordPress designers have built thousands of premium themes which one can buy from different marketplaces as well as particular websites. So here on this page, I’ll share top 5 places from where you can easily buy the best theme which suits your WP site. You can buy your desired theme for your WP website very easily and these themes are something you’d really love in fact.


The first point to be noted is that; Premium WordPress themes are more professional than any other platform, they are the best in design as well as the functionality they have make them unique among others.
The second thing to be noted that you can never establish a long term business or website with a free WP theme, you must buy a premium theme if you want to present your website in a unique way. Using Free WordPress themes are not recommended by me. Because they are not well-coded, not well designed and more importantly not SEO optimized by default, while when you pay to someone, they provide you a great thing in return.
The third point to be noted that; There are some specific companies who have their own websites and they sell their WP themes directly to their customers, while there are marketplaces which are open for all the companies and designers, and every can offer their theme for selling using these marketplaces. So I’ll give you 5 best places to buy premium WP themes, this includes companies as well as market places.

#1. Themeforest.net (MarketPlace)

Themeforest.net is the best and largest marketplace for WordPress themes, there are hundereds of designers who create unique WP themes and offer them for selling using this great platform, not only WP themes, but you can also find HTML templates, Blogger Templates, Joomla Themes, different CMS scripts and many other kind of website themes and templates using themeforest.net. You can find a theme for your WP blog/site of any category. Just make a search if you are not able to find the theme easily.

#2. WooThemes .com

This website actually provides you a large number of WP themes that may match your “Idea”. You can have many categories over there to search your desired themes from. While browsing this website you can find WP themes for Ecommerce websites, themes for blogs, themes for companies and many other kind of quality themes.  You can also use their WooCommerce plugin for free which handles all of your E-shopping tasks.

#3. StudioPress.com (MarketPlace)

This is another market place to buy and Sell WordPress themes, you can find so many themes for your WP blog. Whether you have a business website or a personal blog, this website will provide you themes related to your category or your business. Do try it out if you want to have awesomeness and professionalism.

#4. MyThemeShop.com

This is another WP themes provider which is a company actually and provides a list of professoinal WP themes, you can browse their themes by visiting the website at “Mythemeshop.com”, I’ve already bought all of their themes and I’m using them on my blogs. So I’ll highly recommend you to get your theme from their if you want to have SEO friendly themes for your blog/site, here is the link to visit this website:

#5. Theme-junkie.com

This is the last website in our list which you can visit to buy professional and Search Engine friendly themes for your WP website. I’m using their theme “Freshlife” on my website “onlineustaad.com”, and its working just fine in terms of pasibility and simplicity. While it’s looking professional too. If you ever needed a great WP theme then must visit the above website.
I just shared few themes providers which I’ve used personally myself, but for a complete list of marketplaces you can visit this link to find more websites:
Moreover, you can search on Google.com for finding more websites to buy WordPress themes just by entering this pharse “Best marketplaces to buy wordpress themes”, however, as I mentioned the above listed websites are used by myself and I’m satisfied with their service. You can go your way which you understand is better for you.
Let me know if you have any question regarding this post or you just want to say something in Advance 

Posted at November 24, 2014 |  by Online Ustaad

Sunday, December 15, 2013

Still, submitting a sitemap to search engines and especially to Google is the real way to get traffic back to your content from search engines like Google. The sitemap actually includes all of your site’s content in a single file which is very helpful for search robots to index the pages/post or links which they might have missed in the past. If you are using WordPress or blogger for blogging then it would be very easy for you to submit a sitemap to Google using your Webmaster Account. However, if you have videos on your site then you might miss them to be completely indexed by Google, because Google can’t recognize your video content without having “Schema.org” metas. But the good news for you is; you can easily create a video sitemap of your videos by using a simple plugin in WordPress created by “Amit Agarwal”. This plugin actually does a very simple job and creates a sitemap for all videos embedded to your site from YouTube. After creating your sitemap, you can easily send it to Google using Webmaster Tools. Here is how to install and use this plugin.
wordpress-xml-sitemaps-for-videos

How to Install and Use “XML Sitemap for Videos” Plugin?

The procedure of using this plugin is very easy, you can install and use this plugin very easily by following simple steps below:
  • Go to WordPress Dashboard
  • Plugins >> Add New
  • Search for this “XML Sitemap for Videos”
  • Install the Plugin and Activate it
After installing the plugin, you’ll need to click the setting page of the plugin, so you’ll see following screenshot:
XML Sitemap for Videos

In above screenshot, you might see there is just a button says “Generate Video Sitemap” which is very easy to be clicked :), while if you want to include the duration of the videos as well then just tick the “Check Box” which says “Include Video length”, but this is not recommended if you have a large number of videos such as thousands of videos. Now just click the Generate Video sitemap and the sitemap will be generated within few seconds of time.

How to submit Video sitemap to Google?

When you generated the sitemap, use the exact method which you use to submit your normal sitemap to Google Webmaster tools, go to your webmaster account, and then to that site for which you have just created the Video sitemap, click add sitemap and paste the link of the video sitemap that you just created which should be looking like this “http://www.yoursite.com/sitemap-video.xml” the yoursite is actually your site :).
If you want to alternatively download this plugin from WordPress plugins directory then here is the link to do so:
After downloading the plugin, you must install it and activate it using your Plugins section in your WordPress dashboard.
OK, now as many of you know that WordPress is all game of Plugins and useful free resources, so I’ll tell you more about free and useful plugins in the future, so you can make your blog/site more SEO friendly and secure.
Bonus Tips: 
Here are some bonus plugins related to “XML sitemap for Videos” and which are “Images sitemap” and “Mobile Sitemap”, these two helpful plugins are also created by “Amit Agarwal” from India. I appreciate his efforts and recommend you to use these plugins for free of cost. Here are the links to download the plugins and use for creating Images and Mobile sitemaps easily:
So the more you use and implement new tools, the more you’ll grow and will be your business with WordPress.
Need Help???
If you need further help regarding these plugins or anything related to this post then kindly use comment form below to post your questions, I always love to reply to your questions and to solve your problems. Best Regards;

XML Video Sitemap Generator Plugin for WordPress

Still, submitting a sitemap to search engines and especially to Google is the real way to get traffic back to your content from search engines like Google. The sitemap actually includes all of your site’s content in a single file which is very helpful for search robots to index the pages/post or links which they might have missed in the past. If you are using WordPress or blogger for blogging then it would be very easy for you to submit a sitemap to Google using your Webmaster Account. However, if you have videos on your site then you might miss them to be completely indexed by Google, because Google can’t recognize your video content without having “Schema.org” metas. But the good news for you is; you can easily create a video sitemap of your videos by using a simple plugin in WordPress created by “Amit Agarwal”. This plugin actually does a very simple job and creates a sitemap for all videos embedded to your site from YouTube. After creating your sitemap, you can easily send it to Google using Webmaster Tools. Here is how to install and use this plugin.
wordpress-xml-sitemaps-for-videos

How to Install and Use “XML Sitemap for Videos” Plugin?

The procedure of using this plugin is very easy, you can install and use this plugin very easily by following simple steps below:
  • Go to WordPress Dashboard
  • Plugins >> Add New
  • Search for this “XML Sitemap for Videos”
  • Install the Plugin and Activate it
After installing the plugin, you’ll need to click the setting page of the plugin, so you’ll see following screenshot:
XML Sitemap for Videos

In above screenshot, you might see there is just a button says “Generate Video Sitemap” which is very easy to be clicked :), while if you want to include the duration of the videos as well then just tick the “Check Box” which says “Include Video length”, but this is not recommended if you have a large number of videos such as thousands of videos. Now just click the Generate Video sitemap and the sitemap will be generated within few seconds of time.

How to submit Video sitemap to Google?

When you generated the sitemap, use the exact method which you use to submit your normal sitemap to Google Webmaster tools, go to your webmaster account, and then to that site for which you have just created the Video sitemap, click add sitemap and paste the link of the video sitemap that you just created which should be looking like this “http://www.yoursite.com/sitemap-video.xml” the yoursite is actually your site :).
If you want to alternatively download this plugin from WordPress plugins directory then here is the link to do so:
After downloading the plugin, you must install it and activate it using your Plugins section in your WordPress dashboard.
OK, now as many of you know that WordPress is all game of Plugins and useful free resources, so I’ll tell you more about free and useful plugins in the future, so you can make your blog/site more SEO friendly and secure.
Bonus Tips: 
Here are some bonus plugins related to “XML sitemap for Videos” and which are “Images sitemap” and “Mobile Sitemap”, these two helpful plugins are also created by “Amit Agarwal” from India. I appreciate his efforts and recommend you to use these plugins for free of cost. Here are the links to download the plugins and use for creating Images and Mobile sitemaps easily:
So the more you use and implement new tools, the more you’ll grow and will be your business with WordPress.
Need Help???
If you need further help regarding these plugins or anything related to this post then kindly use comment form below to post your questions, I always love to reply to your questions and to solve your problems. Best Regards;

Posted at December 15, 2013 |  by Online Ustaad

Friday, October 4, 2013


Creating a website is not the only task that you have to perform. You also have to make that website attractive and good looking for the visitors. It is human nature to see the good things again and again. That is why you are required to develop your website and then decorate it by giving some WordPress themes. This is another method to increase traffic to your website.
There are so many themes that are available for free on the internet. You just have to make few searches or now you can take help from my blog too. I am going to tell you about 10 best free WordPress themes, so here we go!
top-10-wordpress-themes

10 Best Free WordPress Themes

The themes which are shared on this page are free to use and you can download them directly from WordPress.ORG’s official website just by searching their names, or you can also directly search theme using your WP dashboard, however, I’ve given the downloading links at the bottom of each theme below the preview pictures. Just click that and download the theme for free. You don’t need to see the DEMO for the themes because the photos themselves are the DEMOS.
Theme # 1. The Virtue Theme
It is easy to use and very active theme. It allows users to exercise unlimited options and decorate their website, the way they want. The theme seems perfect for the photography or designee’s webpage. And yeah, its free of cost.
vertue-wordpress-them


#2. FabThemes.com
There are so many WordPress themes are available on this website. It is easy to use and users can search and download their desirable themes without any hassle. The range of themes will allow the user to choose according to their requirement. This is not a theme but a website of themes where you even can find a lot of themes for free to use on your WordPress website.
Fab Themes
Theme # 3. Neuro Free
It lets you experience the drag and drop option. Neuro Free is simple and responsive theme that is also compatible with iphone, Android and iPad. You can have a fresh environment on your blog while having this theme installed. The theme is free to use and can be downloaded either from given link below the picture or from your dashboard.
neuro-free-wordpress-theme

Theme # 4. The Expound
A kind of magazine theme for your publishing website. Not a bad idea to use this theme if you have some kind of informative website. Moreover, this theme will look professional for personal blogs and official website of an individual. Simply an awesome creation for WordPress websites.
The-Expound-wordpress-theme

Theme # 5. Pronto WordPress Theme
Simply made and user friendly theme is the best one for your travelling or sporting website. If you are planning to launch some sport’s based or travelling website then this theme is the best for you. It has all what you need, This is a kind of unique theme with a sticky sidebar at left side which can attract even guros.
pronto-wordpress-theme
Theme # 6. Responsive theme
You can customize your templates and designs through this theme. It has a grid system designing with it. Through this you can create good web page or blog on academic content. It has 2 simple navigation bars for you and also some tabs at the top left of the header. It will work perfect for corporation websites.
responsive-WordPress-theme

Theme # 7. Easy WordPress Theme
As the name says, the Easy is really easy to use and it is a very social theme. It has professional touches in it that makes it perfect for the corporate websites and gallery’s website. Looking just awesome in Design, must try it out.
Easy-wordpress-theme

Theme # 8. The Pinboard
The stylish theme with the framework and grid system in it. It is mobile friendly and easy to use on mobile phones too. You can upload videos, photos and Podcasts on it feasibly. The main idea of this theme is very similar to Pinterest which is a popular Pinboard social network. It really works for all kind of websites having media in core.
pinboard-wordpress-theme
Theme # 9. It’s a Girl
Sounds cute! Well, it is. If you are planning to write some WordPress blogs about baby girls then nothing is better than choosing this theme. It has very attractive and sweet pictures of the girls and gives some positive vibes to the readers. It is very responsive and simple theme.
its-a-girl-wordpress-theme

Theme # 10. HeatMap Adsense Ready WordPress Theme
This theme is especially for those who like Blue and white color combination, it’s free to use theme and is Google Adsense Ready. Its a two column theme which is also having two navigation bars, and you can set your logo as well for which there is a space at left side in the header. This theme is simple and looks awesome in design. You can try it for free.
heatmap-wordpress-theme

Over to you: 
We’ve tried our best to provide you the best free WordPress resources, and we’ll continue it in the future. However, you can ask your questions in the comment section if you like this post and want to appreciate our efforts. Also if you share this post with your friends on social media, that would be a great favor for us. Happy WordPressing!

Download 10 best free WordPress Themes


Creating a website is not the only task that you have to perform. You also have to make that website attractive and good looking for the visitors. It is human nature to see the good things again and again. That is why you are required to develop your website and then decorate it by giving some WordPress themes. This is another method to increase traffic to your website.
There are so many themes that are available for free on the internet. You just have to make few searches or now you can take help from my blog too. I am going to tell you about 10 best free WordPress themes, so here we go!
top-10-wordpress-themes

10 Best Free WordPress Themes

The themes which are shared on this page are free to use and you can download them directly from WordPress.ORG’s official website just by searching their names, or you can also directly search theme using your WP dashboard, however, I’ve given the downloading links at the bottom of each theme below the preview pictures. Just click that and download the theme for free. You don’t need to see the DEMO for the themes because the photos themselves are the DEMOS.
Theme # 1. The Virtue Theme
It is easy to use and very active theme. It allows users to exercise unlimited options and decorate their website, the way they want. The theme seems perfect for the photography or designee’s webpage. And yeah, its free of cost.
vertue-wordpress-them


#2. FabThemes.com
There are so many WordPress themes are available on this website. It is easy to use and users can search and download their desirable themes without any hassle. The range of themes will allow the user to choose according to their requirement. This is not a theme but a website of themes where you even can find a lot of themes for free to use on your WordPress website.
Fab Themes
Theme # 3. Neuro Free
It lets you experience the drag and drop option. Neuro Free is simple and responsive theme that is also compatible with iphone, Android and iPad. You can have a fresh environment on your blog while having this theme installed. The theme is free to use and can be downloaded either from given link below the picture or from your dashboard.
neuro-free-wordpress-theme

Theme # 4. The Expound
A kind of magazine theme for your publishing website. Not a bad idea to use this theme if you have some kind of informative website. Moreover, this theme will look professional for personal blogs and official website of an individual. Simply an awesome creation for WordPress websites.
The-Expound-wordpress-theme

Theme # 5. Pronto WordPress Theme
Simply made and user friendly theme is the best one for your travelling or sporting website. If you are planning to launch some sport’s based or travelling website then this theme is the best for you. It has all what you need, This is a kind of unique theme with a sticky sidebar at left side which can attract even guros.
pronto-wordpress-theme
Theme # 6. Responsive theme
You can customize your templates and designs through this theme. It has a grid system designing with it. Through this you can create good web page or blog on academic content. It has 2 simple navigation bars for you and also some tabs at the top left of the header. It will work perfect for corporation websites.
responsive-WordPress-theme

Theme # 7. Easy WordPress Theme
As the name says, the Easy is really easy to use and it is a very social theme. It has professional touches in it that makes it perfect for the corporate websites and gallery’s website. Looking just awesome in Design, must try it out.
Easy-wordpress-theme

Theme # 8. The Pinboard
The stylish theme with the framework and grid system in it. It is mobile friendly and easy to use on mobile phones too. You can upload videos, photos and Podcasts on it feasibly. The main idea of this theme is very similar to Pinterest which is a popular Pinboard social network. It really works for all kind of websites having media in core.
pinboard-wordpress-theme
Theme # 9. It’s a Girl
Sounds cute! Well, it is. If you are planning to write some WordPress blogs about baby girls then nothing is better than choosing this theme. It has very attractive and sweet pictures of the girls and gives some positive vibes to the readers. It is very responsive and simple theme.
its-a-girl-wordpress-theme

Theme # 10. HeatMap Adsense Ready WordPress Theme
This theme is especially for those who like Blue and white color combination, it’s free to use theme and is Google Adsense Ready. Its a two column theme which is also having two navigation bars, and you can set your logo as well for which there is a space at left side in the header. This theme is simple and looks awesome in design. You can try it for free.
heatmap-wordpress-theme

Over to you: 
We’ve tried our best to provide you the best free WordPress resources, and we’ll continue it in the future. However, you can ask your questions in the comment section if you like this post and want to appreciate our efforts. Also if you share this post with your friends on social media, that would be a great favor for us. Happy WordPressing!

Posted at October 04, 2013 |  by Online Ustaad
For the additional features on your website, it is good to have the plug-ins on it. This will make the trafficking easy for the website visitors. And if we are talking about WordPress websites then WP is the treasure of useful plugins. There are thousands of free plugins out there for you to use while having a site hosted on WP. And therefore, WP is considered the most SEO friendly CMS platform. We are therefore here to help you out in finding some useful Search Engine Optimization plugins for your WP website.
SEO Plugins for WordPress
Here is the list of 5 plug-ins that are useful for your WordPress Website.

Useful SEO Plug-ins for the WordPress:

#1. WordPress by Yoast:
A must used plugin by every WordPress blogger to avail more options and functions by single software. Almost every top blogger recommends the use of this plug-in. It effectively gets the top ranking to the blog in search engine and all because of good searching technique. The few of its appealing features are:
  • It can measure the density of the keywords in your blog.
  • This plug-in has got the powerful mechanism as compare to others.
  • You can take a look on how your blog post is looking before publishing.
  • It automatically creates the XML sitemap and informs Google and Bing about it.
#2. All in One SEO Pack
I myself recommend this plugin to be used by everyone. I’m using it myself on this blog. So All in one SEO WP plugin is without doubts all in one :) The recent version of this plugin almost covered everything for WP SEO. You can now have even more easy interface and setting for your website. It has many SEO features, but some of them are following:
  • Meta Description Tags for both Home Page & Single Pages
  • SEO Title for Website and single posts
  • SEO Setting for all of your site’s content
  • Counts the Title Characters & Description Characters for single posts
  • Keywords setting for Pages, posts, categories, Archives and Tags
  • No Index attribute for all pages
  • Google, Bing verification setting
#3. Robots Meta Plugin
This SEO Plugins is also created by Yoast, it helps you to make unnecessary links no-follow for the search robots, for example, the archives, tags, categories etc create duplicate links, you can install this plugin and make all the unnecessary links as nofollow, so you’ll be safer from any Google Penalties for duplicate links or duplicate pages. However, this functionality with basic level is already included in
All in One SEO Pack Plugin, but if you want to go Advance then use Robots Meta Plugin.
#4. SEO Smart Links:
This plug-in lets the related links and posts to the keywords present in your blog. You can even enter your own keywords and URLs in the blog. The changes can be made as per need by going into Administration Setting Panel. It provides automatic and free updates, the prices are very feasible and the changes can be customized as you want. The good number of keywords makes it possible for your blog to appear more and more.
#5. The JetPack:
The JetPack is the package of complete tools that any good plug-in must have. It gives a chance to the JetPack to enhance the meanings of your WordPress by adding many helping features in it. Some of its features are:
  • It shares the blogs automatically on yours and on other pages of Facebook, LinkedIn Twitter and Pinterest.
  • It gives users the chance to get subscribed to your blog.
  • The spelling and grammar feature makes required changes in your blog.
  • The very attractive feature is that you can directly upload the blog through your email account.
  • It has its own graphical editor so that you can now create your own designs on photos without taking help from any external editor.
  • It allows the readers to like your blog content.

How to Install all these Plugins?

Installation of these plugins is very easy; just go to your WordPress dashboard and at left side find the “Plugins” click on add new Plugin and copy above provided plugin names and search over there, you’ll be able to easily see the “install” button with each plugin you see in the Plugins library, just click that option and the plugin will be installed within few seconds. Now you can activate and make setting of the plugin you’ve just installed. Very Easy ha na :)
Let me know if you have questions regarding this post or have more seo freindly WordPress plugins, do share them with our readers and if you share this post with your friends on social media, that would be a HUG from you :)

5 Useful SEO Plugins for WordPress Websites

For the additional features on your website, it is good to have the plug-ins on it. This will make the trafficking easy for the website visitors. And if we are talking about WordPress websites then WP is the treasure of useful plugins. There are thousands of free plugins out there for you to use while having a site hosted on WP. And therefore, WP is considered the most SEO friendly CMS platform. We are therefore here to help you out in finding some useful Search Engine Optimization plugins for your WP website.
SEO Plugins for WordPress
Here is the list of 5 plug-ins that are useful for your WordPress Website.

Useful SEO Plug-ins for the WordPress:

#1. WordPress by Yoast:
A must used plugin by every WordPress blogger to avail more options and functions by single software. Almost every top blogger recommends the use of this plug-in. It effectively gets the top ranking to the blog in search engine and all because of good searching technique. The few of its appealing features are:
  • It can measure the density of the keywords in your blog.
  • This plug-in has got the powerful mechanism as compare to others.
  • You can take a look on how your blog post is looking before publishing.
  • It automatically creates the XML sitemap and informs Google and Bing about it.
#2. All in One SEO Pack
I myself recommend this plugin to be used by everyone. I’m using it myself on this blog. So All in one SEO WP plugin is without doubts all in one :) The recent version of this plugin almost covered everything for WP SEO. You can now have even more easy interface and setting for your website. It has many SEO features, but some of them are following:
  • Meta Description Tags for both Home Page & Single Pages
  • SEO Title for Website and single posts
  • SEO Setting for all of your site’s content
  • Counts the Title Characters & Description Characters for single posts
  • Keywords setting for Pages, posts, categories, Archives and Tags
  • No Index attribute for all pages
  • Google, Bing verification setting
#3. Robots Meta Plugin
This SEO Plugins is also created by Yoast, it helps you to make unnecessary links no-follow for the search robots, for example, the archives, tags, categories etc create duplicate links, you can install this plugin and make all the unnecessary links as nofollow, so you’ll be safer from any Google Penalties for duplicate links or duplicate pages. However, this functionality with basic level is already included in
All in One SEO Pack Plugin, but if you want to go Advance then use Robots Meta Plugin.
#4. SEO Smart Links:
This plug-in lets the related links and posts to the keywords present in your blog. You can even enter your own keywords and URLs in the blog. The changes can be made as per need by going into Administration Setting Panel. It provides automatic and free updates, the prices are very feasible and the changes can be customized as you want. The good number of keywords makes it possible for your blog to appear more and more.
#5. The JetPack:
The JetPack is the package of complete tools that any good plug-in must have. It gives a chance to the JetPack to enhance the meanings of your WordPress by adding many helping features in it. Some of its features are:
  • It shares the blogs automatically on yours and on other pages of Facebook, LinkedIn Twitter and Pinterest.
  • It gives users the chance to get subscribed to your blog.
  • The spelling and grammar feature makes required changes in your blog.
  • The very attractive feature is that you can directly upload the blog through your email account.
  • It has its own graphical editor so that you can now create your own designs on photos without taking help from any external editor.
  • It allows the readers to like your blog content.

How to Install all these Plugins?

Installation of these plugins is very easy; just go to your WordPress dashboard and at left side find the “Plugins” click on add new Plugin and copy above provided plugin names and search over there, you’ll be able to easily see the “install” button with each plugin you see in the Plugins library, just click that option and the plugin will be installed within few seconds. Now you can activate and make setting of the plugin you’ve just installed. Very Easy ha na :)
Let me know if you have questions regarding this post or have more seo freindly WordPress plugins, do share them with our readers and if you share this post with your friends on social media, that would be a HUG from you :)

Posted at October 04, 2013 |  by Online Ustaad

YouTube.com is the most popular video sharing website. It is something similarly like a social platform. You can upload/share/download/watch videos and can subscribe to your desired channels, also people can subscribe to you, you can send messages, can comment and can do many things same like a social network. YouTube is used for website marketing and product marketing by bloggers & webmasters. And a rapid growth was seen in the increase of new users.
Subscribe to Youtube
You can market your website by simply creating some helpful videos for the YouTube community regardless a specific topic, because YouTube has numerous categories for You. And there are millions of YouTubers waiting for your Videos. So you can easily increase your readers/audience by uploading some helpful videos to YouTube. If people liked your videos, they will subscribe to your channel and also they will visit your website (which you must mention in every video).
And by adding a subscribe widget to your blog/site, you can further increase your subscribers and viewers on YouTube. This is a great engagement between your site and YouTube. You get many benefits by Using YouTube. People on YouTube watch your videos and find your site. And people who visit your site watch the same videos on your site and then visit your YouTube channel. So give them opportunity to directly subscribe to you via your website. Here is how.

Adding YouTube subscribe Widget to Your Website

This thing is very easy to do, you need to just insert the following code somewhere in your website or blog. In blogger you can insert this code by adding an HTML/JavaScript widget, while in WordPress, you can add it by adding a text widget to sidebar.
<iframe src=”http://www.youtube.com/subscribe_widget?p=OnlineTeacher100
style=”overflow: hidden; height: 105px; width: 300px; border: 0;”
scrolling=”no” frameBorder=”0″>
</iframe>
Just copy the above code and paste inside a text widget in WordPress & HTML/JavaScript widget in Blogger, and after pasting it there, just change the “OnlineTeacher100” to your YouTube user name. Save the widget and you’ll see a live subscribe widget on your site/blog.
If you faced any difficulty then here is a video tutorial in Urdu language which can practically show you how to do this thing:
So Now you can increase YouTube subscribers straight from your website. I hope you have understood this procedure and now you can easily do this by yourself. You can however, comment below the post if you have questions or something to say. I welcome You to join the conversation. Take Care.

Add YouTube Subscribe Widget to Your Blog in Urdu & Hindi


YouTube.com is the most popular video sharing website. It is something similarly like a social platform. You can upload/share/download/watch videos and can subscribe to your desired channels, also people can subscribe to you, you can send messages, can comment and can do many things same like a social network. YouTube is used for website marketing and product marketing by bloggers & webmasters. And a rapid growth was seen in the increase of new users.
Subscribe to Youtube
You can market your website by simply creating some helpful videos for the YouTube community regardless a specific topic, because YouTube has numerous categories for You. And there are millions of YouTubers waiting for your Videos. So you can easily increase your readers/audience by uploading some helpful videos to YouTube. If people liked your videos, they will subscribe to your channel and also they will visit your website (which you must mention in every video).
And by adding a subscribe widget to your blog/site, you can further increase your subscribers and viewers on YouTube. This is a great engagement between your site and YouTube. You get many benefits by Using YouTube. People on YouTube watch your videos and find your site. And people who visit your site watch the same videos on your site and then visit your YouTube channel. So give them opportunity to directly subscribe to you via your website. Here is how.

Adding YouTube subscribe Widget to Your Website

This thing is very easy to do, you need to just insert the following code somewhere in your website or blog. In blogger you can insert this code by adding an HTML/JavaScript widget, while in WordPress, you can add it by adding a text widget to sidebar.
<iframe src=”http://www.youtube.com/subscribe_widget?p=OnlineTeacher100
style=”overflow: hidden; height: 105px; width: 300px; border: 0;”
scrolling=”no” frameBorder=”0″>
</iframe>
Just copy the above code and paste inside a text widget in WordPress & HTML/JavaScript widget in Blogger, and after pasting it there, just change the “OnlineTeacher100” to your YouTube user name. Save the widget and you’ll see a live subscribe widget on your site/blog.
If you faced any difficulty then here is a video tutorial in Urdu language which can practically show you how to do this thing:
So Now you can increase YouTube subscribers straight from your website. I hope you have understood this procedure and now you can easily do this by yourself. You can however, comment below the post if you have questions or something to say. I welcome You to join the conversation. Take Care.

Posted at October 04, 2013 |  by Online Ustaad

We recently talked a lot about WordPress on this blog. We actually want to continue talking with you about WordPress because this website is hosted on WP and we want to let you know about each tip & potential that we test here on this website. I earlier published some posts about WordPress site security, WordPress optimization and also how to speed up your WP site. Now after doing all the previous things, you should always remember to backup your site, so in case something goes fishy, you can easily restore your site within minutes. In this article I’ll guide you how can you easily backup your WP website, also here is a video tutorial in Urdu & Hindi for backing up your WP Site.
wordpress backup

How to Backup Your WP Website?

Backing up your WordPress site is very easy task, you can directly export your WP site just by going to Tools>>Export and click the Export option, it will create a XML file of your all blog’s content such as pages, posts, comments, categories, tags etc and will save it to your computer. So this is all of your website content but only text content. Later on, you can restore your site by importing this file using the import option. However, images & media are not backed up by this tool.
The next thing to be backed up is your WordPress database inside database section in your website’s Cpanel. You need to just go to your Cpanel and find the databases, a database for your WP site will be located over there, and you can just backup that as well. You can export your Database to your computer easily. This database contains all of your text content such as comments, plugins, posts, pages, categories, tags etc.
But unfortunately, you cannot directly backup your images/media/files, for this you can use the backup option in your Cpanel, this option will create a backup for all of your site and will backup each and everything including the media files such as images and photos etc. However, this backup will be created but wont be restored by you using your cpanel, you can though, contact your hosting provider to restore your backup using their advance tools. You’ll need to just provide them the backup that you created using Cpanel’s backup option.
I’m also looking for an alternative option to backup your WP images/files and restore it, but this service is not seems to be free, there are many premium services out there, but I’ll try to find a free solution.
Now here is the video tutorial in Urdu & Hindi which will practically let you know about the Backups:
Having watched the video, I hope you’ll learn it, however, if you got questions then you are most welcome to post your questions only below this post.. Share this post with your friends and take Care.

How to Backup WordPress website in Urdu & Hindi


We recently talked a lot about WordPress on this blog. We actually want to continue talking with you about WordPress because this website is hosted on WP and we want to let you know about each tip & potential that we test here on this website. I earlier published some posts about WordPress site security, WordPress optimization and also how to speed up your WP site. Now after doing all the previous things, you should always remember to backup your site, so in case something goes fishy, you can easily restore your site within minutes. In this article I’ll guide you how can you easily backup your WP website, also here is a video tutorial in Urdu & Hindi for backing up your WP Site.
wordpress backup

How to Backup Your WP Website?

Backing up your WordPress site is very easy task, you can directly export your WP site just by going to Tools>>Export and click the Export option, it will create a XML file of your all blog’s content such as pages, posts, comments, categories, tags etc and will save it to your computer. So this is all of your website content but only text content. Later on, you can restore your site by importing this file using the import option. However, images & media are not backed up by this tool.
The next thing to be backed up is your WordPress database inside database section in your website’s Cpanel. You need to just go to your Cpanel and find the databases, a database for your WP site will be located over there, and you can just backup that as well. You can export your Database to your computer easily. This database contains all of your text content such as comments, plugins, posts, pages, categories, tags etc.
But unfortunately, you cannot directly backup your images/media/files, for this you can use the backup option in your Cpanel, this option will create a backup for all of your site and will backup each and everything including the media files such as images and photos etc. However, this backup will be created but wont be restored by you using your cpanel, you can though, contact your hosting provider to restore your backup using their advance tools. You’ll need to just provide them the backup that you created using Cpanel’s backup option.
I’m also looking for an alternative option to backup your WP images/files and restore it, but this service is not seems to be free, there are many premium services out there, but I’ll try to find a free solution.
Now here is the video tutorial in Urdu & Hindi which will practically let you know about the Backups:
Having watched the video, I hope you’ll learn it, however, if you got questions then you are most welcome to post your questions only below this post.. Share this post with your friends and take Care.

Posted at October 04, 2013 |  by Online Ustaad
While WordPress is the most popular platform for popular and personal blogs and websites. Almost every task is done by different free plugins available in the WP plugins library. And we are also talking about WP tips for last few days in Urdu. I shared a post on WordPress v Blogger, and then I recommended to use WordPress when you have a large number of visitors and reputation. I published a post covering how to secure your WordPress site and how to speed up your WP website. Now here is the same spirit, and today you’ll learn how to optimize your WordPress site using some formal plugins.
wordpress seo tips

Best SEO Plugins for WordPress websites

There are some mostly used WP plugins which are used by almost every user on WordPress, and these plugins just make your blog visible to the search engines. The plugins that I’m talking about are;  All in one SEO Pack, Google XML sitemaps, Google XML Video sitemap and Robots Meta. There are many more plugins out there which can also be used along with these plugins, but these are actually the most important and necessary, we’ll let you soon know about more plugins to use.

All in One SEO Plugin

This plugin was very simple before 2 months, but recently its author has changed it entirely, so now there is no need to use any other Plugin for Your WP site’s SEO. I recommend this plugin and this is having all you need for optimizing your WP site. In my opinion it is now more better than WordPress SEO by Yoast Plugin, because that plugin is very difficult for novice users of WP, while All in one SEO Pack is very easy to manage and handle.
It gives you options to add meta description and title for your site’s Home page as well as on single pages+posts. Also now its advance interface gives you more power to make advance setting for your different meta attributes and all parameters of your WP sites such as the Title of the posts, the category pages, the archive pages and other pages.
I have all explained these plugins in video tutorials in Urdu & Hindi languages, so just watch these two video tutorials to completely learn the Plugins that you must install and use.
Video for Learning all in one SEO pack in Urdu
Video for Learning other SEO Plugins for WordPress
Having watched, the videos I hope you’ve learned the things that I recommended. However, we can still explore more treasures inside WordPress. Share this post with all of your dudes and write your comment below the post if you need to ask something. Take Care till next tutorial.

Best SEO Plugins for WordPress Site Optimization in Urdu & Hindi

While WordPress is the most popular platform for popular and personal blogs and websites. Almost every task is done by different free plugins available in the WP plugins library. And we are also talking about WP tips for last few days in Urdu. I shared a post on WordPress v Blogger, and then I recommended to use WordPress when you have a large number of visitors and reputation. I published a post covering how to secure your WordPress site and how to speed up your WP website. Now here is the same spirit, and today you’ll learn how to optimize your WordPress site using some formal plugins.
wordpress seo tips

Best SEO Plugins for WordPress websites

There are some mostly used WP plugins which are used by almost every user on WordPress, and these plugins just make your blog visible to the search engines. The plugins that I’m talking about are;  All in one SEO Pack, Google XML sitemaps, Google XML Video sitemap and Robots Meta. There are many more plugins out there which can also be used along with these plugins, but these are actually the most important and necessary, we’ll let you soon know about more plugins to use.

All in One SEO Plugin

This plugin was very simple before 2 months, but recently its author has changed it entirely, so now there is no need to use any other Plugin for Your WP site’s SEO. I recommend this plugin and this is having all you need for optimizing your WP site. In my opinion it is now more better than WordPress SEO by Yoast Plugin, because that plugin is very difficult for novice users of WP, while All in one SEO Pack is very easy to manage and handle.
It gives you options to add meta description and title for your site’s Home page as well as on single pages+posts. Also now its advance interface gives you more power to make advance setting for your different meta attributes and all parameters of your WP sites such as the Title of the posts, the category pages, the archive pages and other pages.
I have all explained these plugins in video tutorials in Urdu & Hindi languages, so just watch these two video tutorials to completely learn the Plugins that you must install and use.
Video for Learning all in one SEO pack in Urdu
Video for Learning other SEO Plugins for WordPress
Having watched, the videos I hope you’ve learned the things that I recommended. However, we can still explore more treasures inside WordPress. Share this post with all of your dudes and write your comment below the post if you need to ask something. Take Care till next tutorial.

Posted at October 04, 2013 |  by Online Ustaad

As all of might know that we recently moved this blog from blogger to WordPress. The reason was, because blogger disabled our blog without giving any reason, and we requested that blog for restoration, but their review process is very long process which sometimes can take months for a blog to be reviewed. Therefore, we couldn’t resist to start our blog on any other platform, and as WordPress said to be the best blogging platform, we started this blog again on WP. Now in this post I’m going to compare WordPress with Blogger, and this will be a long series, because I want to let you know from starting, so the first video tutorial is just about knowing the pros & cons of both platforms. However, in later tutorials, I’ll be explaining when to choose WordPress, or you can say when to shift from Blogger to WP. After that, I’ll teach you the customization of WP, the optimization of WP and the security of WP which is very necessary.
wordpress v blogger in urdu
The first video about this series is live here which you can watch in Urdu & Hindi languages:
Basically, we have discussed some good points and bad points of both these platforms, so here I’m going to list the good points of Blogger and WordPress hosting and tools.
Good points of Blogger:
  1. Free Template Customization
  2. Free Web Hosting forever
  3. Free Templates
  4. Very Secure
  5. Full Backup option
Good Points in WordPress:
  1. Professional Premium Themes
  2. Self-hosted platform
  3. More SEO friendly than blogger
  4. Thousands of free plugins for every blog task
  5. Access to all files & root Directory
Now there are some weaknesses or bad factors in both of these platforms which should also be listed here.
Bad points of Blogger:
  1. Not SEO friendly
  2. Not Access to Root Folder
  3. Can disable/delete your blog anytime
  4. Don’t have any trusted plugins
  5. Don’t have good customer support
Bad points in WordPress:
  1. Not Secure
I understand that there is only one weakness in WordPress which is self-defend security for your website, because in blogger everything regarding security is done by Google itself, but in WP you’ve to take measures to secure your blog, but this is not a big problem. Because you can easily secure your blog by installing some plugins and making some other changes. And also you can backup your blog easily, so in case your blog is hacked, you can restore it within minutes.
Now it was just the introduction of these platforms, however, I’ll be giving you more tips in the future and also will suggest you the best. Keep in touch.

WordPress v Blogger Which Platform is Better?


As all of might know that we recently moved this blog from blogger to WordPress. The reason was, because blogger disabled our blog without giving any reason, and we requested that blog for restoration, but their review process is very long process which sometimes can take months for a blog to be reviewed. Therefore, we couldn’t resist to start our blog on any other platform, and as WordPress said to be the best blogging platform, we started this blog again on WP. Now in this post I’m going to compare WordPress with Blogger, and this will be a long series, because I want to let you know from starting, so the first video tutorial is just about knowing the pros & cons of both platforms. However, in later tutorials, I’ll be explaining when to choose WordPress, or you can say when to shift from Blogger to WP. After that, I’ll teach you the customization of WP, the optimization of WP and the security of WP which is very necessary.
wordpress v blogger in urdu
The first video about this series is live here which you can watch in Urdu & Hindi languages:
Basically, we have discussed some good points and bad points of both these platforms, so here I’m going to list the good points of Blogger and WordPress hosting and tools.
Good points of Blogger:
  1. Free Template Customization
  2. Free Web Hosting forever
  3. Free Templates
  4. Very Secure
  5. Full Backup option
Good Points in WordPress:
  1. Professional Premium Themes
  2. Self-hosted platform
  3. More SEO friendly than blogger
  4. Thousands of free plugins for every blog task
  5. Access to all files & root Directory
Now there are some weaknesses or bad factors in both of these platforms which should also be listed here.
Bad points of Blogger:
  1. Not SEO friendly
  2. Not Access to Root Folder
  3. Can disable/delete your blog anytime
  4. Don’t have any trusted plugins
  5. Don’t have good customer support
Bad points in WordPress:
  1. Not Secure
I understand that there is only one weakness in WordPress which is self-defend security for your website, because in blogger everything regarding security is done by Google itself, but in WP you’ve to take measures to secure your blog, but this is not a big problem. Because you can easily secure your blog by installing some plugins and making some other changes. And also you can backup your blog easily, so in case your blog is hacked, you can restore it within minutes.
Now it was just the introduction of these platforms, however, I’ll be giving you more tips in the future and also will suggest you the best. Keep in touch.

Posted at October 04, 2013 |  by Online Ustaad

Here is the another video training series of Google Webmaster tools. This tutorial was most awaited from my side but, today you will get the complete knowledge about Google webmaster tools in Urdu language. I tried to improve videos’ result in this series and you will feel it while watching these video tutorials. GWT is a very important tool according to all experts because the correct usage of this great tool can bring great results. GWT is a tool which is used for off-page SEO and to index your site in Google. You can submit your website/blog to Google by using this tool, you can submit multiple sitemaps to Google by using GWT; also you can check all the errors about your website/blog in WT which were found by Google Bots while crawling your website. If you feel free then do comment and share this post with everyone, because it is very important for blog traffic and SEO.
Google Webmaster in Urdu

Google Webmaster Tools Video Training in Urdu

in below videos you will find a step by step complete training of Google Webmaster Tools in Urdu language with easy accent. There are 9 video tutorials in this series and you will watch them in a single playlist. I have created a playlist to combine all course in one video. I understand, I have given you all the necessary knowledge of GWT, however, you can further ask about it if you feel that something has been missed.
As you know this blog is mostly publishes video tutorials and I will continue this in the future, but we can also sometimes add text-based articles in Urdu language. So the next tutorials will be about Feedburner, Ulead Video Studio 11, Making money online.
Your Turn:
I always feel happy to hear your voice, what do you think about Google Webmaster tools? and how did you find this tutorial in Urdu? also similar questions and comments are very welcomed always. Stay happy and share knowledge with everyone.


Google Webmaster Tools Video Training in Urdu & Hindi


Here is the another video training series of Google Webmaster tools. This tutorial was most awaited from my side but, today you will get the complete knowledge about Google webmaster tools in Urdu language. I tried to improve videos’ result in this series and you will feel it while watching these video tutorials. GWT is a very important tool according to all experts because the correct usage of this great tool can bring great results. GWT is a tool which is used for off-page SEO and to index your site in Google. You can submit your website/blog to Google by using this tool, you can submit multiple sitemaps to Google by using GWT; also you can check all the errors about your website/blog in WT which were found by Google Bots while crawling your website. If you feel free then do comment and share this post with everyone, because it is very important for blog traffic and SEO.
Google Webmaster in Urdu

Google Webmaster Tools Video Training in Urdu

in below videos you will find a step by step complete training of Google Webmaster Tools in Urdu language with easy accent. There are 9 video tutorials in this series and you will watch them in a single playlist. I have created a playlist to combine all course in one video. I understand, I have given you all the necessary knowledge of GWT, however, you can further ask about it if you feel that something has been missed.
As you know this blog is mostly publishes video tutorials and I will continue this in the future, but we can also sometimes add text-based articles in Urdu language. So the next tutorials will be about Feedburner, Ulead Video Studio 11, Making money online.
Your Turn:
I always feel happy to hear your voice, what do you think about Google Webmaster tools? and how did you find this tutorial in Urdu? also similar questions and comments are very welcomed always. Stay happy and share knowledge with everyone.


Posted at October 04, 2013 |  by Online Ustaad

Yesterday, I published a post covering; how to secure your WordPress site in Urdu, In video tutorials I gave you some tips to make your site more secure. Now here are some tips about the performance of WP site. By watching today’s tutorials you can increase the performance and user interactivity of your WP sites. These tutorials actually teach you how to speed up your WP site using some great plugins. You can reduce the loading time of your WP site by 50%.
wordpress speed up tips

Speeding Up your WP sites using W3 total Cache Plugin

This plugin is one of the greatest plugin which is used by millions of WordPress users these days. This is a framework developed for reducing the loading time of your website. This actually caches the pages, objects, photos and database queries when a visitor first time visits your site, later on, when the visitor comes back, the W3 plugin load the already cached pages,images and other data. So this saves the server time for loading the files again and again. After installing this plugin, you’ll see a 50% decreasement in your loading time, means your site will be loading faster.

Optimizing or compressing images for reducing loading time

for compressing or reducing the size of the images you can first use a photo editing software such as Photoshop, just open the image/photo in Photoshop and save it as for “Web & devices” so it will reduce 50% of the size of the image. This way you’ll save a lot of memory of the server. Also the image will be loaded faster in the browser. Moreover, you can use a plugin called “Smush.it” which compresses your WordPress site’s images when they are uploaded into the posts or into the library. This plugin can also compress the images which are already uploaded before installation of this plugin.
Now here are the video tutorials which will practically show you to use these plugins and better your WP Site’s performance within very few minutes:
Video Tutorial for Using W3 Total Cache Plugin in Urdu
Video Tutorial for Optimizing Images & Smush.it Plugin
So having watched these video tutorials, I hopefully can say, you’ll now be managing your WordPress sites more awesomely. Sharing this post is also a reward for you and us. And do as your questions in comment section, so we can further guide you. Take Care and stay blessed.

How to Speed Up Your WordPress site in Urdu & Hindi


Yesterday, I published a post covering; how to secure your WordPress site in Urdu, In video tutorials I gave you some tips to make your site more secure. Now here are some tips about the performance of WP site. By watching today’s tutorials you can increase the performance and user interactivity of your WP sites. These tutorials actually teach you how to speed up your WP site using some great plugins. You can reduce the loading time of your WP site by 50%.
wordpress speed up tips

Speeding Up your WP sites using W3 total Cache Plugin

This plugin is one of the greatest plugin which is used by millions of WordPress users these days. This is a framework developed for reducing the loading time of your website. This actually caches the pages, objects, photos and database queries when a visitor first time visits your site, later on, when the visitor comes back, the W3 plugin load the already cached pages,images and other data. So this saves the server time for loading the files again and again. After installing this plugin, you’ll see a 50% decreasement in your loading time, means your site will be loading faster.

Optimizing or compressing images for reducing loading time

for compressing or reducing the size of the images you can first use a photo editing software such as Photoshop, just open the image/photo in Photoshop and save it as for “Web & devices” so it will reduce 50% of the size of the image. This way you’ll save a lot of memory of the server. Also the image will be loaded faster in the browser. Moreover, you can use a plugin called “Smush.it” which compresses your WordPress site’s images when they are uploaded into the posts or into the library. This plugin can also compress the images which are already uploaded before installation of this plugin.
Now here are the video tutorials which will practically show you to use these plugins and better your WP Site’s performance within very few minutes:
Video Tutorial for Using W3 Total Cache Plugin in Urdu
Video Tutorial for Optimizing Images & Smush.it Plugin
So having watched these video tutorials, I hopefully can say, you’ll now be managing your WordPress sites more awesomely. Sharing this post is also a reward for you and us. And do as your questions in comment section, so we can further guide you. Take Care and stay blessed.

Posted at October 04, 2013 |  by Online Ustaad

As we have shifted this website from Blogger to WordPress recently and I already shared a tutorial which covered the Goods & weaknesses of both blogger and WordPress. Now this the time to tell you what to do when you fully want to own WordPress as your blogging platform. The first thing regarding this is to take the security issues of WP site very seriously. WP sites are self-hosted and that’s mean you’ll take the responsibility yourself, what you change, what you do and what you install, this is all your duties and responsibilities. You have full power to change anything inside your WP Dashboard or in your website’s Cpanel. To somehow overcome WP security issues, I’ve created some basic video tutorials which will guide you to secure your WP blog from being hacked.
wordpress security in urdu

Tips to Protect your blog from being Hacked on WordPress

The first thing you need to do is; to change your default Password and user name after WP installation. After installation just go to the users page and create a new user with any name you like, and also add a very very strong password, the password must be a combination of small & capital letters, numbers and special characters like [%@!!(){}^%&], this way you can make strong password.
WordPress sites are mostly hacked by the hackers using your Password, they somehow get your password and then change anything they like inside your website. So the more stronger your password is, the more chances are there to protect your blog.
Now after having selected a strong password, you need to do something more in order to protect your blog from hackers. You’ll need to install some security plugins for making your site more secure.

List of the Security Plugins to be installed

  • Akismet (This prevent Spam comments)
  • Chap Secure Login (This encrypts your Password & secure your site)
  • Growmap Anti Spambot Plugin (This adds a Confrim Check Box below comment form)
  • Wordfence Security (This is very important plugin, it blocks all the attacks on your site, adds extra security add-ones, protect password, and does many security tasks)
  • Login LockDown (This plugin prevent people who try to login to your WP dashboard)
  • Replace WP-Version (This replace your WP version with an old version, so hackers are hopeless to find the current version of your site)
So the above are the most important plugins that we use on this site and recommended for you to use. However, this is not the complete list of plugins or tips. We’ll timely share more tips on WP security.
Now watch these 3 video tutorials in Urdu & Hindi to understand above things in a more shining way:
WordPress Security Tips in Urdu Video #1
WordPress Security Tips in Urdu Video #2
WordPress Security Tips in Urdu Video #3
One Important thing is to be kept in mind that whenever you want to install a plugin in your WP site, make sure to click the “Details” button and check whether it is tested with the current version of your WordPress or not. If the plugin is not tested with current version of your WP then don’t install that, because sometimes it cause problem for your overall WP installation, and your site may be down.

Upcoming WordPress Security Tips

The above ones are the possible tips straight from your WP dashboard which you can do instantly, however, I’ll soon update you with more tips. And after doing this all, you’ll need to backup your WordPress site on regularly bases, so if something goes wrong, you can restore your site.
Stay Connected, share this post with all of your friends. And do comment below the post if you have any questions.

Video Tutorials for WordPress Website Security in Urdu & Hindi


As we have shifted this website from Blogger to WordPress recently and I already shared a tutorial which covered the Goods & weaknesses of both blogger and WordPress. Now this the time to tell you what to do when you fully want to own WordPress as your blogging platform. The first thing regarding this is to take the security issues of WP site very seriously. WP sites are self-hosted and that’s mean you’ll take the responsibility yourself, what you change, what you do and what you install, this is all your duties and responsibilities. You have full power to change anything inside your WP Dashboard or in your website’s Cpanel. To somehow overcome WP security issues, I’ve created some basic video tutorials which will guide you to secure your WP blog from being hacked.
wordpress security in urdu

Tips to Protect your blog from being Hacked on WordPress

The first thing you need to do is; to change your default Password and user name after WP installation. After installation just go to the users page and create a new user with any name you like, and also add a very very strong password, the password must be a combination of small & capital letters, numbers and special characters like [%@!!(){}^%&], this way you can make strong password.
WordPress sites are mostly hacked by the hackers using your Password, they somehow get your password and then change anything they like inside your website. So the more stronger your password is, the more chances are there to protect your blog.
Now after having selected a strong password, you need to do something more in order to protect your blog from hackers. You’ll need to install some security plugins for making your site more secure.

List of the Security Plugins to be installed

  • Akismet (This prevent Spam comments)
  • Chap Secure Login (This encrypts your Password & secure your site)
  • Growmap Anti Spambot Plugin (This adds a Confrim Check Box below comment form)
  • Wordfence Security (This is very important plugin, it blocks all the attacks on your site, adds extra security add-ones, protect password, and does many security tasks)
  • Login LockDown (This plugin prevent people who try to login to your WP dashboard)
  • Replace WP-Version (This replace your WP version with an old version, so hackers are hopeless to find the current version of your site)
So the above are the most important plugins that we use on this site and recommended for you to use. However, this is not the complete list of plugins or tips. We’ll timely share more tips on WP security.
Now watch these 3 video tutorials in Urdu & Hindi to understand above things in a more shining way:
WordPress Security Tips in Urdu Video #1
WordPress Security Tips in Urdu Video #2
WordPress Security Tips in Urdu Video #3
One Important thing is to be kept in mind that whenever you want to install a plugin in your WP site, make sure to click the “Details” button and check whether it is tested with the current version of your WordPress or not. If the plugin is not tested with current version of your WP then don’t install that, because sometimes it cause problem for your overall WP installation, and your site may be down.

Upcoming WordPress Security Tips

The above ones are the possible tips straight from your WP dashboard which you can do instantly, however, I’ll soon update you with more tips. And after doing this all, you’ll need to backup your WordPress site on regularly bases, so if something goes wrong, you can restore your site.
Stay Connected, share this post with all of your friends. And do comment below the post if you have any questions.

Posted at October 04, 2013 |  by Online Ustaad

As you may know WordPress is a popular CMS system which is used by millions of web masters for creating self-hosted websites and blogs, this is the most popular and famous platform for creating websites and is built within PHP. You might also know that we recently moved from Blogger to WordPress due to a huge cruelty of blogger with us, they disabled our blog and marked as spam, however, our blog was not a spam blog at all. So therefore, You must learn WordPress in order to familiar with it and when your blog get popular on blogger then you can easily move to WordPress. I’ll update my WordPress tutorials in the future and also I’ll be sharing tips and tricks on WordPress, because now I’m fully playing with WP features. So here is a complete video course for you in Urdu and Hindi languages. You can watch this course to learn the basic principles of WP and later on you can go a little advance.
WordPres in Urdu

What features of WordPress are described in this course?

In below tutorials you will find a lot of stuff related to WP themes, plugins, widgets, pages, posts, comments and much more. You will need to play one of the videos from below playlist and then the another video  will start automatically because it is a playlist. I hope you will get ideas & help by watching these videos.

I hope after learning WordPress and establishing your website on WordPress you’ll say it as the most popular web platform, however, if you got any questions regarding this course or want to say something about this blog then use comment section to get my answers.
And hopefully you’ll share this post with all of your friends to let them know about free learning stuff. Stay Tuned!

WordPress Complete Video Training in Urdu & Hindi


As you may know WordPress is a popular CMS system which is used by millions of web masters for creating self-hosted websites and blogs, this is the most popular and famous platform for creating websites and is built within PHP. You might also know that we recently moved from Blogger to WordPress due to a huge cruelty of blogger with us, they disabled our blog and marked as spam, however, our blog was not a spam blog at all. So therefore, You must learn WordPress in order to familiar with it and when your blog get popular on blogger then you can easily move to WordPress. I’ll update my WordPress tutorials in the future and also I’ll be sharing tips and tricks on WordPress, because now I’m fully playing with WP features. So here is a complete video course for you in Urdu and Hindi languages. You can watch this course to learn the basic principles of WP and later on you can go a little advance.
WordPres in Urdu

What features of WordPress are described in this course?

In below tutorials you will find a lot of stuff related to WP themes, plugins, widgets, pages, posts, comments and much more. You will need to play one of the videos from below playlist and then the another video  will start automatically because it is a playlist. I hope you will get ideas & help by watching these videos.

I hope after learning WordPress and establishing your website on WordPress you’ll say it as the most popular web platform, however, if you got any questions regarding this course or want to say something about this blog then use comment section to get my answers.
And hopefully you’ll share this post with all of your friends to let them know about free learning stuff. Stay Tuned!

Posted at October 04, 2013 |  by Online Ustaad

Our Complete Web Development Course in DVDs!
Today I’m going to revel the details of my web development course in DVDs which is indeed a great one if compare to other all online courses. I don’t admire myself, but to be honest, whoever sell computer courses online in DVDs, they just give you theories and nothing else, you can always learn theories by yourself on the internet, but the main thing for buying a course is; to learn practical work and become a professional. And I therefore, decided to provide full courses which can somehow make your future bright. I have created absolutely new courses for DVDs and web development was also updated & renovated recently, so now you’ll have much more to learn by purchasing this course in DVDs. I always try to update my courses according to the latest changes in technology, whether it is SEO (Search Engine Optimization), PHP, HTML, CSS or any other, I try to update them as soon as possible. So my new & fresh courses are ready in DVDs and also they are uploaded to internet, so you can buy the courses by downloading link if you are not in Pakistan. Now let me give you some more details.
web development in urdu

What we have in this complete course?

There are three courses included in this package, PHP & MySQL complete course is included, JavaScript+jQuery is included and WordPress is also included in web development package. However, the main focus is on PHP & MySQL. In this package we’ve 200+ video tutorials for you and this course will be in 4 DVDs, the PHP & MySQL course is in 3 DVDs and 120 videos and the rest will be 1 DVD. Now let me give you some more details about each course included in this package.

MySQL & PHP Course contents

This course is somehow advance course in which we’ve first given you the basics of PHP and then the basics of MySQL, and after that we’ve created a large number of projects & applications. We’ve created following small applications in PHP:
  • Creating a calculator in PHP
  • Creating a currency converter in PHP
  • Creating a custom search engine in PHP
  • Creating a registration form in PHP
  • Sign up, Sign in, Logout applications in PHP
  • Uploading Files/images to server using PHP
  • Simple Website Project
The above are just very small and simple projects in the second chapter of our PHP course, but the advance projects that we created during this course are here, which are complete CMS systems and websites:

#1. Complete Website with CMS in PHP

Visit This project live

PHP website in Urdu

The above is the advance project in PHP, you can see it live by visiting the given link above, this project has following features and applications in PHP & MySQL:
  • Complete dynamic website in PHP
  • Media & dynamic images in the website
  • Commenting system in PHP
  • Custom search engine for this website
  • Contact us form (using PHP mail function) with Auto response to the user
  • Dynamic header, post body, sidebar
  • Recent posts widget in PHP
  • CMS (Content Management Sytem)
  • Advance & secure Admin Panel
  • Security tips to protect the site from hackers
  • Uploading this website to online web server
So there are many features & applications in above project and all of them are only in PHP & MySQL and simple Notepad is used to create those all things.

#2. Simple CMS & Website in PHP

cms in php

The above one is a little simple website in CMS in PHP and somehow gives you an idea for create your own applications using PHP & MySQL, in this I’ve taught you how to retrieve the menus/categories from database and how to create new menus easily.

#3. Offline School Project in PHP

PHP project in Urdu

In above project I’ve tried to give each and every lesson to create an offline project for a school/college or University, I have taken the idea of students’ record, we can insert students records along with all details and roll no, so later on we can search the records either by roll no or by name, this is very interesting project and you’d love while learning it.
There are many more projects in My PHP+MySQL course which I can’t reveal here because the page will be over load. However, you will learn a lot from my course if you buy it in DVDs.

Buy PHP+MySQL or Web Development course now

WordPress Course in DVDs

In WordPress course I’ve tried to give you each and everything, I’ve taught that when you purchase a domain name & hosting then how can you successfully set up your WordPress website. And here is the list of things that you’ll learn while having this course in your hands:
  • What is WordPress? 
  • Installing WordPress from your Web Server
  • Setting Up WordPress
  • Securing WordPress at first stages
  • Learning Each and everything on the dashboard
  • Installing Themes & customizing themes
  • Installing Plugins & customizing them
  • SEO Pack for WordPress
  • New Updates for 2013
So I would guarantee you that you’ll learn WordPress by watching my tutorials and after watching all the tutorials you’ll easily create your website on WordPress and will also be able to create websites for other people and companies.

JavaScript & jQuery included in this course

JavaScript is one of the great powerful web development languages which is used in some parts of a web page, but it is very important to learn, because sometimes a task can’t be done without JavaScript or jQuery. So In this course I’ve tried to give you comprehensive guidance about jQuery & JavaScript, and jQuery is basically a library of javascript.
I’ve given some details about web development course in DVDs, and if anyone wants to learn this completely and interested in this course then kindly visit our Buy a DVD page from where you can get the prices & other details about all courses.

Visit Buy a DVD page to purchase this course

Why should you buy complete courses?

You should buy these courses if you need to learn something professional at your home, and also by purchasing the courses you’ll help us to run this blog, also you’ll help us to start more projects for you such as more free platforms for video tutorials in Urdu.  And you won’t waste your money, you’ll get something that you need.
Take Care of yourself & your family and wish you all the best for your future.

Complete Web Development Package in DVDs (Urdu & Hindi)


Our Complete Web Development Course in DVDs!
Today I’m going to revel the details of my web development course in DVDs which is indeed a great one if compare to other all online courses. I don’t admire myself, but to be honest, whoever sell computer courses online in DVDs, they just give you theories and nothing else, you can always learn theories by yourself on the internet, but the main thing for buying a course is; to learn practical work and become a professional. And I therefore, decided to provide full courses which can somehow make your future bright. I have created absolutely new courses for DVDs and web development was also updated & renovated recently, so now you’ll have much more to learn by purchasing this course in DVDs. I always try to update my courses according to the latest changes in technology, whether it is SEO (Search Engine Optimization), PHP, HTML, CSS or any other, I try to update them as soon as possible. So my new & fresh courses are ready in DVDs and also they are uploaded to internet, so you can buy the courses by downloading link if you are not in Pakistan. Now let me give you some more details.
web development in urdu

What we have in this complete course?

There are three courses included in this package, PHP & MySQL complete course is included, JavaScript+jQuery is included and WordPress is also included in web development package. However, the main focus is on PHP & MySQL. In this package we’ve 200+ video tutorials for you and this course will be in 4 DVDs, the PHP & MySQL course is in 3 DVDs and 120 videos and the rest will be 1 DVD. Now let me give you some more details about each course included in this package.

MySQL & PHP Course contents

This course is somehow advance course in which we’ve first given you the basics of PHP and then the basics of MySQL, and after that we’ve created a large number of projects & applications. We’ve created following small applications in PHP:
  • Creating a calculator in PHP
  • Creating a currency converter in PHP
  • Creating a custom search engine in PHP
  • Creating a registration form in PHP
  • Sign up, Sign in, Logout applications in PHP
  • Uploading Files/images to server using PHP
  • Simple Website Project
The above are just very small and simple projects in the second chapter of our PHP course, but the advance projects that we created during this course are here, which are complete CMS systems and websites:

#1. Complete Website with CMS in PHP

Visit This project live

PHP website in Urdu

The above is the advance project in PHP, you can see it live by visiting the given link above, this project has following features and applications in PHP & MySQL:
  • Complete dynamic website in PHP
  • Media & dynamic images in the website
  • Commenting system in PHP
  • Custom search engine for this website
  • Contact us form (using PHP mail function) with Auto response to the user
  • Dynamic header, post body, sidebar
  • Recent posts widget in PHP
  • CMS (Content Management Sytem)
  • Advance & secure Admin Panel
  • Security tips to protect the site from hackers
  • Uploading this website to online web server
So there are many features & applications in above project and all of them are only in PHP & MySQL and simple Notepad is used to create those all things.

#2. Simple CMS & Website in PHP

cms in php

The above one is a little simple website in CMS in PHP and somehow gives you an idea for create your own applications using PHP & MySQL, in this I’ve taught you how to retrieve the menus/categories from database and how to create new menus easily.

#3. Offline School Project in PHP

PHP project in Urdu

In above project I’ve tried to give each and every lesson to create an offline project for a school/college or University, I have taken the idea of students’ record, we can insert students records along with all details and roll no, so later on we can search the records either by roll no or by name, this is very interesting project and you’d love while learning it.
There are many more projects in My PHP+MySQL course which I can’t reveal here because the page will be over load. However, you will learn a lot from my course if you buy it in DVDs.

Buy PHP+MySQL or Web Development course now

WordPress Course in DVDs

In WordPress course I’ve tried to give you each and everything, I’ve taught that when you purchase a domain name & hosting then how can you successfully set up your WordPress website. And here is the list of things that you’ll learn while having this course in your hands:
  • What is WordPress? 
  • Installing WordPress from your Web Server
  • Setting Up WordPress
  • Securing WordPress at first stages
  • Learning Each and everything on the dashboard
  • Installing Themes & customizing themes
  • Installing Plugins & customizing them
  • SEO Pack for WordPress
  • New Updates for 2013
So I would guarantee you that you’ll learn WordPress by watching my tutorials and after watching all the tutorials you’ll easily create your website on WordPress and will also be able to create websites for other people and companies.

JavaScript & jQuery included in this course

JavaScript is one of the great powerful web development languages which is used in some parts of a web page, but it is very important to learn, because sometimes a task can’t be done without JavaScript or jQuery. So In this course I’ve tried to give you comprehensive guidance about jQuery & JavaScript, and jQuery is basically a library of javascript.
I’ve given some details about web development course in DVDs, and if anyone wants to learn this completely and interested in this course then kindly visit our Buy a DVD page from where you can get the prices & other details about all courses.

Visit Buy a DVD page to purchase this course

Why should you buy complete courses?

You should buy these courses if you need to learn something professional at your home, and also by purchasing the courses you’ll help us to run this blog, also you’ll help us to start more projects for you such as more free platforms for video tutorials in Urdu.  And you won’t waste your money, you’ll get something that you need.
Take Care of yourself & your family and wish you all the best for your future.

Posted at October 04, 2013 |  by Online Ustaad
© 2013 OU Free Video Tutorials. All rights reserved
back to top