woocommerce/admin/admin-settings.php

1132 lines
38 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Functions for the settings page in admin.
*
* The settings page contains options for the WooCommerce plugin - this file contains functions to display
* and save the list of options.
*
* @author WooThemes
* @category Admin
* @package WooCommerce
*/
/**
* Define settings for the WooCommerce settings pages
2011-08-10 17:11:11 +00:00
*/
global $woocommerce_settings;
2011-08-10 17:11:11 +00:00
$woocommerce_settings['general'] = apply_filters('woocommerce_general_settings', array(
2011-08-10 17:11:11 +00:00
array( 'name' => __( 'General Options', 'woothemes' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Base Country/Region', 'woothemes' ),
'desc' => __( 'This is the base country for your business. Tax rates will be based on this country.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_default_country',
2011-11-23 10:08:48 +00:00
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
'std' => 'GB',
'type' => 'single_select_country'
),
2011-11-04 18:15:32 +00:00
array(
'name' => __( 'Currency', 'woothemes' ),
'desc' => __("This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.", 'woothemes' ),
'tip' => '',
'id' => 'woocommerce_currency',
2011-11-23 10:08:48 +00:00
'css' => 'min-width:300px;',
2011-11-04 18:15:32 +00:00
'std' => 'GBP',
'type' => 'select',
'class' => 'chosen_select',
'options' => array_unique(apply_filters('woocommerce_currencies', array(
2011-11-04 18:15:32 +00:00
'USD' => __( 'US Dollars (&#36;)', 'woothemes' ),
'EUR' => __( 'Euros (&euro;)', 'woothemes' ),
'GBP' => __( 'Pounds Sterling (&pound;)', 'woothemes' ),
'AUD' => __( 'Australian Dollars (&#36;)', 'woothemes' ),
'BRL' => __( 'Brazilian Real (&#36;)', 'woothemes' ),
'CAD' => __( 'Canadian Dollars (&#36;)', 'woothemes' ),
'CZK' => __( 'Czech Koruna', 'woothemes' ),
'DKK' => __( 'Danish Krone', 'woothemes' ),
'HKD' => __( 'Hong Kong Dollar (&#36;)', 'woothemes' ),
'HUF' => __( 'Hungarian Forint', 'woothemes' ),
'ILS' => __( 'Israeli Shekel', 'woothemes' ),
'JPY' => __( 'Japanese Yen (&yen;)', 'woothemes' ),
'MYR' => __( 'Malaysian Ringgits', 'woothemes' ),
'MXN' => __( 'Mexican Peso (&#36;)', 'woothemes' ),
'NZD' => __( 'New Zealand Dollar (&#36;)', 'woothemes' ),
'NOK' => __( 'Norwegian Krone', 'woothemes' ),
'PHP' => __( 'Philippine Pesos', 'woothemes' ),
'PLN' => __( 'Polish Zloty', 'woothemes' ),
'SGD' => __( 'Singapore Dollar (&#36;)', 'woothemes' ),
'SEK' => __( 'Swedish Krona', 'woothemes' ),
'CHF' => __( 'Swiss Franc', 'woothemes' ),
'TWD' => __( 'Taiwan New Dollars', 'woothemes' ),
'THB' => __( 'Thai Baht', 'woothemes' ),
'TRY' => __( 'Turkish Lira (TL)', 'woothemes' ),
'ZAR' => __( 'South African rand (R)', 'woothemes' ),
))
2011-11-04 18:15:32 +00:00
)
),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Allowed Countries', 'woothemes' ),
'desc' => __( 'These are countries that you are willing to ship to.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_allowed_countries',
'std' => 'all',
'type' => 'select',
2011-11-23 10:08:48 +00:00
'class' => 'chosen_select',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
'options' => array(
'all' => __( 'All Countries', 'woothemes' ),
'specific' => __( 'Specific Countries', 'woothemes' )
2011-08-10 17:11:11 +00:00
)
),
array(
'name' => __( 'Specific Countries', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'desc' => '',
'id' => 'woocommerce_specific_allowed_countries',
'css' => '',
'std' => '',
'type' => 'multi_select_countries'
),
array(
'name' => __( 'Checkout', 'woothemes' ),
2011-11-03 20:59:16 +00:00
'desc' => __( 'Allow users to checkout without signing up for an account', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_enable_guest_checkout',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
array(
'desc' => __( 'Allow users to create an account and login from the checkout page', 'woothemes' ),
'id' => 'woocommerce_enable_signup_and_login_from_checkout',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => ''
2011-08-10 17:11:11 +00:00
),
2011-11-28 16:20:39 +00:00
array(
'desc' => __( '"Ship to same address option" checked by default', 'woothemes' ),
'id' => 'woocommerce_ship_to_same_address',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => ''
),
2011-11-16 10:18:46 +00:00
array(
'desc' => __( 'Show order comments section', 'woothemes' ),
'id' => 'woocommerce_enable_order_comments',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => ''
),
2011-08-10 17:11:11 +00:00
array(
'desc' => __( 'Force <abbr title="Secure Sockets Layer, a computing protocol that ensures the security of data sent via the Internet by using encryption">SSL</abbr>/HTTPS (an SSL Certificate is required)', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_force_ssl_checkout',
'std' => 'no',
'type' => 'checkbox',
2011-11-07 18:37:37 +00:00
'checkboxgroup' => ''
),
array(
'desc' => __( 'Un-force <abbr title="Secure Sockets Layer, a computing protocol that ensures the security of data sent via the Internet by using encryption">SSL</abbr>/HTTPS when leaving the checkout', 'woothemes' ),
'id' => 'woocommerce_unforce_ssl_checkout',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'end'
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Customer Accounts', 'woothemes' ),
'desc' => __( 'Allow unregistered users to register from the My Account page', 'woothemes' ),
'id' => 'woocommerce_enable_myaccount_registration',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
array(
'desc' => __( 'Clear cart when logging out', 'woothemes' ),
'id' => 'woocommerce_clear_cart_on_logout',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => ''
),
array(
'desc' => __( 'Prevent customers from accessing WordPress admin', 'woothemes' ),
'id' => 'woocommerce_lock_down_admin',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'end'
),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Shop Styling', 'woothemes' ),
'desc' => __( 'Enable WooCommerce CSS styles', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_frontend_css',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
2011-08-13 13:57:48 +00:00
),
2011-09-05 09:04:17 +00:00
array(
'desc' => __( 'Enable AJAX add to cart buttons on product archives', 'woothemes' ),
'id' => 'woocommerce_enable_ajax_add_to_cart',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => ''
),
array(
'desc' => __( 'Enable WooCommerce lightbox on the product page', 'woothemes' ),
2011-09-05 09:04:17 +00:00
'id' => 'woocommerce_enable_lightbox',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'end'
2011-09-05 09:04:17 +00:00
),
2011-08-13 13:57:48 +00:00
array(
2011-11-03 20:59:16 +00:00
'name' => __( 'Demo store notice', 'woothemes' ),
'desc' => __( 'Enable the "Demo Store" notice on your site', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_demo_store',
2011-08-10 17:11:11 +00:00
'std' => 'no',
2011-08-13 13:57:48 +00:00
'type' => 'checkbox'
2011-08-10 17:11:11 +00:00
),
2011-11-03 20:59:16 +00:00
2011-11-07 21:52:04 +00:00
array(
'name' => __('File downloads', 'woothemes'),
'desc' => __('Use <code>X-Accel-Redirect</code>/ <code>X-Sendfile</code> to serve downloads (server requires <code>mod_xsendfile</code>)', 'woothemes'),
'id' => 'woocommerce_mod_xsendfile_enabled',
'type' => 'checkbox',
'std' => 'no',
),
array(
'name' => __('Localisation', 'woothemes'),
2011-11-09 12:28:42 +00:00
'desc' => __('Use informal localisation file if it exists', 'woothemes'),
'id' => 'woocommerce_informal_localisation_type',
'type' => 'checkbox',
'std' => 'no',
),
2011-11-03 20:59:16 +00:00
array( 'type' => 'sectionend', 'id' => 'general_options'),
array( 'name' => __( 'ShareThis', 'woothemes' ), 'type' => 'title', 'desc' => '', 'id' => 'share_this' ),
array(
'name' => __( 'ShareThis Publisher ID', 'woothemes' ),
2011-11-03 20:59:16 +00:00
'desc' => sprintf( __( 'Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages.', 'woothemes' ), '<a href="http://sharethis.com/account/">', '</a>' ),
'id' => 'woocommerce_sharethis',
'type' => 'text',
'std' => '',
2011-11-23 10:08:48 +00:00
'css' => 'min-width:300px;',
),
2011-11-03 20:59:16 +00:00
array( 'type' => 'sectionend', 'id' => 'share_this'),
array( 'name' => __( 'Google Analytics', 'woothemes' ), 'type' => 'title', 'desc' => '', 'id' => 'google_analytics' ),
array(
'name' => __('Google Analytics ID', 'woothemes'),
'desc' => __('Log into your google analytics account to find your ID. e.g. <code>UA-XXXXX-X</code>', 'woothemes'),
'id' => 'woocommerce_ga_id',
'type' => 'text',
2011-11-23 10:08:48 +00:00
'css' => 'min-width:300px;',
),
array(
2011-11-03 20:59:16 +00:00
'name' => __('Tracking code', 'woothemes'),
'desc' => __('Add tracking code to your site\'s footer. You don\'t need to enable this if using a 3rd party analytics plugin.', 'woothemes'),
'id' => 'woocommerce_ga_standard_tracking_enabled',
'type' => 'checkbox',
2011-11-03 20:59:16 +00:00
'checkboxgroup' => 'start'
),
array(
2011-11-03 20:59:16 +00:00
'name' => __('Tracking code', 'woothemes'),
'desc' => __('Add eCommerce tracking code to the thankyou page', 'woothemes'),
'id' => 'woocommerce_ga_ecommerce_tracking_enabled',
'type' => 'checkbox',
2011-11-03 20:59:16 +00:00
'checkboxgroup' => 'end'
),
2011-11-03 20:59:16 +00:00
array( 'type' => 'sectionend', 'id' => 'google_analytics'),
)); // End general settings
2011-10-10 21:32:07 +00:00
$shop_page_id = get_option('woocommerce_shop_page_id');
$base_slug = ($shop_page_id > 0 && get_page( $shop_page_id )) ? get_page_uri( $shop_page_id ) : 'shop';
$woocommerce_settings['pages'] = apply_filters('woocommerce_page_settings', array(
array( 'name' => __( 'Page Setup', 'woothemes' ), 'type' => 'title', 'desc' => '', 'id' => 'page_options' ),
2011-08-13 13:57:48 +00:00
array(
'name' => __( 'Shop Base Page', 'woothemes' ),
2011-10-16 20:22:01 +00:00
'desc' => sprintf( __( 'This sets the base page of your shop.', 'woothemes' ), '<a target="_blank" href="options-permalink.php">', '</a>' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_shop_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-13 13:57:48 +00:00
),
2011-10-12 11:17:06 +00:00
array(
'name' => __( 'Base Page Title', 'woothemes' ),
2011-10-16 20:22:01 +00:00
'desc' => __( 'This title to show on the shop base page. Leave blank to use the page title.', 'woothemes' ),
2011-10-12 11:17:06 +00:00
'id' => 'woocommerce_shop_page_title',
'type' => 'text',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
2011-10-24 09:58:10 +00:00
'std' => 'All Products' // Default value for the page title - changed in settings
2011-10-12 11:17:06 +00:00
),
2011-08-10 17:11:11 +00:00
2011-08-13 13:57:48 +00:00
array(
'name' => __( 'Terms page ID', 'woothemes' ),
'desc' => __( 'If you define a "Terms" page the customer will be asked if they accept them when checking out.', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'tip' => '',
'id' => 'woocommerce_terms_page_id',
'std' => '',
2011-11-23 12:02:36 +00:00
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
'type' => 'single_select_page'
2011-08-13 13:57:48 +00:00
),
array(
'name' => __( 'Logout link', 'woothemes' ),
'desc' => sprintf(__( 'Append a logout link to menus containing "My Account"', 'woothemes' ), $base_slug),
'id' => 'woocommerce_menu_logout_link',
'std' => 'yes',
'type' => 'checkbox',
),
2011-10-10 21:32:07 +00:00
array( 'type' => 'sectionend', 'id' => 'page_options' ),
array( 'name' => __( 'Permalinks', 'woothemes' ), 'type' => 'title', 'desc' => '', 'id' => 'permalink_options' ),
array(
'name' => __( 'Taxonomy base page', 'woothemes' ),
'desc' => sprintf(__( 'Prepend shop categories/tags with shop base page (<code>%s</code>)', 'woothemes' ), $base_slug),
'id' => 'woocommerce_prepend_shop_page_to_urls',
'std' => 'no',
'type' => 'checkbox',
),
array(
'name' => __( 'Product base page', 'woothemes' ),
'desc' => sprintf(__( 'Prepend product permalinks with shop base page (<code>%s</code>)', 'woothemes' ), $base_slug),
'id' => 'woocommerce_prepend_shop_page_to_products',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
array(
'name' => __( 'Product base category', 'woothemes' ),
'desc' => __( 'Prepend product permalinks with product category', 'woothemes' ),
'id' => 'woocommerce_prepend_category_to_products',
2011-10-12 11:17:06 +00:00
'std' => 'no',
2011-10-10 21:32:07 +00:00
'type' => 'checkbox',
'checkboxgroup' => 'end'
),
array( 'type' => 'sectionend', 'id' => 'permalink_options' ),
2011-08-13 13:57:48 +00:00
array( 'name' => __( 'Shop Pages', 'woothemes' ), 'type' => 'title', 'desc' => __( 'The following pages need selecting so that WooCommerce knows which are which. These pages should have been created upon installation of the plugin.', 'woothemes' ) ),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Cart Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_cart]', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_cart_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Checkout Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_checkout]', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_checkout_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Pay Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_pay] Parent: "Checkout"', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_pay_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __('Thanks Page', 'woothemes'),
'desc' => __( 'Page contents: [woocommerce_thankyou] Parent: "Checkout"', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_thanks_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'My Account Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_my_account]', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_myaccount_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Edit Address Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_edit_address] Parent: "My Account"', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_edit_address_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'View Order Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_view_order] Parent: "My Account"', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_view_order_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Change Password Page', 'woothemes' ),
'desc' => __( 'Page contents: [woocommerce_change_password] Parent: "My Account"', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_change_password_page_id',
'type' => 'single_select_page',
2011-11-23 12:02:36 +00:00
'std' => '',
'class' => 'chosen_select_nostd',
'css' => 'min-width:300px;',
2011-08-10 17:11:11 +00:00
),
2011-09-15 12:59:06 +00:00
array( 'type' => 'sectionend', 'id' => 'page_options'),
)); // End pages settings
$woocommerce_settings['catalog'] = apply_filters('woocommerce_catalog_settings', array(
array( 'name' => __( 'Catalog Options', 'woothemes' ), 'type' => 'title','desc' => '', 'id' => 'catalog_options' ),
2011-08-10 17:11:11 +00:00
2011-10-07 19:27:10 +00:00
array(
'name' => __( 'Subcategories', 'woothemes' ),
'desc' => __( 'Show subcategories on category pages', 'woothemes' ),
2011-10-07 19:27:10 +00:00
'id' => 'woocommerce_show_subcategories',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
array(
'desc' => __( 'Show subcategories on the shop page', 'woothemes' ),
2011-10-07 19:27:10 +00:00
'id' => 'woocommerce_shop_show_subcategories',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => ''
),
array(
'desc' => __( 'When showing subcategories, hide products', 'woothemes' ),
'id' => 'woocommerce_hide_products_when_showing_subcategories',
'std' => 'no',
'type' => 'checkbox',
2011-10-07 19:27:10 +00:00
'checkboxgroup' => 'end'
),
2011-08-13 13:57:48 +00:00
array(
'name' => __( 'Product fields', 'woothemes' ),
'desc' => __( 'Enable the SKU field for products', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_enable_sku',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
2011-08-10 17:11:11 +00:00
array(
'desc' => __( 'Enable the weight field for products', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_enable_weight',
'std' => 'yes',
'type' => 'checkbox',
2011-10-08 11:57:04 +00:00
'checkboxgroup' => ''
),
array(
'desc' => __( 'Enable the dimension fields for products', 'woothemes' ),
'id' => 'woocommerce_enable_dimensions',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => ''
),
array(
'desc' => __( 'Show weight and dimension fields in product attributes tab', 'woothemes' ),
'id' => 'woocommerce_enable_dimension_product_attributes',
'std' => 'yes',
'type' => 'checkbox',
2011-08-13 13:57:48 +00:00
'checkboxgroup' => 'end'
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Weight Unit', 'woothemes' ),
'desc' => __( 'This controls what unit you will define weights in.', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_weight_unit',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:150px;',
2011-08-13 13:57:48 +00:00
'std' => 'GBP',
2011-08-10 17:11:11 +00:00
'type' => 'select',
2011-08-13 13:57:48 +00:00
'options' => array(
'kg' => __( 'kg', 'woothemes' ),
'lbs' => __( 'lbs', 'woothemes' )
2011-08-10 17:11:11 +00:00
)
),
2011-10-08 11:57:04 +00:00
array(
'name' => __( 'Dimensions Unit', 'woothemes' ),
'desc' => __( 'This controls what unit you will define lengths in.', 'woothemes' ),
'id' => 'woocommerce_dimension_unit',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:150px;',
2011-10-08 11:57:04 +00:00
'std' => 'GBP',
'type' => 'select',
'options' => array(
'cm' => __( 'cm', 'woothemes' ),
'in' => __( 'in', 'woothemes' )
)
),
2011-08-10 17:11:11 +00:00
2011-08-18 23:14:35 +00:00
array(
'name' => __( 'Cart redirect', 'woothemes' ),
'desc' => __( 'Redirect to cart after adding a product to the cart (on single product pages)', 'woothemes' ),
2011-08-18 23:14:35 +00:00
'id' => 'woocommerce_cart_redirect_after_add',
'std' => 'no',
'type' => 'checkbox'
),
array( 'type' => 'sectionend', 'id' => 'catalog_options' ),
2011-08-13 13:57:48 +00:00
array( 'name' => __( 'Pricing Options', 'woothemes' ), 'type' => 'title','desc' => '', 'id' => 'pricing_options' ),
2011-08-13 13:57:48 +00:00
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Currency Position', 'woothemes' ),
'desc' => __( 'This controls the position of the currency symbol.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'tip' => '',
'id' => 'woocommerce_currency_pos',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:150px;',
2011-08-10 17:11:11 +00:00
'std' => 'left',
'type' => 'select',
'options' => array(
'left' => __( 'Left', 'woothemes' ),
'right' => __( 'Right', 'woothemes' ),
'left_space' => __( 'Left (with space)', 'woothemes' ),
'right_space' => __( 'Right (with space)', 'woothemes' )
2011-08-10 17:11:11 +00:00
)
),
array(
'name' => __( 'Thousand separator', 'woothemes' ),
'desc' => __( 'This sets the thousand separator of displayed prices.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'tip' => '',
'id' => 'woocommerce_price_thousand_sep',
'css' => 'width:30px;',
'std' => ',',
'type' => 'text',
),
array(
'name' => __( 'Decimal separator', 'woothemes' ),
'desc' => __( 'This sets the decimal separator of displayed prices.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'tip' => '',
'id' => 'woocommerce_price_decimal_sep',
'css' => 'width:30px;',
'std' => '.',
'type' => 'text',
),
array(
'name' => __( 'Number of decimals', 'woothemes' ),
'desc' => __( 'This sets the number of decimal points shown in displayed prices.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'tip' => '',
'id' => 'woocommerce_price_num_decimals',
'css' => 'width:30px;',
'std' => '2',
'type' => 'text',
),
2011-09-09 15:09:22 +00:00
array( 'type' => 'sectionend', 'id' => 'pricing_options' ),
2011-11-16 09:53:29 +00:00
array( 'name' => __( 'Image Options', 'woothemes' ), 'type' => 'title','desc' => sprintf(__('These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to <a href="%s">regenerate your thumbnails</a>.', 'woothemes'), 'http://wordpress.org/extend/plugins/regenerate-thumbnails/'), 'id' => 'image_options' ),
array(
'name' => __( 'Catalog Images', 'woothemes' ),
'desc' => __('This size is usually used in product listings', 'woothemes'),
'id' => 'woocommerce_catalog_image',
'css' => '',
'type' => 'image_width',
'std' => '150'
),
array(
'name' => __( 'Single Product Image', 'woothemes' ),
'desc' => __('This is the size used by the main image on the product page.', 'woothemes'),
'id' => 'woocommerce_single_image',
'css' => '',
'type' => 'image_width',
'std' => '300'
),
array(
'name' => __( 'Product Thumbnails', 'woothemes' ),
'desc' => __('This size is usually used for the gallery of images on the product page.', 'woothemes'),
'id' => 'woocommerce_thumbnail_image',
'css' => '',
'type' => 'image_width',
'std' => '90'
),
array( 'type' => 'sectionend', 'id' => 'image_options' ),
2011-08-10 17:11:11 +00:00
)); // End catalog settings
$woocommerce_settings['inventory'] = apply_filters('woocommerce_inventory_settings', array(
array( 'name' => __( 'Inventory Options', 'woothemes' ), 'type' => 'title','desc' => '', 'id' => 'inventory_options' ),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Manage stock', 'woothemes' ),
'desc' => __( 'Enable stock management', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_manage_stock',
'std' => 'yes',
'type' => 'checkbox'
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Notifications', 'woothemes' ),
'desc' => __( 'Enable low stock notifications', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_notify_low_stock',
2011-08-10 17:11:11 +00:00
'std' => 'yes',
2011-08-13 13:57:48 +00:00
'type' => 'checkbox',
'checkboxgroup' => 'start'
2011-08-10 17:11:11 +00:00
),
array(
'desc' => __( 'Enable out of stock notifications', 'woothemes' ),
2011-08-13 13:57:48 +00:00
'id' => 'woocommerce_notify_no_stock',
2011-08-10 17:11:11 +00:00
'std' => 'yes',
2011-08-13 13:57:48 +00:00
'type' => 'checkbox',
'checkboxgroup' => 'end'
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Low stock threshold', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'desc' => '',
'tip' => '',
'id' => 'woocommerce_notify_low_stock_amount',
2011-11-23 12:02:36 +00:00
'css' => 'width:30px;',
2011-08-10 17:11:11 +00:00
'type' => 'text',
'std' => '2'
),
array(
'name' => __( 'Out of stock threshold', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'desc' => '',
'tip' => '',
'id' => 'woocommerce_notify_no_stock_amount',
2011-11-23 12:02:36 +00:00
'css' => 'width:30px;',
2011-08-10 17:11:11 +00:00
'type' => 'text',
'std' => '0'
),
2011-08-17 23:42:07 +00:00
array(
'name' => __( 'Out of stock visibility', 'woothemes' ),
2011-08-17 23:42:07 +00:00
'desc' => __('Hide out of stock items from the catalog', 'woothemes'),
'id' => 'woocommerce_hide_out_of_stock_items',
'std' => 'no',
'type' => 'checkbox'
),
2011-09-09 15:09:22 +00:00
array( 'type' => 'sectionend', 'id' => 'inventory_options'),
)); // End inventory settings
$woocommerce_settings['shipping'] = apply_filters('woocommerce_shipping_settings', array(
array( 'name' => __( 'Shipping Options', 'woothemes' ), 'type' => 'title','desc' => '', 'id' => 'shipping_options' ),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Shipping calculations', 'woothemes' ),
'desc' => __( 'Enable shipping', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_calc_shipping',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Shipping calculations', 'woothemes' ),
'desc' => __( 'Enable the shipping calculator on the cart page', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_enable_shipping_calc',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'end'
2011-08-10 17:11:11 +00:00
),
array(
'name' => __( 'Shipping destination', 'woothemes' ),
'desc' => __( 'Only ship to the users billing address', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_ship_to_billing_address_only',
'std' => 'no',
2011-08-13 13:57:48 +00:00
'type' => 'checkbox'
2011-08-10 17:11:11 +00:00
),
array( 'type' => 'sectionend', 'id' => 'shipping_options' ),
)); // End shipping settings
$woocommerce_settings['tax'] = apply_filters('woocommerce_tax_settings', array(
2011-08-19 20:11:04 +00:00
array( 'name' => __( 'Tax Options', 'woothemes' ), 'type' => 'title','desc' => '', 'id' => 'tax_options' ),
array(
'name' => __( 'Tax calculations', 'woothemes' ),
'desc' => __( 'Enable taxes and tax calculations', 'woothemes' ),
'id' => 'woocommerce_calc_taxes',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
2011-11-22 14:22:35 +00:00
array(
'desc' => __( 'Catalog Prices include tax', 'woothemes' ),
'id' => 'woocommerce_prices_include_tax',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => ''
),
array(
'desc' => __( 'Round tax at subtotal level, instead of per line', 'woothemes' ),
'id' => 'woocommerce_tax_round_at_subtotal',
'std' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'end'
),
array(
'name' => __( 'Tax display (cart totals)', 'woothemes' ),
'desc' => __( 'Always display cart contents excluding tax', 'woothemes' ),
'id' => 'woocommerce_display_cart_prices_excluding_tax',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'start'
),
array(
'desc' => __( 'Always display cart totals excluding tax', 'woothemes' ),
'id' => 'woocommerce_display_totals_excluding_tax',
'std' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'end'
),
2011-08-10 17:11:11 +00:00
array(
'name' => __( 'Additional Tax classes', 'woothemes' ),
'desc' => __( 'List 1 per line. This is in addition to the default <em>Standard Rate</em>.', 'woothemes' ),
'tip' => __( 'List product and shipping tax classes here, e.g. Zero Tax, Reduced Rate.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_tax_classes',
'css' => 'width:100%; height: 75px;',
'type' => 'textarea',
'std' => "Reduced Rate\nZero Rate"
),
array(
'name' => __( 'Tax rates', 'woothemes' ),
'desc' => __( 'All fields are required.', 'woothemes' ),
'tip' => __( 'To avoid rounding errors, insert tax rates with 4 decimal places.', 'woothemes' ),
2011-08-10 17:11:11 +00:00
'id' => 'woocommerce_tax_rates',
'css' => 'min-width:50px;',
'type' => 'tax_rates',
'std' => ''
),
array( 'type' => 'sectionend', 'id' => 'tax_options' ),
2011-08-13 13:57:48 +00:00
)); // End tax settings
2011-08-13 13:57:48 +00:00
2011-10-25 12:54:16 +00:00
$woocommerce_settings['email'] = apply_filters('woocommerce_email_settings', array(
array( 'name' => __( 'Email Recipient Options', 'woothemes' ), 'type' => 'title', '', 'id' => 'email_recipient_options' ),
array(
'name' => __( 'New order notifications', 'woothemes' ),
'desc' => __( 'The recipient of new order emails. Defaults to the admin email.', 'woothemes' ),
'id' => 'woocommerce_new_order_email_recipient',
'type' => 'text',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
'std' => esc_attr(get_option('admin_email'))
),
array(
'name' => __( 'Inventory notifications', 'woothemes' ),
'desc' => __( 'The recipient of stock emails. Defaults to the admin email.', 'woothemes' ),
'id' => 'woocommerce_stock_email_recipient',
'type' => 'text',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
'std' => esc_attr(get_option('admin_email'))
),
array( 'type' => 'sectionend', 'id' => 'email_recipient_options' ),
array( 'name' => __( 'Email Sender Options', 'woothemes' ), 'type' => 'title', '', 'id' => 'email_options' ),
2011-10-25 12:54:16 +00:00
array(
'name' => __( '"From" name', 'woothemes' ),
'desc' => __( 'The sender name for WooCommerce emails.', 'woothemes' ),
'id' => 'woocommerce_email_from_name',
'type' => 'text',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
2011-10-25 12:54:16 +00:00
'std' => esc_attr(get_bloginfo('name'))
),
array(
'name' => __( '"From" email address', 'woothemes' ),
'desc' => __( 'The sender email address for WooCommerce emails.', 'woothemes' ),
'id' => 'woocommerce_email_from_address',
'type' => 'text',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
2011-10-25 12:54:16 +00:00
'std' => get_option('admin_email')
),
array( 'type' => 'sectionend', 'id' => 'email_options' ),
2011-10-30 00:00:32 +00:00
array( 'name' => __( 'Email template', 'woothemes' ), 'type' => 'title', 'desc' => sprintf(__('This section lets you customise the WooCommerce emails. <a href="%s" target="_blank">Click here to preview your email template</a>. For more advanced control copy <code>woocommerce/templates/emails/</code> to <code>yourtheme/woocommmerce/emails/</code>.', 'woothemes'), wp_nonce_url(admin_url('?preview_woocommerce_mail=true'), 'preview-mail')), 'id' => 'email_template_options' ),
2011-10-25 12:54:16 +00:00
2011-10-26 17:13:29 +00:00
array(
'name' => __( 'Header image', 'woothemes' ),
'desc' => sprintf(__( 'Enter a URL to an image you want to show in the email\'s header. Upload your image using the <a href="%s">media uploader</a>.', 'woothemes' ), admin_url('media-new.php')),
'id' => 'woocommerce_email_header_image',
'type' => 'text',
2011-11-23 12:02:36 +00:00
'css' => 'min-width:300px;',
2011-10-26 17:13:29 +00:00
'std' => ''
),
2011-10-25 12:54:16 +00:00
array(
'name' => __( 'Email footer text', 'woothemes' ),
'desc' => __( 'The text to appear in the footer of WooCommerce emails.', 'woothemes' ),
'id' => 'woocommerce_email_footer_text',
2011-10-26 13:11:20 +00:00
'css' => 'width:100%; height: 75px;',
'type' => 'textarea',
2011-10-25 12:54:16 +00:00
'std' => get_bloginfo('name') . ' - ' . __('Powered by WooCommerce', 'woothemes')
),
array(
'name' => __( 'Base colour', 'woothemes' ),
'desc' => __( 'The base colour for WooCommerce email templates. Default <code>#557da1</code>.', 'woothemes' ),
'id' => 'woocommerce_email_base_color',
'type' => 'color',
2011-11-23 12:02:36 +00:00
'css' => 'width:6em;',
2011-10-25 12:54:16 +00:00
'std' => '#557da1'
),
array(
'name' => __( 'Background colour', 'woothemes' ),
'desc' => __( 'The background colour for WooCommerce email templates. Default <code>#eeeeee</code>.', 'woothemes' ),
'id' => 'woocommerce_email_background_color',
'type' => 'color',
2011-11-23 12:02:36 +00:00
'css' => 'width:6em;',
2011-10-25 12:54:16 +00:00
'std' => '#eeeeee'
),
array(
'name' => __( 'Email body background colour', 'woothemes' ),
'desc' => __( 'The main body background colour. Default <code>#fdfdfd</code>.', 'woothemes' ),
'id' => 'woocommerce_email_body_background_color',
'type' => 'color',
2011-11-23 12:02:36 +00:00
'css' => 'width:6em;',
2011-10-25 12:54:16 +00:00
'std' => '#fdfdfd'
),
array(
'name' => __( 'Email body text colour', 'woothemes' ),
'desc' => __( 'The main body text colour. Default <code>#505050</code>.', 'woothemes' ),
'id' => 'woocommerce_email_text_color',
'type' => 'color',
2011-11-23 12:02:36 +00:00
'css' => 'width:6em;',
2011-10-25 12:54:16 +00:00
'std' => '#505050'
),
array( 'type' => 'sectionend', 'id' => 'email_template_options' ),
)); // End email settings
2011-08-13 13:57:48 +00:00
/**
* Settings page
*
* Handles the display of the main woocommerce settings page in admin.
2011-08-13 13:57:48 +00:00
*/
if (!function_exists('woocommerce_settings')) {
2011-08-13 13:57:48 +00:00
function woocommerce_settings() {
global $woocommerce, $woocommerce_settings;
$current_tab = (isset($_GET['tab'])) ? $_GET['tab'] : 'general';
if( isset( $_POST ) && $_POST ) :
if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woocommerce-settings' ) ) die( __( 'Action failed. Please refresh the page and retry.', 'woothemes' ) );
switch ( $current_tab ) :
case "general" :
case "pages" :
case "catalog" :
case "inventory" :
case "shipping" :
case "tax" :
2011-10-25 12:54:16 +00:00
case "email" :
woocommerce_update_options( $woocommerce_settings[$current_tab] );
break;
endswitch;
do_action( 'woocommerce_update_options' );
do_action( 'woocommerce_update_options_' . $current_tab );
flush_rewrite_rules( false );
2011-11-24 15:52:32 +00:00
wp_redirect( add_query_arg( 'subtab', esc_attr(str_replace('#', '', $_POST['subtab'])), add_query_arg( 'saved', 'true', admin_url( 'admin.php?page=woocommerce&tab=' . $current_tab ) )) );
endif;
if (isset($_GET['saved']) && $_GET['saved']) :
echo '<div id="message" class="updated fade"><p><strong>' . __( 'Your settings have been saved.', 'woothemes' ) . '</strong></p></div>';
flush_rewrite_rules( false );
endif;
// Install/page installer
$install_complete = false;
$show_page_installer = false;
// Add pages button
if (isset($_GET['install_woocommerce_pages']) && $_GET['install_woocommerce_pages']) :
woocommerce_create_pages();
update_option('skip_install_woocommerce_pages', 1);
$install_complete = true;
// Skip button
elseif (isset($_GET['skip_install_woocommerce_pages']) && $_GET['skip_install_woocommerce_pages']) :
update_option('skip_install_woocommerce_pages', 1);
$install_complete = true;
// If we have just activated WooCommerce...
elseif (isset($_GET['installed']) && $_GET['installed']) :
flush_rewrite_rules( false );
if (get_option('woocommerce_shop_page_id')) :
$install_complete = true;
else :
$show_page_installer = true;
endif;
// If we havn't just installed, but page installed has not been skipped and shop page does not exist...
elseif (!get_option('skip_install_woocommerce_pages') && !get_option('woocommerce_shop_page_id')) :
$show_page_installer = true;
endif;
if ($show_page_installer) :
echo '<div id="message" class="updated fade">
<p><strong>' . __( 'Welcome to WooCommerce!', 'woothemes' ) . '</strong></p>
<p>'. __('WooCommerce requires several WordPress pages containing shortcodes in order to work correctly; these include Shop, Cart, Checkout and My Account. To add these pages automatically please click the \'Automatically add pages\' button below, otherwise you can set them up manually. See the \'Pages\' tab in settings for more information.', 'woothemes') .'</p>
<p><a href="'.remove_query_arg('installed', add_query_arg('install_woocommerce_pages', 'true')).'" class="button button-primary">'. __('Automatically add pages', 'woothemes') .'</a> <a href="'.remove_query_arg('installed', add_query_arg('skip_install_woocommerce_pages', 'true')).'" class="button">'. __('Skip setup', 'woothemes') .'</a></p>
</div>';
elseif ($install_complete) :
echo '<div id="message" class="updated fade">
<p style="float:right;">' . __( 'Like WooCommerce? <a href="http://wordpress.org/extend/plugins/woocommerce/">Support us by leaving a rating!</a>', 'woothemes' ) . '</p>
<p><strong>' . __( 'WooCommerce has been installed and setup. Enjoy :)', 'woothemes' ) . '</strong></p>
</div>';
flush_rewrite_rules( false );
endif;
2011-08-13 13:57:48 +00:00
?>
<div class="wrap woocommerce">
<form method="post" id="mainform" action="">
<div class="icon32 icon32-woocommerce-settings" id="icon-woocommerce"><br></div><h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
<?php
$tabs = array(
'general' => __( 'General', 'woothemes' ),
'pages' => __( 'Pages', 'woothemes' ),
'catalog' => __( 'Catalog', 'woothemes' ),
'inventory' => __( 'Inventory', 'woothemes' ),
'shipping' => __( 'Shipping', 'woothemes' ),
'tax' => __( 'Tax', 'woothemes'),
'shipping_methods' => __( 'Shipping Methods', 'woothemes' ),
2011-10-25 12:54:16 +00:00
'payment_gateways' => __( 'Payment Gateways', 'woothemes' ),
'email' => __( 'Emails', 'woothemes' ),
);
$tabs = apply_filters('woocommerce_settings_tabs_array', $tabs);
foreach ($tabs as $name => $label) :
echo '<a href="' . admin_url( 'admin.php?page=woocommerce&tab=' . $name ) . '" class="nav-tab ';
if( $current_tab==$name ) echo 'nav-tab-active';
echo '">' . $label . '</a>';
endforeach;
2011-10-05 15:25:12 +00:00
do_action( 'woocommerce_settings_tabs' );
?>
</h2>
<?php wp_nonce_field( 'woocommerce-settings', '_wpnonce', true, true ); ?>
<?php
switch ($current_tab) :
case "general" :
case "pages" :
case "catalog" :
case "inventory" :
case "shipping" :
case "tax" :
2011-10-25 12:54:16 +00:00
case "email" :
woocommerce_admin_fields( $woocommerce_settings[$current_tab] );
break;
case "shipping_methods" :
$links = array();
foreach ( $woocommerce->shipping->shipping_methods as $method ) :
$title = ($method->method_title) ? ucwords($method->method_title) : ucwords($method->id);
$links[] = '<a href="#shipping-'.$method->id.'">'.$title.'</a>';
endforeach;
echo '<div class="subsubsub_section"><ul class="subsubsub"><li>' . implode(' | </li><li>', $links) . '</li></ul><br class="clear" />';
foreach ($woocommerce->shipping->shipping_methods as $method) :
echo '<div class="section" id="shipping-'.$method->id.'">';
$method->admin_options();
echo '</div>';
endforeach;
echo '</div>';
break;
case "payment_gateways" :
$links = array();
foreach ($woocommerce->payment_gateways->payment_gateways() as $gateway) :
$title = ( isset( $gateway->method_title ) && $gateway->method_title) ? ucwords($gateway->method_title) : ucwords($gateway->id);
$links[] = '<a href="#gateway-'.$gateway->id.'">'.$title.'</a>';
endforeach;
echo '<div class="subsubsub_section"><ul class="subsubsub"><li>' . implode(' | </li><li>', $links) . '</li></ul><br class="clear" />';
foreach ( $woocommerce->payment_gateways->payment_gateways() as $gateway ) :
echo '<div class="section" id="gateway-'.$gateway->id.'">';
$gateway->admin_options();
echo '</div>';
endforeach;
echo '</div>';
break;
default :
do_action( 'woocommerce_settings_tabs_' . $current_tab );
break;
endswitch;
?>
2011-11-24 15:52:32 +00:00
<p class="submit">
<input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'woothemes' ); ?>" />
<input type="hidden" name="subtab" id="last_tab" />
</p>
2011-08-13 13:57:48 +00:00
</form>
<script type="text/javascript">
// Subsubsub tabs
jQuery('ul.subsubsub li a:eq(0)').addClass('current');
jQuery('.subsubsub_section .section:gt(0)').hide();
jQuery('ul.subsubsub li a').click(function(){
jQuery('a', jQuery(this).closest('ul.subsubsub')).removeClass('current');
jQuery(this).addClass('current');
jQuery('.section', jQuery(this).closest('.subsubsub_section')).hide();
jQuery( jQuery(this).attr('href') ).show();
2011-11-24 15:52:32 +00:00
jQuery('#last_tab').val( jQuery(this).attr('href') );
return false;
});
2011-11-24 15:52:32 +00:00
<?php if (isset($_GET['subtab']) && $_GET['subtab']) echo 'jQuery("ul.subsubsub li a[href=#'.$_GET['subtab'].']").click();'; ?>
// Countries
jQuery('select#woocommerce_allowed_countries').change(function(){
if (jQuery(this).val()=="specific") {
2011-11-23 10:08:48 +00:00
jQuery(this).parent().parent().next('tr').show();
} else {
2011-11-23 10:08:48 +00:00
jQuery(this).parent().parent().next('tr').hide();
}
}).change();
2011-10-25 12:54:16 +00:00
// Color picker
jQuery('.colorpick').each(function(){
jQuery('.colorpickdiv', jQuery(this).parent()).farbtastic(this);
jQuery(this).click(function() {
if ( jQuery(this).val() == "" ) jQuery(this).val('#');
jQuery('.colorpickdiv', jQuery(this).parent() ).show();
});
});
jQuery(document).mousedown(function(){
jQuery('.colorpickdiv').hide();
});
// Edit prompt
jQuery(function(){
var changed = false;
jQuery('input, textarea, select, checkbox').change(function(){
changed = true;
});
jQuery('.woo-nav-tab-wrapper a').click(function(){
if (changed) {
window.onbeforeunload = function() {
return '<?php echo __( 'The changes you made will be lost if you navigate away from this page.', 'woothemes' ); ?>';
}
} else {
window.onbeforeunload = '';
}
});
jQuery('.submit input').click(function(){
window.onbeforeunload = '';
});
});
// Chosen selects
2011-11-23 10:08:48 +00:00
jQuery("select.chosen_select").chosen();
2011-11-23 12:02:36 +00:00
jQuery("select.chosen_select_nostd").chosen({
allow_single_deselect: 'true'
});
</script>
2011-08-13 13:57:48 +00:00
</div>
<?php
}
2011-08-15 16:48:24 +00:00
}