Step by Step Installation of WordPress Plugins
Posted by Joe Hauckes
If you're new here,
You may want to Subscribe to my RSS Feed or if you prefer ... Subscribe via e-mail. Thanks for visiting!
Installation of any WordPress Plugin is quite similar to any other in the steps that need to be followed in order to function properly. For the most part the only differences will be What you have to Upload to your Host Server.
Every WordPress Plugin I have ever installed always starts with downloading a .zip file. This should include ALL the information, folders, files and particular steps you will need to take in order to complete the installation.
Step by Step
- Download the .zip file…
- to Your Computer in it’s entirety. Save it to any Folder you feel comfortable using ie. “downloads” or “zip files”. Confirm you received all the files. You can use your default expansion program if you are using an Operating System that has that function or something like Winzip for the next step.
- Unzip the .zip file…
- to a folder on Your Computer where you can access everything in all the Folders and Files that have been expanded. [Keep the Expanded Folder separate from the Zip Folder, this will help avoid some confusion.] Normally these will default to the “Plugin Name Folder” and include the necessary files and folders you need to use the plugin, and a “readme” file which should have all the Special Instructions to ensure proper functionality of the Plugin (be sure to read it!).
- Log in…
- to your Host Server and access your WordPress files for the Blog to which you are Uploading the Plugin for installation. This is ALWAYS in the public_html file. Make sure you keep track of where your expanded folders and files are stored on your computer for the next step.
- Navigate to wp_content/plugins…
- If you need a Folder for the Plugin, Create the Folder with the Suggested Name in the “read me” text. Upload all the Files and Folders necessary (being sure to Create any Sub-folders ie. “image” or “features” and Upload any required files within those folders).
- If No Separate Folder is needed, just Upload the File(s) making sure to create any Required Folders such as “cache” for storage of temporary information. (Folders like “cache” require the ability for the plugin to write to the folder for storage, be sure to open the folder so writing information is enabled).
- Save everything (as necessary) and Log Out of your Host Server
- Go to the WP-Admin of your Blog and sign in as Administrator
- Navigate to the Administration-Dashboard-Plugins Page of the Blog and ACTIVATE the Plugin
- If needed, ADD any code to the .php files as appropriate (you did read the “read me” right?) and SAVE any Changes
Your WordPress Plugin should function as promised as long as you followed ALL the necessary steps.
Related Posts:Installing a WordPress Theme (Screencast)
Posted by Joe Hauckes
If you have been thinking about using a New Theme for your WordPress blog and thought the installation was a little beyond your expertise, maybe this will help.
I realize that it’s not the best quality, but bear with me, it is my first time.
Let me know if you found it helpful and if you would like more Screencasts (they’ll get better, I promise) on other subjects.
Related Posts:How To Put AdSense Ads After A Single Post per Page
Posted by Joe Hauckes
Do use AdSense on your Blog? Do you want to put some Ads after your posts but are limited by the fact that you can only have 3 instances of AdSense per page? Do you want to know how to show AdSense Ads after a certain post and not others to be sure you stay within Googles guidelines and not be banned?
Here’s how you can set up an AdSense campaign to show after one post per page. The example has the Ads showing after the second post, but you can set it up after any post number you like. And this also works on Category and “Next” pages without any other changes being made to your code.
Go to your index.php in the Presentation folder of your WordPress Dashboard.
And look for:
<?php if (have_posts()) :?>
<?php $postCount=0; ?>
<?php while (have_posts()) : the_post();?>
And IMMEDIATELY BEFORE it put this bit of code:
<?php
$postnum = 1;
$showadsense1 = 2;
?>
Go a little further down in the code and look for this (at the end of the content statement)
<?php endwhile; ?>
And place this bit of code RIGHT BEFORE that statement:
<?php
if ($postnum == $showadsense1)
(your AdSense code goes here)
$postnum++;
?>
It’s as simple as that. There should be no need to make any changes if and when you update your WordPress version, but you will have to remember to redo the code if you change your Theme.
You should be able to copy/paste the above code with no problems, just remember to put YOUR AdSense code in place of “(your AdSense code goes here)” or it will never work.
Questions or problems can be left in comments and I will answer them there so others will know the answer to your question too.
Related Posts:Try The Darkside for a Better Blogging Experience
Posted by Joe Hauckes
I have been using the Andreas04 2.0 WordPress Theme on my Working at Home on the Internet Blog for well over a year. I made so many tweaks on it in that time frame to make it a bit more functional, I decided to go a little further and remake the look as well.
Introducing…
Andreas04 3.1-the dark side
Some things I changed/added include:
- “More”… the split post never worked in the old theme, it does now
- RSS feed subscription links at the top of the page
- More room for the Tag line in the header
- Dynamic Footer (not just the bottom of the page anymore)
- Drop down menu for Categories
- Added Titles to the previous/next posts
- Shrunk the container (actual space used) to 900px
- Added a Search feature to help navigation for visitors
Oh, and I made it Darker.
You can take a look at The Darkside Theme live on the Joe’s Freeware Finds Blog or download Andreas04 3.1 now.
Related Posts:Offer Your Readers The Option to Print Your Posts
Posted by Joe Hauckes
How many times have you read an article on one of your favorite Blogs and said to yourself… “I wish I could print this so I can keep it around for future reference“? I know I have, especially when there is some information that needs to be exact when I need to use it.
Well, I found a WordPress Plugin that fits the bill. As far as I can tell this is the third incarnation of this plugin, but it does what it says it will. Your readers can print an article or page including images in a very readable format.
Go to WP-Print 2.20 and download the zip file and unzip it
Upload everything in the Print folder to wp-content/plugins on your host
Activate the plugin
In your index/page/single post php
Look for <?php while (have_posts()) : the_post(); ?>
Add <?php if(function_exists(’wp_print’)) { print_link(); } ?> where you want the print option to show
Go to WP-Admin -> Options -> Print to set your preferences
This is really important
Go to WP-Admin -> Options -> Permalinks -> Update Permalink Structure to re-generate the Permalink, DON’T change anything, just Update the Permalink. (I overlooked this step and nothing worked until I did the update)
So far I can see only 2 minor glitches
The images will only print in Black & White, it would be nice to have some color options
There is no way to get back to the Blog unless you hit the <– Back Arrow
Overall I think this is a very nice clean way to offer your readers a way to print any article or page on your WordPress Blog.
Related Posts:




