15 min read

In this article by Patrick Rauland, author of the book WooCommerce Cookbook, we will focus on the following topics:

  • Installing WooCommerce
  • Installing official WooThemes plugins
  • Manually creating WooCommerce pages
  • Creating a WooCommerce plugin

(For more resources related to this topic, see here.)

A few years ago, building an online store used to be an incredibly complex task. You had to install bulky software onto your own website and pay expensive developers a significant sum of money to customize even the simplest elements of your store. Luckily, nowadays, adding e-commerce functionality to your existing WordPress-powered website can be done by installing a single plugin. In this article, we’ll go over the settings that you’ll need to configure before launching your online store with WooCommerce. Most of the recipes in this article are simple to execute. We do, however, add a relatively complex recipe near the end of the article to show you how to create a plugin specifically for WooCommerce. If you’re going to be customizing WooCommerce with code, it’s definitely worth looking at that recipe to know the best way to customize WooCommerce without affecting other parts of your site.

The recipes in this article form the very basics of setting up a store, installing plugins that enhance WooCommerce, and managing those plugins. There are recipes for official WooCommerce plugins written using WooThemes as well as a recipe for unofficial plugins. Feel free to select either one. In general, the official plugins are better supported, more up to date, and have more functionality than unofficial plugins. You could always try an unofficial plugin to see whether it meets your needs, and if it doesn’t, then use an official plugin that is much more likely to meet your needs.

At the end of this article, your store will be fully functional and ready to display products.

Installing WooCommerce

WooCommerce is a WordPress plugin, which means that you need to have WordPress running on your own server to add WooCommerce. The first step is to install WooCommerce. You could do this on an established website or a brand new website—it doesn’t matter. Since e-commerce is more complex than your average plugin, there’s more to the installation process than just installing the plugin.

Getting ready

Make sure you have the permissions necessary to install plugins on your WordPress site. The easiest way to have the correct permissions is to make sure your account on your WordPress site has the admin role.

How to do it…

There are two parts to this recipe. The first part is installing the plugin and the second step is adding the required pages to the site. Let’s have a look at the following steps for further clarity:

  1. Log in to your WordPress site.
  2. Click on the Plugins menu.
  3. Click on the Add New menu item. These steps have been demonstrated visually in the following screenshot:

    WooCommerce Cookbook

  4. Search for WooCommerce.
  5. Click on the Install Now button, as shown in the following screenshot:

    WooCommerce Cookbook

  6. Once the plugin has been installed, click on the Activate Plugin button. You now have WooCommerce activated on your site, which means we’re half way there. E-commerce platforms need to have certain pages (such as a cart page, a checkout page, an account page, and so on) to function. We need to add those to your site.
  7. Click on the Install WooCommerce Pages button, which appears after you’ve activated WooCommerce. This is demonstrated in the following screenshot:

    WooCommerce Cookbook

How it works…

WordPress has an infrastructure that allows any WordPress site to install a plugin hosted on WordPress.org. This is a secure process that is managed by WordPress.org.

Installing the WooCommerce pages allows all of the e-commerce functionality to run. Without installing the pages, WooCommerce won’t know which page is the cart page or the checkout page. Once these pages are set up, we’re ready to have a basic store up and running.

If WordPress prompts you for FTP credentials when installing the plugin, that’s likely to be a permissions issue with your web host. It is a huge pain if you have to enter FTP credentials every time you want to install or update a plugin, and it’s something you should take care of. You can send this link to your web host provider so they know how to change their permissions. You can refer to http://www.chrisabernethy.com/why-wordpress-asks-connection-info/ for more information to resolve this WordPress issue.

Installing official WooThemes plugins

WooThemes doesn’t just create the WooCommerce plugin. They also create standalone plugins and hundreds of extensions that add extra functionality to WooCommerce. The beauty of this system is that WooCommerce is very easy to use because users only add extra complexity when they need it. If you only need simple shipping options, you don’t ever have to see the complex shipping settings.

On the WooThemes website, you may browse for WooCommerce extensions, purchase them, and download and install them on your site. WooThemes has made the whole process very easy to maintain. They have built an updater similar to the one in WordPress, which, once configured, will allow a user to update a plugin with one click instead of having to through the whole plugin upload process again.

Getting ready

Make sure you have the necessary permissions to install plugins on your WordPress site. You also need to have a WooThemes product. There are several free WooThemes products including Pay with Amazon which you can find at http://www.woothemes.com/products/pay-with-amazon/.

How to do it…

There are two parts to this recipe. The first part is installing the plugin and the second step is adding your license for future updates. Follow these steps:

  1. Log in to http://www.woothemes.com.
  2. Click on the Downloads menu:

    WooCommerce Cookbook

  3. Find the product you wish to download and click on the Download link for the product. You will see that you get a ZIP file.

    WooCommerce Cookbook

  4. On your WordPress site, go the Plugins menu and click on Add New.
  5. Click on Upload Plugin.
  6. Select the file you just downloaded and click on the Install Now button.
  7. After the plugin has finished installing, click on the Activate Plugin link.

You now have WooCommerce as well as a WooCommerce extension activated on your site. They’re both functioning and will continue to function. You will, however, want to perform a few more steps to make sure it’s easy to update your extensions:

  1. Once you have an extension activated on your site, you’ll see a link in the WordPress admin: Install the WooThemes Updater plugin. Click on that link:

    WooCommerce Cookbook

  2. The updater will be installed automatically.
  3. Once it is installed, you need to activate the updater.
  4. After activation, you’ll see a new link in the WordPress admin: activate your product licenses. Click that link to go straight to the page where you can enter your licenses. You could also navigate to that page manually by going to Dashboard | WooThemes Helper from the menu.

    WooCommerce Cookbook

  5. Keep your WordPress site open in one tab and log back in to your WooThemes account in another browser tab.
  6. On the WooThemes browser tab, go to My Licenses and you’ll see a list of your products with a license key under the heading KEY:

    WooCommerce Cookbook

  7. Copy the key, go back to your WordPress site, and enter it in the Licenses field.
  8. Click on the Activate Products button at the bottom of the page. The activation process can take a few seconds to complete.
  9. If you’ve successfully put in your key, you should see a message at the top of the screen saying so.

    WooCommerce Cookbook

How it works…

A plugin that’s not hosted on WordPress.org can’t update without someone manually reuploading it. The WooThemes updater was built to make this process easier so you can press the update button and have your website do all the heavy lifting.

Some websites sell official WooCommerce plugins without a license key. These sales aren’t licensed and you won’t be getting updates, bug fixes, or access to the support desk. With a regular website, it’s important to stay up to date. However, with e-commerce, it’s even more important since you’ll be handling very sensitive payment information. That’s why I wouldn’t ever recommend using a plugin that can’t update.

Manually creating WooCommerce pages

Every e-commerce platform will need to have some way of creating extra pages for e-commerce functionality, such as a cart page, a checkout page, an account page, and so on. WooCommerce prompts to helps you create these pages for you when you first install the plugin. So if you installed it correctly, you shouldn’t have to do this. But if you were trying multiple e-commerce systems and for some reason deleted some pages, you may have to recreate those pages.

How to do it…

There’s a very useful Tools menu in WooCommerce. It’s a bit hard to find since you won’t be needing it everyday, but it has some pretty useful tools if you ever need to do some troubleshooting. One of these tools is the one that allows you to recreate your WooCommerce pages. Let’s have a look at how to use that tool:

  1. Log in to the WordPress admin.
  2. Click on WooCommerce | System Status:

    WooCommerce Cookbook

  3. Click on Tools:

    WooCommerce Cookbook

  4. Click on the Install Pages button:

    WooCommerce Cookbook

How it works…

WooCommerce keeps track of which pages run e-commerce functionality. When you click on the Install Pages button, it checks which pages exist and if they don’t exist, it will automatically create them for you. You could create them by creating new WordPress pages and then manually assigning each page with specific e-commerce functionality. You may want to do this if you already have a cart page and don’t want to recreate a new cart page but just copy the content from the old page to the new page. All you want to do is tell WooCommerce which page should have the cart functionality. Let’s have a look at the following manual settings:

  • The Cart, Checkout, and Terms & Conditions page can all be set by going to WooCommerce | Settings | Checkout
  • The My Account page can be set by going to WooCommerce | Settings | Accounts

There’s more…

You can manually set some pages, such as the Cart and Checkout page, but you can’t set subpages. WooCommerce uses a WordPress functionality called end points to create these subpages. Pages such as the Order Received page, which is displayed right after payment, can’t be manually created. These endpoints are created on the fly based on the parent page. The Order Received page is part of the checkout process, so it’s based on the Checkout page. Any content on the Checkout page will appear on both the Checkout page and on the Order Received page.

You can’t add content to the parent page without it affecting the subpage, but you can change the subpage URLs. The checkout endpoints can be configured by going to WooCommerce | Settings | Checkout | Checkout Endpoints.

Creating a WooCommerce plugin

Unlike a lot of hosted e-commerce solutions, WooCommerce is entirely customizable. That’s one of the huge advantages for anyone who builds on open source software. If you don’t like it, you can change it. At some point, you’ll probably want to change something that’s not on a settings page, and that’s when you may want to dig into the code. Even if you don’t know how to code, you may want to look this over so that when you work with a developer, you would know they’re doing it the right way.

Getting ready

In addition to having admin access to a WordPress site, you’ll also need FTP credentials so you can upload a plugin. You’ll also need a text editor. Popular code editors include Sublime Text, Coda, Dreamweaver, and Atom. I personally use Atom. You could also use Notepad on a Windows machine or Text Edit on a Mac in a pinch.

How to do it…

We’re going to be creating a plugin that interacts with WooCommerce. It will take the existing WooCommerce functionality and change it. These are the WooCommerce basics. If you build a plugin like this correctly, when WooCommerce isn’t active, it won’t do anything at all and won’t slow down your website. Let’s create a plugin by performing the following steps:

  1. Open your text editor and create a new file. Save the file as woocommerce-demo-plugin.php.
  2. In that file, add the opening PHP tag, which looks like this: <?php.
  3. On the next line, add a plugin header. This allows WordPress to recognize the file as a plugin so that it can be activated. It looks something like the following:
    /**
    * Plugin Name: WooCommerce Demo Plugin
    * Plugin URI: https://gist.github.com/BFTrick/3ab411e7cec43eff9769
    * Description: A WooCommerce demo plugin
    * Author: Patrick Rauland
    * Author URI: http://speakinginbytes.com/
    * Version: 1.0
    *
    * This program is free software: you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation, either version 3 of the License, or
    * (at your option) any later version.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program. If not, see <http://www.gnu.org/licenses/>.
    *
    */
  4. Now that WordPress knows that your file is a plugin, it’s time to add some functionality to this. The first thing a good developer does is makes sure their plugin won’t conflict with another plugin. To do that, we make sure an existing class doesn’t have the same name as our class. I’ll be using the WC_Demo_Plugin class, but you can use any class name you want. Add the following code beneath the plugin header:
    if ( class_exists( 'WC_Demo_Plugin' ) ) {
       return;
    }
     
    class WC_Demo_Plugin {
     
    }
  5. Our class doesn’t do anything yet, but at least we’ve written it in such a way that it won’t break another plugin. There’s another good practice we should add to our plugin before we add the functionality, and that’s some logic to make sure another plugin won’t misuse our plugin. In the vast majority of use cases, you want to make sure there can’t be two instances of your code running. In computer science, this is called the Singleton pattern. This can be controlled by tracking the instances of the plugin with a variable. Right after the WC_Demo_Plugin { line, add the following:
    protected static $instance = null;
     
     
    /**
    * Return an instance of this class.
    *
    * @return object A single instance of this class.
    * @since 1.0
    */
    public static function get_instance() {
       // If the single instance hasn't been set, set it now.
       if ( null == self::$instance ) {
           self::$instance = new self;
       }
     
       return self::$instance;
    }

    And get the plugin started by adding this right before the endif; line:

    add_action( 'plugins_loaded', array( 'WC_Demo_Plugin', 'get_instance' ), 0 );
  6. At this point, we’ve made sure our plugin doesn’t break other plugins and we’ve also dummy-proofed our own plugin so that we or other developers don’t misuse it. Let’s add just a bit more logic so that we don’t run our logic unless WooCommerce is already loaded. This will make sure that we don’t accidentally break something if we turn WooCommerce off temporarily. Right after the protected static $instance = null; line, add the following:
    /**
    * Initialize the plugin.
    *
    * @since 1.0
    */
    private function __construct() {
       if ( class_exists( 'WooCommerce' ) ) {
     
       }
    }
  7. And now our plugin only runs when WooCommerce is loaded. I’m guessing that at this point, you finally want it to do something, right? After we make sure WooCommerce is running, let’s add some functionality. Right after the if ( class_exists( ‘WooCommerce’ ) ) { line, add the following code so that we add an admin notice:
    // print an admin notice to the screen.
    add_action( 'admin_notices', array( $this, 'my_admin_notice' ) );

    This code will call a method called my_admin_notice, but we haven’t written that yet, so it’s not doing anything. Let’s write that method. Have a look at the __construct method, which should now look like this:

    /**
    * Initialize the plugin.
    *
    * @since 1.0
    */
    private function __construct() {
       if ( class_exists( 'WooCommerce' ) ) {
     
           // print an admin notice to the screen.
           add_action( 'admin_notices', array( $this, 'display_admin_notice' ) );
     
       }
    }

    Add the following after the preceding __construct method:

    /**
    * Print an admin notice
    *
    * @since 1.0
    */
    public function display_admin_notice() {
       ?>
       <div class="updated">
           <p><?php _e( 'The WooCommerce dummy plugin notice.', 'woocommerce-demo-plugin' ); ?></p>
       </div>
       <?php
    }

    This will print an admin notice on every single admin page. This notice includes all the messages you typically see in the WordPress admin. You could replace this admin notice method with just about any other hook in WooCommerce to provide additional customizations in other areas of WooCommerce, whether it be for shipping, the product page, the checkout process, or any other area. This plugin is the easiest way to get started with WooCommerce customizations.

    If you’d like to see the full code sample, you can see it at https://gist.github.com/BFTrick/3ab411e7cec43eff9769.

  8. Now that the plugin is complete, you need to upload it to your plugins folder. You can do this via the WordPress admin or more commonly via FTP.
  9. Once the plugin has been uploaded to your site, you’ll need to activate the plugin just like any other WordPress plugin. The end result is a notice in the WordPress admin letting us know we did everything successfully.

    WooCommerce Cookbook

Whenever possible, use object-oriented code. That means using objects (like the WC_Demo_Plugin class) to encapsulate your code. It will prevent a lot of naming conflicts down the road. If you see some procedural code online, you can usually convert it to object-oriented code pretty easily.

Summary

In this article, you have learned the basic steps in installing WooCommerce, installing WooThemes plugins, manually creating WooCommerce pages, and creating a WooCommerce plugin.

Resources for Article:


Further resources on this subject:


LEAVE A REPLY

Please enter your comment!
Please enter your name here