Affichage des articles dont le libellé est Tips. Afficher tous les articles
Affichage des articles dont le libellé est Tips. Afficher tous les articles

samedi 12 novembre 2016

12 Tips to Optimize Your WordPress RSS Feed



Do you want to optimize your WordPress RSS feed? RSS feeds provide an easy way for your users to subscribe to your content. However, not many beginners know about how to make the most out of WordPress RSS feeds. In this article, we will share 12 tips on how to optimize your WordPress RSS feeds and boost your subscriptions.


Optimize Your WordPress RSS Feed


1. Optimize Your WordPress RSS Feed for Feedly


Feedly has quickly become the most popular feed reader after the demise of Google Reader. Optimizing your WordPress RSS feed for Feedly will help you get discovered on Feedly and offer a better user experience to your subscribers.


First you need to install and activate the Optimize Your Feed for Feedly plugin. For more details, see our step by step guide on how to install a WordPress plugin.


Upon activation you need to visit Settings » OYFFF page in your WordPress admin area to configure the plugin settings.


Optimize WordPress feed for Feedly settings


In the first option, you need to provide a large image to be used as the cover image for your website. After that you need to provide an SVG image to be used as your site’s icon.


If you have your logo image in PNG or JPEG, then you can use this online tool to convert PNG into SVG.


If you get a file type not allowed error during the upload, then you need to enable SVG upload in WordPress. Simply add this code to your theme’s functions.php file or in a site-specific plugin.



function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');

Next, you need to check the box for featured image option. However, if you are using custom code to add featured images into your RSS feed, then you will need to remove that code. Otherwise, feature images may appear twice in your feed.


After that you need to provide an SVG file to be used as a logo. Again, you can use your site’s logo for that just make sure that it has a fixed height (30px).


You can also choose an accent color which will be used on Feedly when displaying your site as a source.


Lastly, you can add your Google Analytics tracking ID. You can find this ID from your Google Analytics dashboard. It would look something like UA-XXXXXXX-X.


Don’t forget to click on the save changes button to store your settings.


2. Add a Follow on Feedly Button to Your Posts


You may also want to add a follow on Feedly button to your website. This will allow your users to directly subscribe to your RSS feed in Feedly.


First you need to visit the Feedly Button Factory website and click on a button design that you want to add. After that enter your RSS feed URL which looks like this:


http://yoursite.com/feed/


Follow on Feedly button


Feedly will generate a code snippet for you. You need to copy this code snippet and go to Appearance » Widgets page in your WordPress admin area.


After that, simply add a text widget to your sidebar and then paste the code snippet inside it.


3. Show Summary Instead of Full Article in RSS Feed


Showing your full article in RSS feed allows users to read it in their feed reader. This can affect your pageviews, advertisement revenue, and conversion rates.


Some publishers prefer to show summary instead requiring users to visit their website.


WordPress comes with a built-in solution. Simply visit Settings » Reading page in your WordPress admin and scroll down to ‘For each article in a feed, show’ option.


Show summary in RSS feed


Next, simply click on Summary to select it and then click on the save changes button to store your settings.


On the same settings page, you can also control the number of posts to display in your RSS feed. See our article on how to limit the number of posts displayed in WordPress RSS feed for detailed instructions.


4. Add Featured Image with WordPress Posts in RSS Feed


By default, WordPress does not add your post featured images in the RSS feed. Some feed readers like Feedly try to automatically use the first image in the article as featured image.


If you are not using the Optimize Feed for Feedly plugin, then you can use this method to add featured image to your RSS feed.


You will need to add this code to your theme’s functions.php file or in a site-specific plugin.



function rss_post_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<p>' . get_the_post_thumbnail($post->ID) .
'</p>' . get_the_content();
}
return $content;
}
add_filter('the_excerpt_rss', 'rss_post_thumbnail');
add_filter('the_content_feed', 'rss_post_thumbnail');

This code simply adds your featured image inside a paragraph just before the post content.


5. Add Content Before or After WordPress Posts in RSS Feeds


Want to add some custom content at the end or beginning of each item in your RSS feed? If you are already using the Yoast SEO plugin, then you are in luck. Head over to SEO » Advanced page and then click on the RSS tab.


Add custom content before or after each post in feed


Here you will see two text areas to add content before and after posts in your WordPress RSS feed. You will notice that Yoast SEO automatically adds ‘The post %%POSTLINK%% appeared first on %%BLOGLINK%%.’ after each post.


This protects you against content scrapers because now Google will always know that your site was the original source.


6. Add Custom Post Types to Your RSS Feed


Many WordPress sites use custom post types for content like recipes, reviews, etc. Each custom post type has its own RSS feed in WordPress. However, WordPress only shows ‘Posts’ in the main RSS feed.


You can add the following code to your theme’s functions.php file or a site-specific plugin to display custom post types in the main RSS feed.



function myfeed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array('post', 'books', 'movies');
return $qv;
}
add_filter('request', 'myfeed_request');

In this code, we have added two custom post types books and movies to the main RSS feed. Don’t forget to replace books and movies with your own custom post types.


For more detailed instructions see our guide on how to add custom post types to your main WordPress RSS feed.


7. Allow Subscribe to RSS Feed via Email


Not all your users know or want to use a feed reader to subscribe. Many users prefer to subscribe by email. You need to make sure that those users can easily sign up to receive your posts in their inbox.


Email subscription form on List25 website


There are many ways to add email subscription to your WordPress site. Most popular email marketing service providers offer RSS to email list option. This allows them to check your RSS feed for new content, and email that new content to your subscribers.


For more detailed instructions, take a look at our guide on how to add email subscriptions to your WordPress blog.


8. Allow Users to Subscribe to Categories in WordPress


Each category on your WordPress site has a separate RSS feed of its own. This allows your users to subscribe to specific categories that they are interested in.


However, most users are unaware that they can subscribe to specific categories. You can make it easier for users by adding links to category RSS feeds with subscription buttons.


Category subscription choices on WPBeginner


For more detailed instructions, see our guide on how to allow users to subscribe categories in WordPress.


9. Allow Users to Subscribe to Authors in WordPress


Subscribe to author RSS feed


If you run a multi-author blog, then your users may want to subscribe to their favorite authors. Just like categories and custom post types, each author in WordPress has a separate RSS feed.


This RSS feed is located at a URL like this:


http://www.example.com/author/tom/feed/


You can use this URL format to add links to author RSS feed in the author bio section.


For more ways to add author RSS feed, follow instructions in our guide on how to allow users to subscribe to authors in WordPress.


10. Show or Hide Content From RSS Feed Subscribers


Want to show bonus content to your RSS feed subscribers only? Some smart site owners use this for encouraging users to subscribe to their RSS feed.


On the other hand, some site owners may want to hide part of their content from RSS readers. This allows them to encourage users to visit their website.


First you need to install and activate the WP Kill in Feed plugin. For more details, see our step by step guide on how to install a WordPress plugin.


Upon activation, you can use the shortcode [addtofeed] to add feed only content, like this:



[addtofeed]
This content is for RSS feed subscribers only
[/addtofeed]


You can also use [killinfeed] shortcode to hide content from RSS feed.


[killinfeed]Content hidden from RSS feed subscribers [/killinfeed]


For more on this topic, check out our article on how to show content only to RSS feed subscribers in WordPress.


11. Add Social Buttons to Your WordPress RSS Feed


Share buttons in RSS feed


Many modern feed readers like Feedly, allow users to share articles from feeds they have subscribed. However, other RSS readers don’t have social sharing features or they are not very noticeable.


You can add your own social media icons to your WordPress RSS feed. Here is how:


First you will need to create image icons you want to use as buttons. For this tutorial we added icons for Facebook and Twitter to our demo site from Media » Add New page.


After uploading your icon image files, you need to copy their location and save it in a text editor like Notepad.


Media file location


Next you need to add this code to your theme’s functions.php file or a site-specific plugin.



// add custom feed content
function wpb_add_feed_content($content) {

// Check if a feed is requested
if(is_feed()) {

// Encoding post link for sharing
$permalink_encoded = urlencode(get_permalink());

// Getting post title for the tweet
$post_title = get_the_title();

// Content you want to display below each post
// This is where we will add our icons

$content .= '<p>
<a href="http://www.facebook.com/sharer/sharer.php?u=' . $permalink_encoded . '" title="Share on Facebook"><img src="Facebook icon file url goes here" title="Share on Facebook" alt="Share on Facebook" width="64px" height="64px" /></a>

<a href="http://www.twitter.com/share?&text='. $post_title . '&amp;url=' . $permalink_encoded . '" title="Share on Twitter"><img src="Facebook icon file url goes here" title="Share on Twitter" alt="Share on Twitter" width="64px" height="64px" /></a>
</p>';
}

return $content;
}

add_filter('the_excerpt_rss', 'wpb_add_feed_content');
add_filter('the_content', 'wpb_add_feed_content');

Don’t forget to replace the src= attribute in the <img> tag with the URLs of your own Facebook and Twitter icons.


You can now view your RSS feed in a feed reader, and you will see social sharing buttons for Facebook and Twitter.


See our article on how to add social buttons to your WordPress RSS feed for more detailed instructions.


12. Delay Posts from Appearing in RSS Feed


RSS feeds are often used by content scrapers to automatically fetch and display your content on their websites. If you have a new website with low authority, then these content scraping websites can beat you in search results.


One possible solution to combat this issue is by delaying posts from appearing in your RSS feed. This gives search engines time to crawl and index your content before it appears elsewhere.


You will need to add the following code to your WordPress theme’s functions.php file or a site-specific plugin.



function publish_later_on_feed($where) {

global $wpdb;

if ( is_feed() ) {
// timestamp in WP-format
$now = gmdate('Y-m-d H:i:s');

// value for wait; + device
$wait = '10'; // integer

// http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff
$device = 'MINUTE'; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR

// add SQL-sytax to default $where
$where .= " AND TIMESTAMPDIFF($device, $wpdb->posts.post_date_gmt, '$now') > $wait ";
}
return $where;
}

add_filter('posts_where', 'publish_later_on_feed');

This code adds a 10 minute delay before posts can appear in your RSS feed. You can change it to your own needs like 60 for one hour, or 120 for two hours.


For more on this topic, you may want to take a look at our article on how to delay posts from appearing in WordPress RSS feed.


We hope this article helped you optimize your WordPress RSS feed. You may also want to see our 18 useful tricks to speed up WordPress and boost performance.


If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.


The post 12 Tips to Optimize Your WordPress RSS Feed appeared first on WPBeginner.







10 Best Facebook Tips and Tutorials for WordPress Users



Looking for some Facebook tips and tutorials for your WordPress site? With more than a billion active users, Facebook is the largest social media website in the world. No website owner can afford to ignore the potential of Facebook for the success of their business. In this article, we will show you some of the best Facebook tips and tutorials for WordPress users to help you maximize your reach.


Best Facebook tips and tutorials for WordPress users


1. Add Facebook Page Plugin in WordPress


Facebook Pages allow you to engage with your audience on Facebook. You can use your Facebook page to promote your WordPress site. However, you will also need to let your users know that they can find you on Facebook.


Facebook Page plugin


Facebook Page plugin allows you to add a Like box to your website. Your users can then like your Facebook page without leaving your website. For detailed instructions, see our step by step tutorial on how to add the Facebook page plugin in WordPress site.


2. Add Facebook Instant Articles for WordPress


Facebook Instant Articles is a Facebook feature which allows your content to load upto 10x faster on mobile devices. It uses the same technology used in Facebook mobile apps.


Facebook Instant Articles


Faster speed tremendously improves the user experience on mobile devices. Users will see a lightening bolt icon on articles available in Instant Articles format. This encourages more users to click on your content in their Facebook news feed.


Here is our complete step by step tutorial on how to setup Facebook Instant Articles for WordPress


3. Add Facebook Remarketing/Retargeting Pixel in WordPress


Facebook retargeting pixel


Ever wondered how you start seeing Facebook ads for websites you visit outside Facebook? This is called retargeting also known as remarketing.


Those websites use Facebook retargeting pixel. This pixel does not add anything visible to your site. It only sends a browser cookie to your users which allows Facebook to track them on Facebook.


People who are already interested in your website are more likely to click on your ads on Facebook. It also helps you develop brand recognition among your users.


For complete instructions, see our guide on how to install Facebook Remarketing/Retargeting pixel in WordPress.


4. Add Facebook Open Graph Meta Data


Facebook automatically displays your article’s title, description, and an image when someone shares it on Facebook. However, sometimes Facebook is unable to show the right image or correct description.


Facebook Open Graph metadata allows you to tell Facebook which image and description you want them to show.


The easiest way to add Facebook open graph meta data is by using the Yoast SEO plugin. Simply install and activate the plugin. For more details, see our step by step guide on how to install a WordPress plugin.


Upon activation, you need to visit SEO » Social page and click on the Facebook tab.


Yoast SEO Facebook open graph meta data


After that, you need to click Enabled under ‘Add Open Graph Meta Data’ option. Don’t forget to click on the save changes button to store your settings.


Yoast SEO will now automatically add Facebook open graph meta data for all posts and pages on your WordPress site.


For more detailed instructions, see our guide on how to add Facebook open graph meta data in WordPress.


5. Add Facebook Comments in WordPress


Facebook Comments for WordPress


If you get a lot of comments on your articles, then they can slow down your website. By using Facebook comments, you can ease that load from your website and make it faster.


Another benefit of using Facebook comments is that it helps you get more likes and traffic from Facebook to your articles. Users commenting on your posts can instantly share their comment with their friends.


For complete installation and setup instructions, visit our guide on how to install and setup Facebook comments in WordPress.


6. Add Login with Facebook in WordPress


Login with Facebook button in WordPress


Social login buttons allow your users to log in to your website using their existing social media accounts. This helps them login quickly and saves them from remembering another password.


To add Facebook login on your site, the first thing you will need to do is install and activate the Nextend Facebook Connect plugin. Upon activation, go to Settings » Nextend FB Connect to configure the plugin.


Facebook Connect settings


The plugin requires you to provide a Facebook app ID and secret keys. You can create an app by visiting Facebook Developers website.


For step by step instructions, follow our tutorial on how to add login with Facebook in WordPress.


7. Get Facebook Insights for Your WordPress Site


Facebook Insights allows you to see how your content is doing on Facebook. It shows which of your posts or pages are most liked and shared. If you are using Facebook comments, then you can also see which posts get more comments.


The easiest way to get Facebook Insights is by using the Yoast SEO plugin. After installing and activating the plugin, head over to SEO » Social page and click on Facebook tab.


You need to scroll down to ‘Facebook Insights and Admins’ section. Here you can click on ‘Add Facebook Admin’ button and provide admin’s name and Facebook user ID.


Yoast SEO Facebook Insights


If you have already created a Facebook app for your page, then you can provide an App ID instead of a user’s ID.


Don’t forget to click on the save changes button to store your settings.


That’s all you can now visit Facebook Insights page and you will see your website listed there. Click on your website to see your Insight reports.


For more on this topic, you may want to look at our detailed guide on how to get Facebook Insights for your WordPress site.


8. Add Facebook Author Tag in WordPress Posts


Facebook author tag allows you to display author name with your articles when they are shared on Facebook. The author name is linked to author’s Facebook profile, allowing you to get more users engaged with authors on your site.


fbauthortag1


Once again, you will need the Yoast SEO plugin. First you will need to enable Open Graph meta data (see above).


Enter your Facebook profile URL


After that, you need to go to your profile Users » Profile page. Scroll down to Facebook Profile URL option and enter your Facebook profile URL.


Don’t forget to click on the Save Changes button to store your settings.


That’s all, you will now start seeing an author name when your posts are shared on Facebook.


9. Create Custom Facebook Feeds in WordPress


Displaying your Facebook posts on your WordPress site can help you boost engagement and convince more users to like your Facebook page.


The Custom Facebook Feed plugin helps you display your Facebook status while making it match your website design.


We have created a detailed step by step guide on how to create custom Facebook feed in WordPress.


10. Embed Facebook Video in WordPress


Adding Facebook Videos in WordPress


Facebook videos are hot. If you’re sharing a lot of unique video content with your Facebook audience, and want to embed them on your WordPress site, then it is definitely possible.


This process is not as streamlined as one would hope, but our hope is that Facebook will make it easier in the future.


We have created a detailed step by step guide on how to embed a Facebook video in WordPress.


We hope this article helped you find the best Facebook tips and tutorials for WordPress. You may also want to see our list of 19+ free Google tools every WordPress blogger should use.


If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.


The post 10 Best Facebook Tips and Tutorials for WordPress Users appeared first on WPBeginner.







3 Top Marketing Tips for Increasing Your Ecommerce Sales



alt="3 Top Marketing Tips for Increasing Your Ecommerce Sales" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2013/04/0509-3-500x266_c.jpg" />

Whether you are just starting your first store or are a veteran, there are a few things you should examine as part of your marketing to grow sales. Online shopping is growing fast, but so is the competition so you need to keep one step ahead – running to stand still.

Below are 3 practices to use to help boost sales.

Design of Your Storefront

If yours shopping cart has flexible templates, you’ll have a great advantage over many of your competitors. When looking for shopping cart software, you want to have a product that offers templates that are both visually appealing and easy to navigate for the customer, as well as easy to change.

Visitors make their initial impression in under 10 seconds. If they see something ugly or the site doesn’t look professional, they’ll be gone. Navigation is important for your visitors – you want to make it as easy for your visitor to find what they are looking for, shop for clearance or sale items, find the right sizes, colors, or styles. Make sure that the buy now buttons, view cart buttons, and up-sell products on your site are always in a location on the page that is natural for a shopper to find when wanting to check out. You want to make your visitors buying experience as smooth and effortless as possible. Make sure you test your design on a few friends. Everyone will tell you how easy it is to use, but watching people use it will be eye opening.

Offer Exceptional Customer Service

Shopping cart systems such as Volusion, allow you to add a “Live Chat”. If someone has a question, you can answer immediately and even offer additional help or sales tips. This will boost your conversion rate.

Be sure to offer refunds and make the process of returning clearly documented and as effortless as possible. Offering a “30 Day Refund” policy will inspire confidence and encourage purchasing, despite that very few customers will ever use the returns policy.

When dealing with customers, remember in these days of social media that it only takes one negative comment from a customer to reach thousands of ears. Be sure you go out of your way by offering “customer appreciation” coupons in their emails once they have shopped with you, href="http://www.webhostingsecretrevealed.net/blog/web-tools/my-quick-review-on-getresponse/">sending out emails detailing any discounts and sales you have going on, and always be kind and courteous when dealing with email you receive regarding questions or concerns.

Utilize the Power of Social Network Sites

Social Media is turning out to be one of the most fun and profitable ways to get word out about your business.

With the power to reach millions with Twitter, Facebook, YouTube, and MySpace just to name a few, you could explode your sales all with just a few posts written the right way and at the right time. If your customers are on Twitter, they could retweet your messages to their followers and help you find new customers. You can become known as an expert in your industry by writing blog posts and having them post to social network sites. There is no better way to keep your customers informed of industry trends, new products to the market, or perhaps product recalls. The best part of utilizing href="http://www.webhostingsecretrevealed.net/category/blog/socialmedia-marketing/">the power of social network sites is that they are all free to use.

One of the most important things to keep in mind when implementing new marketing techniques into your weekly routine is to make sure you track everything. Watch where your visitors come from (Google Analytics is great for this) to see what marketing methods are working out the best for you and then work out a strategy to gain as much from that method as you can.


Page 28 – Web Hosting Secret Revealed




Who’s Reading This? Tips for New Bloggers Looking to Increase Traffic



alt="Who’s Reading This? Tips for New Bloggers Looking to Increase Traffic" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2011/09/writing-a-blog-500x333_c.jpg" />

class="border" src="http://www.webhostingsecretrevealed.net/images/2011/0922-2.jpg" alt="Blogging Guide" width="750" />
Image credit: href="http://www.flickr.com/photos/justonlysteve/2281405824/" target="_blank">JustOnlySteven

When you’re new to the world of blogging, the possibilities seem both endless and exciting.  You eagerly put hours into crafting fresh and entertaining articles.  You spend a good chunk of each day thinking about your blog and carefully putting your thoughts into words.  When you re-read your work after hitting “publish”, you’re proud of what you’ve written.

Unfortunately, you’re the only one reading it.

It can be discouraging and frustrating as a new blogger to see little or no growth in readership.  It’s important to remember that building a loyal audience doesn’t happen overnight!  Try some of these simple and effective ways to increase traffic to your blog.

Keep to a Schedule

This is probably the simplest blogging truth: if you don’t write, then people won’t read.  Choose a blogging schedule – whether you plan on writing daily or weekly – and href="http://www.webhostingsecretrevealed.net/blog/blogging-tips/10-tips-to-help-you-find-time-to-blog/">stick to it.  Once readers see that they can trust you to keep adding interesting and original content on a regular basis, they will be more open to investing their time in your blog.

Comment on Other People’s Blogs

Blogging is about more than finding a niche; it’s also about building community.  When you read and comment on blogs written by people with similar interests, you’re also sharing your own blog with all of their readers.  Blog owners love receiving comments, and there’s a good chance that they might click on your link and visit your blog.  Even more importantly, everyone who reads through the comments will be exposed to you and your blog.

Remember that commenting is, first and foremost, an opportunity to engage in discussion.  If all you’re trying to do is bring readers to your blog with generic comments like “Great post!” people will see through that and ignore you.  The best comments – both for engaging in discussion and for convincing new readers to click on your link – are the ones that are thoughtful, original and meaningful.  Take the time to really read a blog post and think about how you can contribute before leaving a comment.

Link to Other Blog Posts

Many blog platforms offer the possibility of backtracks or linkbacks.  What this means is that you can write a post on your own blog and link directly to someone else’s related blog post.  Your link will show up under the comments, which could bring new readers to your site.

Even if you’re not using backtracks or linkbacks, linking to another person’s blog can bring that blog’s author to your site.  Most blog authors like to keep an eye on their traffic sources to see where their readers are coming from.  Once someone clicks on the link in your post – or even if you click on it yourself – it will pop up on the other blog owner’s statistics page.

Join Link Parties or Blog Carnivals

Link parties or blog carnivals are special blog posts that aim to bring together bloggers with similar interests.  The host blogger provides a space in their post where other bloggers can add their URLs.  Readers can then visit some or all of the posts in the party to read and comment on other people’s work.  Link parties are a great way to build your blogging community and to get to know other blogs and bloggers.

To find a link party, think about your blog’s focus and then do a quick search online.  “DIY link party”, “recipe link party” or “book review link party” will all bring up links to parties that might be the perfect match for your blog.

Link to Your Blog When Using Social Media

id="floatright">class="alignright" src="http://www.webhostingsecretrevealed.net/images/2011/0922-3.jpg" alt="Blogging Guide" width="235" height="300" />

This tip is particularly useful if you already participate actively in message boards, groups and other online communities dedicated to the same topic as your blog.  By adding a link to your blog in your signature, you’re exposing your writing to people with similar interests.  Hopefully, some of them will visit your blog.  The more established you are as a contributor, the more likely people are to click on your link.  Don’t stop at message boards; include a link to your blog on your twitter and facebook accounts, as well as any other social media that you use.

Write a Guest Post for Someone Else’s Blog

Once you’ve been blogging regularly for a few months, there’s a lot to be gained from href="http://www.webhostingsecretrevealed.net/write-for-us/">writing a post for someone else’s blog.  While your first reaction might be to wonder why you’d spend precious time writing for someone else, the fact is that posting your work on other people’s blogs exposes your writing to many new readers.  If you make an effort to write an engaging and entertaining guest post, some of your host blog’s readers are very likely to visit your blog.  Hopefully, this will lead to new loyal readers.

Make sure that your guest post ideas are focused and original.  For instance, if you want to guest post on a running blog, a post called “How Interval Training Helped Me Shave Minutes Off my Mile” will probably be better received than something more generic like “How to Run”.  Blog owners are also more likely to accept your offer to guest post if you’ve already engaged with them by reading and commenting on past posts.

Don’t Give Up

While there are stories out there of overnight blog success, the truth is that most blogs build slowly over time.  Be patient and take time to enjoy the act of blogging.  Keep reading and writing about topics that you’re passionate about, and eventually you will see your readership grow.

Happy blogging!


Page 26 – Web Hosting Secret Revealed




17 tips to be a smarter web hosting shopper



alt="17 tips to be a smarter web hosting shopper" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2013/07/web-host-shopping-500x170_c.jpg" />

Picking up a web host is like making friends. href="http://www.webhostingsecretrevealed.net/choose-the-right-web-hosting/">Pick good ones, they will enrich your life; make bad choices, and they will bring you down. It is extremely important to href="http://www.webhostingsecretrevealed.net/blog/web-hosting-guides/10-ways-to-protect-your-business-from-a-bad-web-host/">stay away from bad web hosts and stick with the trustworthy ones. In this article, I am going to share my version of web host shopping tips – hopefully it will help you to become a wiser webmaster.

href="http://www.webhostingsecretrevealed.net/ultimate-cheap-web-hosting-guide/">class="border" src="http://www.webhostingsecretrevealed.net/images/2010/0809-1.jpg" alt="Shopping for the right web host" width="750" />

1. Always go with the web host with live chat support

Afterall, who needs a phone line as live chat is the most efficient way for technical communication.

2. Test customer support (for real!) before you sign up

Don’t ask stupid pre-sale questions, ask technical stuffs like inodes and CPU usage limits to test the support’s knowledge.

3. Register your primary domain with a third party registrar

Just because the web host offers free domain does not mean that you should let the hosting provider controls your domain registration. Get your domain name registered on a third party so you can switch your web host anytime you want.

4. Always pay with a debit card to protect yourself

Trust me, there are crooks that will charge your card even if you have cancelled your subscription. A debit card will save your day when things turn bad, use a PayPal in case you do not have one.

5. Understand that most hosting review sites are affiliated to the web hosts

This doesn’t mean that all href="http://www.webhostingsecretrevealed.net/hosting-reviews/">hosting reviews are unreliable; you just need to be careful with their advice and have the ability to read between the lines.

6. Track your web host from time to time

Employ a third party tracking system to check your ebsite uptime, anything below 99.5% for more than two months is unacceptable. In case you are new and not sure what I’m talking about, a free trial account at href="http://www.pingdom.com/" target="_blank">Pingdom should get things started.

7. Check your web host spam policy

Any host without a tight spam policy is a pass. We do not want to stuck with group of bad IP neighbor and get our sites blacklisted.

8. Does your web host come with black holed IP?

id="right">

A quick check on Spamhaus Block List is always recommended. There’s a href="http://www.spamhaus.org/lookup.lasso">handy search tool provided at SpamHaus.org (see image) – If your IP address is listed on one of our IP blocklists; SBL, XBL or PBL (collectively known as the ‘Zen’ blocklist), the lookup tool will tell you which one and will give you a link to information on what to do.

9. If you plan to grow big, go with an “expandable” web host

Shared hosting plans are powerful nowadays; but for certain reason if you foresee that you need a href="http://www.webhostingsecretrevealed.net/hosting-review/inmotion-hosting/">VPS or dedicated hosting in the future, make sure you stick with hosting providers that can offer you those.

10. Avoid web host with short trial period

Any trial period below 30 days is a pass! Reputable web hosts like iPage and BlueHost nowadays are offering ‘Anytime Money Back’ Guarantees, why should you fit yourself into those with short trial period?

11. Be aware of web hosts with outdated software and web apps

No kidding! There are still hosting companies that limit their customers with PHP4 and WordPress 2.8. If you are unsure, don’t assume anything and shoot your questions to the live chat supports, make sure the web host supports the latest version of software and web apps.

12. Recognize unlimited hosting is impossible

Do you expect your web host to give you unlimited hosting resources for .50/mo? Come on, be realistic. You should understand that such unlimited hosting is only ‘unlimited’ because the hosting providers are managing their servers usage closely and avoid any significant shortage of hosting capacity. As a smart consumer, you should take time to href="http://www.webhostingsecretrevealed.net/the-truth-about-unlimited-hosting/">learn about the issue and avoid over-trusting your web host.

13. Understand your web host’s refund policy clearly

How long is the trial period? Are there any special charges if you refund within the trial period? How much do you need to repay for the free domain when you ask for a refund? Does the web host allow a refund after the trial period? It is very important to understand your web host’s refund policy clearly so that you won’t get panic when things go wrong.

14. What is the backup plan?

Backup policy is another important thing you need to know clearly before jumping in. Yes, you should always do your own backup for safety purpose but you also need to know if your web host has a reliable backup plan. Check if your web host provides sufficient redundancy protection; ask questions like ‘Do you have redundant power supplies?’, ‘How many incoming lines do you have at the data center?’, and ‘How often does the web host backup its server?’

15. You need a checklist for the necessary hosting features

Unfortunately, there’s no one-fit-for-all answer for your hosting needs. Chances are you need a dedicated IP, or a unique CMS, or a special type of cart software, or a private SSL, etc. It’s always recommended to come out with a checklist and see if the shortlisted web host fit everything in the list.

16. Avoid web host with ridiculously long commitment period

Do not fall for those web hosts with extremely low price tag but extremely long commitment period. Some ‘fly-by-night’ web hosts will lure customers to pay 3 – 5 years upfront for a very low price tag and they will just flee away with the money 1 or 2 years later. The last thing we want to have is to stuck with crooks like these so any subscription period for more than 24 months is not recommended.

17. Stick with web host with reasonable pricing

From my experience, web host that is too expensive or too cheap is a red flag. Web host with a high price tag, chances are they are overpriced; web host with a too-good-to-be-real low price tag, chances are something is wrong with their backend. At this time of writing, prices ranging from /mo to /mo are reasonable for a href="http://www.webhostingsecretrevealed.net/ultimate-cheap-web-hosting-guide/">cheap shared hosting; I wouldn’t say anything below or above it is bad but I will be extra careful with them.

Bottom line: You just cannot judge a book from its cover

It is impossible to know if a web host is good or bad from outside. Yes, reading TOS and user reviews do help filter out a few obvious bad apples but anything beyond need your own involvement.

The best way to know a web host is to test the web host yourself from the inside. After all, this is the reason why we register our domain name separately and go with web host with long trial period (see tip #3 and #10), right? Just keep track on the service quality for the first 30 days and do not hesitate to ask for a refund if you find anything fishy (that’s how you leverage the trial period!).


Page 28 – Web Hosting Secret Revealed




25 Most Wanted WordPress Tips, Tricks, and Hacks



alt="25 Most Wanted WordPress Tips, Tricks, and Hacks" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2013/12/wp-logo-500x500_c.jpg" />

In this post, I’ll show you some of the best WordPress tricks href="http://www.webhostingsecretrevealed.net/hosting-review/wp-engine/">I have learned along the way. These are very useful for beginners, but I find some seasoned bloggers saying some of them have been helpful to them as well.

class="border" alt="" src="http://www.webhostingsecretrevealed.net/images/2010/1104-1.jpg" width="750" />

Must-Know WordPress Tips, Tricks, and Hacks

1. Make a custom page as your home page. Copy the original page.php file or make a new file and add this code at the top: <?php /* Template Name: Template1 */ ?>. You can use your own template name then publish it. Now, go to Settings > Reading then select the new page as your home page.

2. Create dynamic sidebars. Make different sidebars for different pages. The home page uses the index.php file, a single page uses single.php, and several pages use page.php. To create a different side bar for the home page, simply create a new sidebar file and name it l_sidebar2.php.

3. Let your readers submit their own posts. Install the TDO Mini Forms plug-in to enable other users to write their own posts and submit it you. All user posts are placed in “draft” status so you can check them before being published.

4. Break down your comments into pages.  Install Paginated Comments, a WordPress plug-in designed to optimize your blogs for the search engines. You can choose to break down pages according to comment size or number of comments.

5. Display captions for your blog’s images. Use the Image Caption plug-in to obtain the alt or extract attributes in images that have these attributes and place a caption right under the images.

6. Create a Random Page button. Random Redirect is a cool plug-in for this. You can create a link on your home page. When someone clicks on that link, they are redirected to a random page on your blog.

7.Enhance your blog’s display quality by converting text into images. Use the FLIR (FaceLift Image Replacement) plug-in to convert text into images without changing your HTML codes. This is only useful for browsers that have JavaScript enabled.

8. Display relative dates. Relative dates look like this: posted on November 2, 2010 (20 minutes ago). If you want to use this, install the WP-Relative Date plug-in and look for the code <?php the_date(); ?> and replace it with <? php relative_post_the_date(); ?>.

9. Show people your latest del.icio.us bookmarks. Upload the del.icio.us-for-wordpress folder into the /wp-contents/plugins directory and activate.

10. Separate content from certain categories. Install the Advanced Category Excluder plug-in into /wp-content/plugins/advanced-category-excluder/. This will enable you to hide certain categories from other parts of your blog.

11. Prevent duplicate posts. Add a posts_where tag then start the first loop. Next, add the posts_where filter using the posts_where tag you made for the first loop. Start the second loop then remove the filter.

12. Make a Redirect Page template. Upload the templates.redirect.php file to wp-content/themes/theme_name/ and go to your Page Content panel then enter the URL of the page you want to redirect to. Then choose Page Redirect on the dropdown menu.

13. Add a StumbleUpon badge to your blog so users can share it with everyone else. Go to href="http://www.stumbleupon.com/badges">www.stumbleupon.com/badges and copy the code displayed in the box on the page. Next, open your single.php file and look for the following code: <?php the_content (“<p class=serif>Read the rest of the entry</p>”); ?>. Immediately after this, paste the code you copied from the StumbleUpon website.

14. Inform your readers of blog updates via IM. Use the Notifixious plug-in to the /wp-content/plugins/ directory activate it through the Plugins menu. This allows you to tip off your readers of new posts via their chosen IM platform.

15. Filter spam comments out of your blog. Use Akismet, short for Automatic Kismet, which administers several tests on each new comment and decides whether it is in shape for publication or not. Simply upload the Akismet file into the Plugins directory and activate it using the Plugins menu.

16. Make your pages load faster by caching. Disable to PHP safe mode in your blog and install the Apache mod mime and mod rewrite modules. Next, enable WordPress Custom Permalinks then upload the wp-content/plugins/wp-super-cache/ folder into the directory. Activate this plug-in from the Menu. WP Super Cache works by creating static .html files from your heavier .php scripts. Your server will then respond to the .html files afterwards. More on href="http://www.webhostingsecretrevealed.net/blog/wordpress-blog/10-non-technical-ways-to-boost-site-speed-for-wordpress/">optimizing WordPress site speeds.

17. Create page buttons. Throw out the Older Posts and Newer Posts button and install the PageNavi plugin automatically from your admin page.

18. Remove unnecessary words and enhance your blog’s SEO using slugs. Install the SEO Slugs plugin so you can automatically generate more optimized slugs for your headlines.

19. Link keywords to other related posts, pages, tags, and categories. Put the SEO Smart Links folder in your plug-in directory and activate it from the Plugins menu. This automatically links keywords to other parts of the blog.

20. Display list of related posts after each post. Install the WP Related Posts plug-in and place the following code in your templates: <?php wp_related_posts(); ?>. Then go to Manage > Option > WordPress Related Posts and choose your settings.

21. Allow your readers to subscribe to comments. Install the Subscribe to Comments plug-in. You can let your readers subscribe to the comments even if they have not yet posted a comment by placing the following: <?php show_subscription_checkbox(); ?> outside the comments form.

22. Copyright your posts. Install the Simple Feed Copyright plugin by uploading the folder into your plug-ins directory and activating it from the menu. This displays a copyright notice at the end of each post.

23. Style up your archives. Use the Snazzy Archives plug-in to provide a visual archives page to your blog. Upload the folder to your plug-ins directory and activate it from the Plugins menu.

24. Create a page where you can store all ideas for your subsequent posts. Use the Post Ideas plug-in for this. Upload only the postideas.php file into your plug-ins directory and install it. You can then write post ideas, sort them by name, date, or priority, research keywords, and edit or delete them.

25. Add Gravatars to your posts. Place the following code in the theme: <?php echo get_avatar( get_the_author_email(), ’80’. You can also add a get_the_author_email tag and customize the size of the Gravatar.


Page 28 – Web Hosting Secret Revealed




47 Blogging Tips for Beginners



alt="47 Blogging Tips for Beginners" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2010/11/blogging-500x285_c.jpg" />

class="alignnone border" alt="Blogging Tips for Newbies" src="http://www.webhostingsecretrevealed.net/images/2009/0206-1.jpg" width="750" />

Okay, so you’ve set up your blog. What’s next? Blogging can become a real money-maker when you know what you’re doing. But what if you don’t? After all that excitement about rushing into the blogosphere, it’s time to get your hands dirty and do some real work.

If you really want people out there to visit your blog and get them to comment regularly, then you have to do the following. Don’t get me wrong. You don’t have to do everything. You just have to choose a couple of them and see what works for you. If one doesn’t work, you can always discard it and give another one a go. I’m pretty sure at least one of these will work for you! ;)

Beginner Tips For Bloggers

  1. Get yourself ready. Blogging is not as easy as 1, 2, 3, nor is it as quick as lightning.
  2. Pick an attractive blog name, but a name that tells your readers what your blog is all about.
  3. Write content that is unique and useful for your readers. Plugging your blog or some other product tends to turn readers away.
  4. Link your blog to other related blogs.
  5. Promote your blog ONLY when it’s up and running already.
  6. Don’t paste your link anywhere you can paste it. Users will consider you spam and you can get banned for it.
  7. Cross-promote your content by linking to previous posts.
  8. Open up to your readers. Tell them who you are, why you’re blogging, and what kind of readers you want to have.
  9. Work with other bloggers who share your goals. You’ll find it easier than working alone.
  10. Some comments will always be against you. Accept that and move on.
  11. Nothing screams SPAMMER! more than links used as your signature in the comment body.
  12. Don’t make comments too long. You can use the material as a new blog post.
  13. Choose a blog niche that’s not too narrow but not too broad either.
  14. Write something that’s interesting to you. Blogging should be a passion, not something you force yourself to do.
  15. Post new content once or twice a week. This’ll help you avoid burnout.
  16. href="http://www.webhostingsecretrevealed.net/blog/inbound-marketing/headlines-writing-guides/">Write compelling headlines, those that pull people into reading your posts.
  17. Avoid cluttering the sidebar with too many widgets.
  18. View your blog on different browsers to see how different users can view your blog.
  19. Limit the number of items on your home page. Don’t put all posts in there.
  20. Reduce the size of your images to 50KB. Anything bigger than that and it may take forever for your blog to load.
  21. Stick to JPEG images, PNG, and GIF. Avoid BMP.
  22. Use animation sparingly. Loud and annoying pictures are not attractive.
  23. Invite guest writers to write posts for your blog.
  24. Don’t use too many guest posts or your readers will think you’re always having the day off.
  25. Always proofread your content before clicking the Publish button.
  26. Join a blogging forum, like Bloggeries, BloggerTalk, and Bloggst.
  27. Read other blogs. That way you have an idea of what others are saying and might even help you think up of something to write on your next post.
  28. Reply to comments. This lets your readers think you actually are a real person.
  29. Tell your Facebook friends you’ve got a new post. Much of your traffic will come from your social network.
  30. Bookmark your site. Digg, StumpleUpon, and Reddit should work just fine.
  31. Talk about something different every time you write.
  32. href="http://www.webhostingsecretrevealed.net/blog/socialmedia-marketing/49-data-proven-tips-on-how-to-get-more-retweets/">Promote your blog in Twitter.
  33. Make it easier for your readers by breaking up your content in short paragraphs and using headers and bullet points.
  34. Write in a casual, easygoing manner to engage your readers. Avoid using a formal tone.
  35. Get your own domain name, at least, when you have established quite a good following.
  36. Optimize your blog for search engines.
  37. Analyze your blog stats so you have an idea of just how good (or bad) you’re doing things. You can sign up for a Google Analytics account for this.
  38. Submit your blog to blog directories.
  39. Write an About page and a Contact page.
  40. Don’t forget to upload images and videos to enhance your content.
  41. Choose a professional theme. That means avoid splashy colors and flamboyant designs.
  42. Do NOT, at all costs, copy content from other blogs and pass it off as your own. This is plagiarism and you could get sued for this.
  43. Insert appropriate meta-tags to help the search engines find your blog.
  44. Create a tab for your recommended articles.
  45. Activate Akismet spam protection for your blog.
  46. Build a Google site map. This helps Google find you faster.
  47. Put the appropriate keywords in your headlines.

Page 28 – Web Hosting Secret Revealed




Blogging Tips: 10 Ways To Make Your Blog Attractive



alt="Blogging Tips: 10 Ways To Make Your Blog Attractive" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2015/04/default-image-500x308_c.jpg" />

src="http://www.webhostingsecretrevealed.com/images/2011/0719-1.jpg" alt="Blogging Tips" class="border" />

It’s commonly known that you only have minutes if not seconds to grab the attention of readers and potential advertisers when they arrive at your site. People are consumed with information and the internet provides it in the bucket loads. So how do you stands out from the crowd? How do you make sure that visually everything looks appealing? And, site navigation is clear and direct?

Well in case you need some ideas, here are 10 ways you can make your blog look more attractive. Feel free to use’em; and share if you have other ways in your list.

1. Keep advertisement limited and related

It’s terrible to land on a blog that serves more ads than the yellow pages. Worse if the ads are unrelated. Imagine: DirecTV ads on a web development site? I bet one will actually take your blog seriously and stay longer than 30 seconds.  

Yes, bloggers need to eat too and it is alright to place advertisement on your blog. But remember: never, ever, oversell your blog and always keep ads related to your content. Your readers will thank you for promoting a product they are interested; and you get to increase your advertisers’ sales – that’s a win-win.

id='right'>src="http://www.webhostingsecretrevealed.com/images/2011/0719-2.jpg" alt="Focus on your blog topic" />

2. Stay focus

I can’t stress how important it is to concentrate on your blog topic. If you are writing about Java code, STOP yelling about your cats (or your plants in the garden).

Think about it, what’s the main objective of your blog? You can’t attract 15 year old girl who’s searching for Justin Bieber and 28 year old programmer who is searching for coding advice. So before you start your next blogpost; make up your mind, decide who are your target audiences, and keep your content flows focus on the same direction.

3. Use a professional  theme or buy a custom blog theme/>

Sure there are lots of blog themes that are out there for free, but to stand out from the crowd its vital that you use one that is good.  I would go as far as to say that it’s worth investing in having a professional designed theme – which explains why I am using Nick’s Quadro Theme (from Elegant Themes) here at WHSR.
It doesn’t have to cost you an arm and leg to get a designer to build you a theme that only you will have. Having a blog themes membership like me or outsourcing the work through freelancers via Elance should be good enough.

In case you are using WordPress and would like some recommendation, check out: href="http://www.webhostingsecretrevealed.com/wpt.php" target="_blank">Elegant Themes, href="http://www.webhostingsecretrevealed.com/woo.php" target="_blank">Woo Themes, as well as href="http://www.blogohblog.com/" target="_blank">Blog Oh Blog.

4. Remove the clutter from your site

I don’t know how many websites that I have come across online that are choker block full of unnecessary design elements such as flash clips, audio, shockwaves. The focus of your blog should be to draw the reader to the content.

If you insist to do all those cosmetic stuffs for your blog, remember the golden key: less is more.

5. Google Adsense is NOT a fit-for-all solution

Repeat after me: Google Adsense is not for everyone. While you might be keen on making a buck from Adsense it doesn’t exactly provide the most professional appearance for your website. People have become accustomed to it and many spam based sites are using it all over their websites. It puts off other advertisers especially if some of the advertisers listed in your Google ads are competitors of potential advertisers.

6. (Bonus tips on advertisement) Let people know who you are and give your web stats upfront

Don’t hide your stats or assume that an advertiser is going to email you to request them. People don’t have the time or patience for that. href="http://www.webhostingsecretrevealed.com/about/">Give them up front, let them know your audience, demographics, Google PR and Alexa rank. They should be able to see clearly how many unique visitors you get and number of impressions.

Use an about page, contact, privacy and disclaimer. Let people know about your blog, who you are and how to contact you. Keep your site transparent in how it uses visitor information. Any attempt to hide this only increases distrust.

7. Create a fight if necessary

That’s right. Create a (civilized) fight with other blogger if that’s what it takes. Nothing wrong with taking pride and standing up straight for your opinion.

Fact: Fights gain attention, simple and direct. In SEO term, this is what we call ‘link baiting’. Quoting href="http://scobleizer.com/2011/07/10/sometimes-i-really-get-it-wrong-my-apology-to-seo-industry/" target="_blank">Robert Scoble, "Truth is, if you bash the SEO world they will all link to you, argue with you, etc." Accept it. The Internet crowds love to watch fights and good bloggers should never refuse an (constructive) argument.

8. User friendly and convenient to use

An attractive blog is more than just some nice theme designs and colourful icons. It also need to be user-friendly and convenient to use. I believe you don’t need me to tell you how important a good site navigation is. So let’s talk about the convenience of sharing your content online (which is very important these days).

In the era of Web 2.0 we have href="http://twitter.com/" target="_blank">Twitter, href="http://www.facebook.com">Facebook, href="http://www.stumbleupon.com" target="_blank">StumbleUpon, href="http://www.reddit.com" target="_blank">Reddit, href="http://www.delicious.com">Delicious, href="http://www.myspace.com">MySpace, href="http://www.digg.com">Digg, and other thousands of unnamed networking sites. I bet you are at least using a few of them. But, have you maximize the usage of these social tools? It’s extremely easy to share a piece of good article and it’s a sin to not leverage the power of these tools nowadays.

Install Tweeter gadgets, Facebook addon, or better, use plugin like Share to encourage users sharing your blogposts with their friends.

9. Post regularly

Readers will be more likely to follow id="IL_AD9">your blog if you are posting regularly – publish blogpost weekly, bi-monthly, or even monthly – it doesn’t matter what it is (although it should be at least once a week in my opinion) – but you should always stick to a schedule so your readers know when to expect new reading materials from your blog.

(Unfortunately I am not doing too well in this section. But hey, I am sure you can do better than me, right?)

10. Quality, well researched, useful content is gold

Take your time to write quality content. Don’t just follow others and have your own opinion. Some says you should spend 90% of your effort researching out what you’re going to blog (and the remaining 10% effort for typing it out). Well the figure might not be perfect for everyone but I guess it tells clearly that how important is your research to your blog. People are searching for strong quality content and if you focus on giving that you will attract a loyal readership.

11. Post from your experience

Quoting href="http://www.bloggingtips.com/2008/12/31/10-blogging-tips-for-2009-to-make-it-your-most-successful-blogging-year-ever/">Yuwanda Black from BloggingTips.com   

I like first-hand information. In fact, many web surfers are looking for this type of info. It’s no coincidence that “how to” information is the number one selling product on the web. Most of it comes from first-hand information. So use case studies, write in the first person (eg, use “I”), tell your readers how you solved a particular problem, etc. I sell a lot of ebooks by doing just this. It lets readers know that you know what you’re talking about; hence, you become an authority voice in your niche.

To prove Black’s point, my blogpost on href="http://www.webhostingsecretrevealed.com/featured-articles/bluehost-hostmonster-user-alert-cpu-throttling/">BlueHost/HostMonster CPU Throttling Features is a good example. The blogpost tells the story of my difficulties dealing with Bluehost/Hostmonster’s CPU throttling features back in year 2009. Because the story is coming first-hand from a user’s point of view, it sparks quite a discussion (I got BlueHost CEO Matt Heaton joining into the discussion) in the blogsphere. In fact, it’s still attracts comments and attention (free links!) from bloggers until today (after almost two years!).

So hey, next time if you are running out idea, perhaps it’s time to look around and see if there’s anything in your life that’s worth mentioning. ;)


Page 27 – Web Hosting Secret Revealed




Tips & Tools On Selecting The Right Domain Name



alt="Tips & Tools On Selecting The Right Domain Name" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2011/11/1004-10-500x291_c.jpg" />

Choosing the perfect domain is stressful – I understand. It is a big deal. It plays a huge role in the effectiveness of your online presence. I’ve compiled a few tips for you to consider as you pursue the ideal domain name as well as a few tools to help you along the way.

Practical Domain Tips

Brainstorm ideas

Brainstorming will make way for creative ideas and back-ups if your first choice isn’t available. I’ve found it very helpful to create a list words that could be potentially included in your domain and then combine them to find the perfect fit. Don’t be afraid to use a thesaurus to help you too.

Keep it short & easy to remember

As a rule, short domains are much easier to remember than long ones. The exception is acronyms. For example, let’s pretend your company’s name is “Bill’s Sports Bar and Billiards”. It would be hard to remember (or easy to misspell) the domain bsbb.com; something like bills.com or billsbar.com would be much easier. Unless the acronym is well known (NASA, FDA), avoid using it for your domain.

Use a .com

“.com” is the oldest and most common extension and when in doubt, people will use this extension. Of course there has been success in using alternate extensions to provide a creative twist (del.icio.us), but that adds a lot more risk to people not finding and visiting your site (or not thinking its legit).

Avoid trademarked names

First, it’s unethical to buy domains that use trademarked names. Second, it’s illegal. Don’t be mistaken and think that companies will come to you to purchase the domain for thousands; they will be more likely to introduce you to their legal department.

Register as soon as possible

Even if you aren’t sure that’s what you want to use, better to spend for a year and not end up using the domain then to decide you want to use it only to realize it’s already been sold to someone else. (When you’re ready to register, view Jerry’s href="http://www.webhostingsecretrevealed.net/hosting-reviews/">hosting reviews.)

Buy similar domains and use as a redirect

As stated earlier, the .com should be your main site. But, it doesn’t hurt to buy the .org, .net. and/or the .biz extensions and set them as a redirect to your site. Also, if your name is easily misspelled, buy the frequent misspellings and redirect them as well.

Don’t be afraid to make up a word or use a compound word

Think Google, Facebook, YouTube, Mashable, and LinkedIn. Just make sure it’s easy to remember!

Avoid punctuation and numbers

These both can cause confusion, increase the difficulty of remembering the URL, and make it harder to share. Keep it alpha if at all possible.

Auctions

Don’t settle on just domains that haven’t been registered, many domains owners are willing to negotiate the sale of the name and others are up for sale through domain auctions.

Industry jargon

If your site is meant only for a specific niche and not the general public, don’t be afraid to use industry jargon.

Useful Domain Name Selection Tools

Dot-o-mator

width="750px" src="http://www.webhostingsecretrevealed.net/images/2011/1123-1.jpg" alt="Dot-o-mater screenshot " class='border' />

This is a great tool to assist in brainstorming. Add a beginning and an ending word, click combine, sort through the ones you like, then check the availability. Easy as pie.

Visit online: target="_blank" href="http://www.dotomator.com/">http://www.dotomator.com/

Domainr

width="750px" src="http://www.webhostingsecretrevealed.net/images/2011/1123-2.jpg" alt="Domainr screenshot " class='border' />

Domainr will add a unique element of creativity to your domain name by suggesting alternate extensions. Like I stated earlier, a .com is usually the way to go, but some sites have seen incredible success with this technique (del.icio.us for example).

Visit online: target="_blank" href="http://domai.nr/">http://domai.nr/

Domain Tools

width="750px" src="http://www.webhostingsecretrevealed.net/images/2011/1123-3.jpg" alt="Domain Tools screenshot " class='border' />

Domain Tools is actually a suite of helpful tools. The top two are the “Who Is” tool which will uncover who owns the domain and “Suggestions” which will spin domain names to help you find an available domain.

Visit online: target="_blank" href="http://www.domaintools.com/">http://www.domaintools.com/

dnScoop

width="750px" src="http://www.webhostingsecretrevealed.net/images/2011/1123-4.jpg" alt="dnScoop screenshot " class='border' />

If you are looking to purchase a domain from an individual (either through an auction or personal transaction) this site can be a great help. It provides some statistics on the domain so you know just what you are purchasing.

Visit online: target="_blank" href="http://www.dnscoop.com/">http://www.dnscoop.com/

StuckDomains

width="750px" src="http://www.webhostingsecretrevealed.net/images/2011/1123-5.jpg" alt="Stuck Domains screenshot " class='border' />

Do you have a domain that your heart is set on but it’s not available? Check this site and maybe you’ll be lucky and find it expired. At the very least it can serve as inspiration for you.

Visit online: target="_blank" href="http://www.stuckdomains.com/">http://www.stuckdomains.com/

Also read: href="http://www.webhostingsecretrevealed.net/blog/web-hosting-guides/what-is-the-difference-between-a-domain-and-web-hosting/">The difference between domain name and hosting.

What other tools do you use to help in your domain name search? Any other tips to share?


Page 26 – Web Hosting Secret Revealed




Tips for Writing a Testimonial about Yourself



alt="Tips for Writing a Testimonial about Yourself" src="http://whsr.webrevenueinc1.netdna-cdn.com/wp-content/uploads/2013/06/customer-feedbacks-500x500_c.png" />

id="floatright">class="alignright" src="http://www.webhostingsecretrevealed.com/images/2011/1204-1.jpg" alt="" width="275" height="320" />

A personal testimonial can be a great marketing tool in href="http://www.webhostingsecretrevealed.net/blogging-with-whsr/">highlighting the unique value of your blog.

However, it is never easy to sing one’s own praises. You don’t want to give the impression of excessive bragging, yet extreme modesty will not serve you well either.  The following provides a step-by-step guide to writing an impressive testimonial that will draw readers to your blog.

7 Steps to writing a great personal testimonial

1. Pose questions to yourself of both a professional and personal nature. Questions will help you to clarify the most important points you wish to cover in your testimonial statement. Examples of questions include:

    • What is special or unique about your blog that differentiates it from others within your niche?
    • What value will your blog provide readers that competitor blogs do not?
    • What are some major successes of your firm and what have been your most significant challenges?
    • When did you become interested in the area you are writing about? What motivated this interest?
    • How did you learn about this field (coursework trade journals, seminars, conversations with colleagues, etc.)?
    • What are the core values of your business (e.g. integrity, customer service, quality)?
    • What experiences in your life (family, academic, professional) have shaped your goals and how do these play into your blog?
    • Have you had to overcome any significant barriers (e.g. economic or health) in your life that formed who you are today?

There is nothing wrong with blending the business with the personal in your testimonial statement. The personal side will humanize your testimonial and permit your readers a “behind-the-scenes” glimpse of some significant factors involved in building your business.

2.   Once you have answered each of the above questions, organize your answers into an outline. The answers to each question above can serve as separate paragraphs of your testimonial statement.  Make sure that you plan the testimonial so that you adequately to cover the answer to each question.

3.   Using your outline as a guide, make sure to create an introduction, body and conclusion. In essence, let readers know what the testimonial will be about (introduction). Provide details in the body of the testimonial using the answers you developed to each of the questions, and wrap it all together in the conclusion.

4.   Once you have prepared an outline and main talking points, free write for about an hour or so. Write down everything that comes to mind and do not stop to edit or criticize what you are writing. The goal is to record every relevant piece of information with no regard to organization, writing style, spelling, grammar, arrangement, or logical flow (all this will come later during the editing process).  Let go of the internal critic and have some fun since your passion will show through in the testimonial statement and draw readers like a magnet!

5.  As per Diana Huff, principal of DH Communications, a Boston-based marketing consultancy and copywriting service, to establish yourself as the expert within your field, share any special challenges that you successfully navigated and include quantifiable metrics that back up your claims.

6. Look over what you have written during the free write and make changes as necessary by either adding or deleting content. However, you don’t want the testimonial to be more than a single page in length or it may come off as too much bragging and turn people off. Take the best of your ideas and develop them further with specific examples and details.

7.   Thoroughly proofread and edit your testimonial for spelling, grammatical errors. You might also want to have a second pair of eyes review the statement to better ensure it is error-free. Do not simply rely on spell- check to catch all mistakes since the tool often misses synonymous and grammatical context.


Page 25 – Web Hosting Secret Revealed