Getting Started

In this guide we will discuss how to get started with your newly installed Charity Site. Your Charity Site is based on Wordpress and has been pre-configured by Netfirms web developers to function as a Charity Site.

If this is your first time setting up your web site, please follow along the instructions and we will guide you through the exciting process of creating content for your brand new web site!

Charity Site Features

Your installation of Netfirms Charity Site is pre-configured with the following features:

  • Advanced caching to increase performance.
  • Automated backups of your database.
  • SEO features such as automated sitemap.xml generation and per-post Meta keywords and descriptions.
  • Advanced Anti-Spam tool.
  • Built-in web stats.
  • Pre-configured contact form for visitors to email you.

Logging in to your Charity Site’s Admin section

As your Charity Site was installed via our one-click installation method, we have provided a handy link in our Control Panel which will always take you to your blog’s administration section. Login to your Netfirms Control Panel and from the screen where you installed your new web site, you will see an “Admin” link. You can always use this to get to your web site’s administration section.

For your convienence, we have provided a link to the administration section here. Enter your user name and password which should have been emailed to your contact email address on record and you will then be taken to your web site’s Dashboard.

Success! you have logged in to your new web site’s administration section.

Change The Website Logo

To change the web site logo for your web site requires a number of steps to do. First, we recommend preparing your logo image with a maximum height of 200px, however, less may look better. There are two ways to do this. The first, via FTP is the quickest, however it requires some knowledge of a FTP client and uploading files to a specific location. The second method uses Wordpress’ built in features and requires knowledge of CSS.

Uploading via FTP

The logo image for this theme is located in your installation directory at the following location.

wp-content/themes/organic_non-profit/images/logo.png

To make this transition easy, save your file as a PNG file in your image editor. PNG is a specific file format which means it must be saved specifically in this format. Once you have uploaded your new image overwriting the old one, it will be visible on your main page and this will complete the task.

Uploading via Wordpress

You may use Wordpress’ built-in media manager to upload your image if you have not uploaded your logo to your web space yet, please do the following:

  1. Click Media in the left column of your administration section.
  2. Click the Add New button at the top.
  3. Click on the Select Files button.
  4. Browse to the image you wish to use as your logo.
  5. Highlight the Link URL and then copy it by right clicking and choose Copy.
  6. Close the media window.

    Editing the CSS Stylesheet

  7. Click on the Appearance menu item in the left column.
  8. Click Editor to open the built-in theme editor.
  9. In the right column, click on Stylesheet (style.css) link to open the CSS stylesheet for editing.
  10. In the editor section, look for the following code:
     #header #title a {
      background: url(images/logo.png) no-repeat;
      display: block;
      width: 960px;
      height: 140px;
      margin: 0;
      padding: 0;
      text-indent: -9999px;
      overflow: hidden;
     }
     

    We need to change only one line background: url(images/logo.png) no-repeat;, or the second line of the code block.

  11. Paste the link URL you copied earlier between the paranthesis replacing images/logo.png. Your link URL should look something like this: http://hawaiiradioonline.com/wp-content/uploads/YYYY/MM/new_logo_image.png where YYYY is the year (2010), MM is the month (04 for April) and new_logo_image.png is the name of the file you uploaded.

    To give an example of what the new line will look like, assume that the year is 2010, the month is August and the file you are uploading is named ‘charity_logo.jpg’, here is what your line will look like:

      background: url( http://hawaiiradioonline.com/wp-content/uploads/2010/08/charity_logo.jpg) no-repeat;
     
  12. Now remove http://hawaiiradioonline.com from the line. This will make the line look this:
      background: url(/wp-content/uploads/2010/08/charity_logo.jpg) no-repeat;
     
  13. Remember not to change the rest of the of the stylesheet. Your entire code-block should look like this:
     #header #title a {
      background: url(/wp-content/uploads/2010/08/charity_logo.jpg) no-repeat;
      display: block;
      width: 960px;
      height: 140px;
      margin: 0;
      padding: 0;
      text-indent: -9999px;
      overflow: hidden;
     }
     

    Notes:

    • The forward slash in url(/wp-content…) is very important.
    • The semi-colon at the end of the line is required.

Create Your First Post

Once logged in to your web site’s administration section, you will see on the left column a menu item Posts. Click that link and then click on the Add New link which appears below.

Before we proceed, you should think about what you would like your first post to say. One idea is to write a welcome message, however you can post whatever topic you like. Once you have decided what you wish to use, please continue.

The top of your screen will have a large text field where you may enter the title of your new post. The main text box will be where you type in the contents of your post. Once you have entered a title and content we could publish it by clicking the Publish button in the right side of the screen. However, your new web site comes with built-in SEO features as well as a categorization and tag system. Let’s examine those:

Tags

A tag is a way for you to associate this post you are current writing with a word or phrase which will help organize your posts. If you wrote a post about your pet dog, you could tag this post with “Dog”. To do this, from the Add New Post page, enter the word Dog in the Post Tags section on the right column and then click Add. You may create as many tags as you want, but we suggest attempting to limit the amount of unique tags you create.

Categories:

A category allows you to assign this post to a common hierarchial term. Categories differ from tags in that they allow a child-parent relationship. This means you could have the category Pets, and underneath this you could have a Dog and a Cat category which are below Pets. This allows a very organized hierarchy of your posts.

To add a new category, click on the + Add New Category link on the right column under Categories. You may add as many categories as you wish. We have a new category called News which will be displayed on your front page. Any news-type posts should be categorized under this preset.

SEO Settings

Before we get into the SEO settings, let me describe what SEO is. SEO is an abbreviation of the term Search Engine Optimization which is a system that helps your new web site gain a higher ranking in search engines such as Google and Bing. A higher ranking means more visitors.

Thumbnails

The included theme comes with a thumbnail system which you may associate with posts and pages. The thumbnail section is only available when you are editing a post or page. You will find it in the right column of the editor page.

Setting an image

Your Charity Site allows you to associate images with your posts and have them show on the homepage in the tabbed area as well as the pages you create. To utilize this feature, we must upload an image. To do so, you will see the text “Upload/Insert” with a group of 4 images to the right of it directly above your main editor.

  1. Click the left-most image which when hovered over shows Add an image.
  2. Click on the Select Files button.
  3. Browse to the image you wish to use. Please note you will have to already have this image on your computer. Once you have clicked OK you will see your image displayed as well as some image data.
  4. Click the Use as Thumbnail link. Once you see the Done text in place of the link, close the media window by clicking the X at the top right of the corner.

Congratulations, your new post has an image added to it.

In the main column of the Add New Post page, you may enter some Head Keywords and Head Description to help your search engine rankings. The keywords are a comma separated list of terms you wish for this post to be found under and a head description is the description the search engine caches when it shows your page in it’s listings.

Once you’ve filled out your tags, categories and SEO information, you may click the Publish button. Congratulations, your new post will be visible on your web site instantly after clicking the publish button. Click here to view your new post then come back to this page when you’re ready to continue.

Enabling Anti-Spam and Web Stat Features

Your customized installation comes with an anti-spam system and a web stats tracking system installed, however it must be configured first. In order to configure it, there are a few things that must be done first.

Getting a Wordpress API Key

The API Key is free, but it does require you visiting Wordpress’ site and creating an account. Please visit the Wordpress signup page. Enter your personal information and at the bottom choose “Just a username, please.”

Once you have created and verified your account, login to your Wordpress account you created. Click on the Profile link and you will see at the very top, your WordPress.com API Key. We’re going to use this soon so keep it available to you by recording it somewhere.

Enable Akismet and WP-Stats

Go back to your new web site and complete the following steps:

  1. Login to your web site’s administration section and click on the Plugins menu item in the left column.
  2. Click Activate for the plugin Akismet and WP-Stats.
  3. You will see a yellow box with a link asking you to enter your Wordpress.com API Key that you created earlier.
  4. Once entered, click Update options to enable Akismet.

Congratulations, your web site now has it’s own built-in web stats and anti-spam system.

Clean Up and Finalizing

For your new web site, we have completed the most common task that you will be using, adding new content. Before we finish though, let’s clean up this guide so that it is not visible to your visitors.

Login to your web site’s administration again and this time click the Pages menu item on the left column. You will see a list of pages for your web site and one of them will be titled Getting Started. Hover your mouse over it and click on Quick Edit. You will see a number of controls, the one we want is Status which will have a pull-down next to it. Change it from Published to Draft and then click the Update Page button.

Setting this page to draft will ensure it’s always there should you wish to review this page again. If you are sure you no longer wish to keep this page, hover your mouse over the Getting Started page again and this time choose Trash.

We have also created a number of example posts which were used to give your new site the desired look. We suggest deleting them and creating your own content. To delete the content, click on the Posts menu item on the left column. Put a check mark next to each of our example posts that you wish to get rid of. Use the pulldown entitled Bulk Actions and choose Move To Trash then click Apply.

Edit/Change Existing Pages

We have taken the liberty of creating some commonly used pages for your Charity Site. We suggest editing them to make them reflect your own charity. You may edit them by clicking on the Edit Pages link on the left column of your wordpress administration section.

Congratulations

Congratulations, you have taken over the Charity Site and it is now your web site where you may continue to add content.

Some helpful links that will help you get started:

Latest Feedback

Archives

Powered by Netfirms