-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

WooCommerce Cookbook
By :

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.
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.
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:
woocommerce-demo-plugin.php
.<?php
./** * 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/>. * */
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 { }
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 );
protected static $instance = null;
line, add the following:/** * Initialize the plugin. * * @since 1.0 */ private function __construct() { if ( class_exists( 'WooCommerce' ) ) { } }
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.
plugins
folder. You can do this via the WordPress admin or more commonly via FTP.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. Object-oriented programming is out of the scope of this book, but you can read more at http://codex.wordpress.org/Plugin_API.