Declare Theme Support
If you have a theme that includes support for Cart66 you should have your theme announce its support for Cart66.
In your theme's functions.php file, simply add the following code:
function declare_cart66_support() { add_theme_support( 'cart66' ); } add_action( 'after_setup_theme', 'declare_cart66_support' );