Increasing your font selection

Thanks to Janice M for reminding us that we don't have to stay limited with the default fonts provided in WordPress. If you want have ~400 new fonts to select from, give Google Fonts a try. 

In your WordPress Dashboard go to "Plugins -> Add New" and search for "google fonts".  Choose Install Now, and then "Activate plugin". 

Now when you click on Settings on your WordPress Dashboard, you will see a Google Fonts option. 

Tagged with: , , , ,
Posted in Tech Tip

Stop comment spam with Akismet

If you've been using WordPress for some time, you've probably noticed comment spam — comments that sound really nice, but have really been setup to link back to their business when/if you accidentally approve the comment. The more popular your blog/website, the more you'll likely receive. One of the best solutions for combating this is Akismet which is provided by Auttomatic, the same people who run WordPress.com. They have setup the service free for personal and non-business blogs. Once activated on your site, whenever someone comments on your site, it will send that comment to their servers to be reviewed. Because Akismet monitors millions of websites, their engines have a pretty good idea if that comment is likely spam or legitimate. If it shows up as spam, they'll do the hard work and delete the comment for you, only leaving up to you to approve or trash the human entered comments.

While there are many ways to use Akismet outside of WordPress, by far the most popular way is the WordPress plugin. You can see if it's installed in your WordPress if you click on Plugins -> Installed Plugins in your WordPress Dashboard. If it is, skip to step 2.

  1. Download and Install the Akismet WordPress Plugin.
  2. Under Plugins -> Installed Plugins, click "Activate" under settings
  3. Under the Akismet plugin settings will be a link to the Akismet signup page, go there and create an account
  4. Once you've verified your account, you will receive an API key
  5. Enter this API key in your Akismet Plugin settings.

If this was successful, you should now see a green bar in the Akismet Plugin settings that says "This key is valid". You're now protected by Akismet! If you have any questions, don't hestiate to ask in the comments section below.

Tagged with: , , ,
Posted in Tech Tip, Wordpress

What does your website look like with scripts blocked?

If you're security savvy, or follow a privacy and security blog like PrivaSecTech, you know that the most popular way hackers get into systems these days is through scripts (flash or java usually). As such, there are plugins for most browsers now, like NoScripts for Firefox or NotScripts for Chrome which block all scripts by default, unless you manually authorize them. Using such a plugin in your broswer is arguably more effect than having anti-virus installed these days!

What does your website look like when someone views it using a script blocker? Is it still functional? partially functioning? completely unusable? What about your employer's website? You could be losing a lot of visitors and/or revenue if it's not easy to read or use your website with scripts blocked, it's usually best to remove them if they're not absolutely necessary.

Install a script blocker in your browser and see how your website is affected! 

Posted in Tech Tip

Changing your WordPress editor

The default editor in WordPress is lacking, to say the least. If you're looking to replace the default editor with a more powerful and accessible editor, you should give the CKEditor a try. There's a long list of reasons why this editor is better. If you don't like it, simply remove the CKEditor plugin!

To install it, go to Plugins in your WordPress Dashboard, choose "Add new" at the top and do a search for "CKEditor for Wordpess", choose the one from CKSource and click "Install Now". (click OK to confirm)

Once it's successfully installed, click the "Activate Plugin" link. That's it! Now when you go to "Posts -> Add New" you should notice the new, more powerful editor. Take your time and go through all of these new options you've not had before!

Tagged with: , , , , , , , ,
Posted in Tech Tip, Wordpress

Google XML Sitemap

Sitemaps are useful for both people, as well as search engine robots (spiders) in indexing all of your website for their search engines. To make this as easy as possible, especially Google, install the WordPress plugin called Google XML Sitemaps.

Once you've installed and activated the plugin, you can look over the settings by clicking in the WordPress Dashboard under Settings -> XML Sitemap. You should be able to leave the default settings, but go through them just in case. Then notice at the top of the XML Sitemap settings page it says that the sitemap has not been generated yet. Generate it now, and you'll see that not only does it generate it for you, it notifies all of the popular search engines (Google, Bing, Ask.com etc) of your new, clean sitemap!

Whenever you change your website around, create a new page, or add several new posts, create an updated sitemap!

 

Tagged with: , , , , , ,
Posted in SEO, Uncategorized, Wordpress

Display an RSS feed on your WordPress website

Add the following to your theme, to embed an RSS feed
(another blog of yours?) to your WordPress blog:
<?php include_once(ABSPATH.WPINC.'/feed.php'); 
$rss = fetch_feed('http://example.com/rss/'); 
$maxitems = $rss->get_item_quantity(5); 
$rss_items = $rss->get_items(0, $maxitems); ?> 
<ul> 
 <?php if ($maxitems == 0) echo '<li>Empty</li>'; 
 else foreach ( $rss_items as $item ) : ?> 
 <li> <a href='<?php echo $item->get_permalink(); ?>' 
 title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
 <?php echo $item->get_title(); ?></a> </li> <?php endforeach; ?> 
</ul>
Note to change the URL in the second line to the RSS feed you'd like to embed!
Tagged with: , , ,
Posted in Tech Tip, Wordpress

SEO Slugs

If you're using WordPress and call your post something like "what can you do immediately for higher rankings", WordPress will give it the URL:

http://www.example.com/what-you-can-do-immediately-for-higher-rankings (replace example.com with your domain name)

Once you install and activate the SEO Slugs plugin, it will remove all of the common words from the URL, such as "a", "the", "you" etc). In this example, you'd end up with:

http://www.example.com/immediately-higher-rankings which is a lot more SEO friendly!

Tagged with: , , ,
Posted in SEO, Wordpress

Interested in being an affiliate?

Do you have clients, friends, or family members that might be interested in a quick, cost-effective website? If so, contact sales@onedaywebsite.ca to become an affiliate, there is no cost to sign up. Once you're signed up, you'll get a special URL that you will send out to your clients, friends, and family.

For any affiliates that register in 2012, we're offering a 10% commission for everyone who signs up that you referred to our website for the next 6 months! That's $40 cash to you for everyone who signs up for the $399 package!

Tagged with: ,
Posted in Business

SEO Permalinks

When you're looking at your WordPress dashboard for the first time, click on:

Settings -> Permalinks -> Custom Structure

and add /%postname%/

 

permalinks

 

If you've already have posts that are published, you'll also want to install the Redirection plugin so you don't lose any of your Search Engine Optimization (SEO)!

Posted in SEO, Tech Tip, Wordpress

HTML Validator

Have you ever been to a website that just doesn't look right, and so you try a different browser (Chrome, Firefox, Internet Explorer, Safari, Opera etc) and then it looks OK? Chances are your website developer wrote your website just for that browser. An advanced web developer will make sure your website W3 standards compliant, which means that your website will look fine no matter what browser your website visitors are using. You can test to see if your website validates by entering in your website into the W3 Validator's website.

Posted in HTML, Tech Tip
Get Your Website Online in One Day

You can have a professional website online by tomorrow starting from only $299 with One Day Website.

Click "Choose Your Plan" below to secure your home on the Internet today!

Choose Your Plan Now!

Monthly Exclusives
Get exclusive details, offers, and member-only information. Free sign-up below! (PS - We hate spam too and will never send you junk)
* = required field