Thats because there isn’t one. It is what it is 🙂
Okay, I give up. Where can I actually find the settings for this plugin? I’ve clicked everywhere I can think of.
Okay, I found it. On my installation, it’s in WooCommerce > Settings > Products, and then click on the SubMenu tab called “Display”. Scroll to the bottom of the page.
I can’t find any settings …
Checked WC > Settings > Products > Display as KeithPublic said, scrolled up and down and up again, but all I have is the default WC options + the WC JetPack options.
Shame, this is a fine little plugin but the hunt for the options shouldn’t be necessary. I’m deactivating; display is wrong for my site and there is no access to the options 🙁
The following seems to do the trick by editing cart-tab.php. The settings can now be found in its own tab under WooCommerce –> Settings –> Products –> Cart Tab
Replacing
// Admin
add_action( 'woocommerce_settings_image_options_after', array( $this, 'admin_settings' ), 20 );
add_action( 'woocommerce_update_options_catalog', array( $this, 'save_admin_settings' ) );
add_action( 'woocommerce_update_options_products', array( $this, 'save_admin_settings' ) );
with
// Admin
add_filter( 'woocommerce_get_sections_products', array( $this, 'wc_ct_add_section' ) );
add_filter( 'woocommerce_get_settings_products', array( $this, 'wc_ct_all_settings' ), 10, 2 );
where
// Add section to woocommerce settings
function wc_ct_add_section( $sections ) {
$sections['wc_ct'] = __( 'Cart Tab', 'woocommerce-cart-tab' );
return $sections;
}
function wc_ct_all_settings( $settings, $current_section ) {
/**
* Check the current section is what we want
**/
if ( $current_section == 'wc_ct' ) {
return $this->settings;
} else {
return $settings;
}
}