ID; if ( $terms = wp_get_object_terms( $post->ID, 'product_type' ) ) { $product_type = sanitize_title( current( $terms )->name ); } else { $product_type = apply_filters( 'default_product_type', 'simple' ); } $product_type_selector = apply_filters( 'product_type_selector', array( 'simple' => __( 'Simple product', 'woocommerce' ), 'grouped' => __( 'Grouped product', 'woocommerce' ), 'external' => __( 'External/Affiliate product', 'woocommerce' ), 'variable' => __( 'Variable product', 'woocommerce' ) ), $product_type ); $type_box = ''; $product_type_options = apply_filters( 'product_type_options', array( 'virtual' => array( 'id' => '_virtual', 'wrapper_class' => 'show_if_simple', 'label' => __( 'Virtual', 'woocommerce' ), 'description' => __( 'Virtual products are intangible and aren\'t shipped.', 'woocommerce' ), 'default' => 'no' ), 'downloadable' => array( 'id' => '_downloadable', 'wrapper_class' => 'show_if_simple', 'label' => __( 'Downloadable', 'woocommerce' ), 'description' => __( 'Downloadable products give access to a file upon purchase.', 'woocommerce' ), 'default' => 'no' ) ) ); foreach ( $product_type_options as $key => $option ) { $selected_value = get_post_meta( $post->ID, '_' . $key, true ); if ( '' == $selected_value && isset( $option['default'] ) ) { $selected_value = $option['default']; } $type_box .= ''; } ?>
'; // SKU if ( wc_product_sku_enabled() ) { woocommerce_wp_text_input( array( 'id' => '_sku', 'label' => '' . __( 'SKU', 'woocommerce' ) . '', 'desc_tip' => 'true', 'description' => __( 'SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased.', 'woocommerce' ) ) ); } else { echo ''; } do_action( 'woocommerce_product_options_sku' ); echo '
'; echo '
'; // External URL woocommerce_wp_text_input( array( 'id' => '_product_url', 'label' => __( 'Product URL', 'woocommerce' ), 'placeholder' => 'http://', 'description' => __( 'Enter the external URL to the product.', 'woocommerce' ) ) ); // Button text woocommerce_wp_text_input( array( 'id' => '_button_text', 'label' => __( 'Button text', 'woocommerce' ), 'placeholder' => _x('Buy product', 'placeholder', 'woocommerce'), 'description' => __( 'This text will be shown on the button linking to the external product.', 'woocommerce' ) ) ); echo '
'; echo '
'; // Price woocommerce_wp_text_input( array( 'id' => '_regular_price', 'label' => __( 'Regular Price', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ')', 'data_type' => 'price' ) ); // Special Price woocommerce_wp_text_input( array( 'id' => '_sale_price', 'data_type' => 'price', 'label' => __( 'Sale Price', 'woocommerce' ) . ' ('.get_woocommerce_currency_symbol().')', 'description' => '' . __( 'Schedule', 'woocommerce' ) . '' ) ); // Special Price date range $sale_price_dates_from = ( $date = get_post_meta( $thepostid, '_sale_price_dates_from', true ) ) ? date_i18n( 'Y-m-d', $date ) : ''; $sale_price_dates_to = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'Y-m-d', $date ) : ''; echo '

'. __( 'Cancel', 'woocommerce' ) .'

'; do_action( 'woocommerce_product_options_pricing' ); echo '
'; echo '
'; ?>
ID, '_downloadable_files', true ); if ( $downloadable_files ) { foreach ( $downloadable_files as $key => $file ) { include( 'views/html-product-download.php' ); } } ?>
  [?] [?]  
'_download_limit', 'label' => __( 'Download Limit', 'woocommerce' ), 'placeholder' => __( 'Unlimited', 'woocommerce' ), 'description' => __( 'Leave blank for unlimited re-downloads.', 'woocommerce' ), 'type' => 'number', 'custom_attributes' => array( 'step' => '1', 'min' => '0' ) ) ); // Expirey woocommerce_wp_text_input( array( 'id' => '_download_expiry', 'label' => __( 'Download Expiry', 'woocommerce' ), 'placeholder' => __( 'Never', 'woocommerce' ), 'description' => __( 'Enter the number of days before a download link expires, or leave blank.', 'woocommerce' ), 'type' => 'number', 'custom_attributes' => array( 'step' => '1', 'min' => '0' ) ) ); // Download Type woocommerce_wp_select( array( 'id' => '_download_type', 'label' => __( 'Download Type', 'woocommerce' ), 'description' => sprintf( __( 'Choose a download type - this controls the schema.', 'woocommerce' ), 'http://schema.org/' ), 'options' => array( '' => __( 'Standard Product', 'woocommerce' ), 'application' => __( 'Application/Software', 'woocommerce' ), 'music' => __( 'Music', 'woocommerce' ), ) ) ); do_action( 'woocommerce_product_options_downloads' ); echo '
'; if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) { echo '
'; // Tax woocommerce_wp_select( array( 'id' => '_tax_status', 'label' => __( 'Tax Status', 'woocommerce' ), 'options' => array( 'taxable' => __( 'Taxable', 'woocommerce' ), 'shipping' => __( 'Shipping only', 'woocommerce' ), 'none' => _x( 'None', 'Tax status', 'woocommerce' ) ) ) ); $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); $classes_options = array(); $classes_options[''] = __( 'Standard', 'woocommerce' ); if ( $tax_classes ) { foreach ( $tax_classes as $class ) { $classes_options[ sanitize_title( $class ) ] = esc_html( $class ); } } woocommerce_wp_select( array( 'id' => '_tax_class', 'label' => __( 'Tax Class', 'woocommerce' ), 'options' => $classes_options ) ); do_action( 'woocommerce_product_options_tax' ); echo '
'; } do_action( 'woocommerce_product_options_general_product_data' ); ?>
'; if ( 'yes' == get_option( 'woocommerce_manage_stock' ) ) { // manage stock woocommerce_wp_checkbox( array( 'id' => '_manage_stock', 'wrapper_class' => 'show_if_simple show_if_variable', 'label' => __( 'Manage stock?', 'woocommerce' ), 'description' => __( 'Enable stock management at product level', 'woocommerce' ) ) ); do_action( 'woocommerce_product_options_stock' ); echo '
'; // Stock woocommerce_wp_text_input( array( 'id' => '_stock', 'label' => __( 'Stock Qty', 'woocommerce' ), 'desc_tip' => true, 'description' => __( 'Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level.', 'woocommerce' ), 'type' => 'number', 'custom_attributes' => array( 'step' => 'any' ) ) ); // Backorders? woocommerce_wp_select( array( 'id' => '_backorders', 'label' => __( 'Allow Backorders?', 'woocommerce' ), 'options' => array( 'no' => __( 'Do not allow', 'woocommerce' ), 'notify' => __( 'Allow, but notify customer', 'woocommerce' ), 'yes' => __( 'Allow', 'woocommerce' ) ), 'desc_tip' => true, 'description' => __( 'If managing stock, this controls whether or not backorders are allowed. If enabled, stock quantity can go below 0.', 'woocommerce' ) ) ); do_action( 'woocommerce_product_options_stock_fields' ); echo '
'; } // Stock status woocommerce_wp_select( array( 'id' => '_stock_status', 'wrapper_class' => 'hide_if_variable', 'label' => __( 'Stock status', 'woocommerce' ), 'options' => array( 'instock' => __( 'In stock', 'woocommerce' ), 'outofstock' => __( 'Out of stock', 'woocommerce' ) ), 'desc_tip' => true, 'description' => __( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.', 'woocommerce' ) ) ); do_action( 'woocommerce_product_options_stock_status' ); echo '
'; echo '
'; // Individual product woocommerce_wp_checkbox( array( 'id' => '_sold_individually', 'wrapper_class' => 'show_if_simple show_if_variable', 'label' => __( 'Sold Individually', 'woocommerce' ), 'description' => __( 'Enable this to only allow one of this item to be bought in a single order', 'woocommerce' ) ) ); do_action( 'woocommerce_product_options_sold_individually' ); echo '
'; do_action( 'woocommerce_product_options_inventory_product_data' ); ?>
'; // Weight if ( wc_product_weight_enabled() ) { woocommerce_wp_text_input( array( 'id' => '_weight', 'label' => __( 'Weight', 'woocommerce' ) . ' (' . get_option( 'woocommerce_weight_unit' ) . ')', 'placeholder' => wc_format_localized_decimal( 0 ), 'desc_tip' => 'true', 'description' => __( 'Weight in decimal form', 'woocommerce' ), 'type' => 'text', 'data_type' => 'decimal' ) ); } // Size fields if ( wc_product_dimensions_enabled() ) { ?>

'; echo '
'; // Shipping Class $classes = get_the_terms( $thepostid, 'product_shipping_class' ); if ( $classes && ! is_wp_error( $classes ) ) { $current_shipping_class = current( $classes )->term_id; } else { $current_shipping_class = ''; } $args = array( 'taxonomy' => 'product_shipping_class', 'hide_empty' => 0, 'show_option_none' => __( 'No shipping class', 'woocommerce' ), 'name' => 'product_shipping_class', 'id' => 'product_shipping_class', 'selected' => $current_shipping_class, 'class' => 'select short' ); ?>

'; ?>

attribute_name ); // Ensure it exists if ( ! taxonomy_exists( $attribute_taxonomy_name ) ) { continue; } $i++; // Get product data values for current taxonomy - this contains ordering and visibility data if ( isset( $attributes[ sanitize_title( $attribute_taxonomy_name ) ] ) ) { $attribute = $attributes[ sanitize_title( $attribute_taxonomy_name ) ]; } $position = empty( $attribute['position'] ) ? 0 : absint( $attribute['position'] ); // Get terms of this taxonomy associated with current product $post_terms = wp_get_post_terms( $thepostid, $attribute_taxonomy_name ); // Any set? $has_terms = ( is_wp_error( $post_terms ) || ! $post_terms || sizeof( $post_terms ) == 0 ) ? 0 : 1; ?>
>

attribute_label ? $tax->attribute_label : $tax->attribute_name, $tax->attribute_name ); ?>

attribute_label ? $tax->attribute_label : $tax->attribute_name; ?> attribute_type ) : ?> attribute_type ) : ?>

' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

'; // List Grouped products $post_parents = array(); $post_parents[''] = __( 'Choose a grouped product…', 'woocommerce' ); if ( $grouped_term = get_term_by( 'slug', 'grouped', 'product_type' ) ) { $posts_in = array_unique( (array) get_objects_in_term( $grouped_term->term_id, 'product_type' ) ); if ( sizeof( $posts_in ) > 0 ) { $args = array( 'post_type' => 'product', 'post_status' => 'any', 'numberposts' => -1, 'orderby' => 'title', 'order' => 'asc', 'post_parent' => 0, 'suppress_filters' => 0, 'include' => $posts_in, ); $grouped_products = get_posts( $args ); if ( $grouped_products ) { foreach ( $grouped_products as $product ) { if ( $product->ID == $post->ID ) { continue; } $post_parents[ $product->ID ] = $product->post_title; } } } } woocommerce_wp_select( array( 'id' => 'parent_id', 'label' => __( 'Grouping', 'woocommerce' ), 'value' => absint( $post->post_parent ), 'options' => $post_parents, 'desc_tip' => true, 'description' => __( 'Set this option to make this product part of a grouped product.', 'woocommerce' ) ) ); woocommerce_wp_hidden_input( array( 'id' => 'previous_parent_id', 'value' => absint( $post->post_parent ) ) ); do_action( 'woocommerce_product_options_grouping' ); echo '
'; ?>
'; // Purchase note woocommerce_wp_textarea_input( array( 'id' => '_purchase_note', 'label' => __( 'Purchase Note', 'woocommerce' ), 'desc_tip' => 'true', 'description' => __( 'Enter an optional note to send the customer after purchase.', 'woocommerce' ) ) ); echo '
'; echo '
'; // menu_order woocommerce_wp_text_input( array( 'id' => 'menu_order', 'label' => __( 'Menu order', 'woocommerce' ), 'desc_tip' => 'true', 'description' => __( 'Custom ordering position.', 'woocommerce' ), 'value' => intval( $post->menu_order ), 'type' => 'number', 'custom_attributes' => array( 'step' => '1' ) ) ); echo '
'; echo '
'; woocommerce_wp_checkbox( array( 'id' => 'comment_status', 'label' => __( 'Enable reviews', 'woocommerce' ), 'cbvalue' => 'open', 'value' => esc_attr( $post->comment_status ) ) ); do_action( 'woocommerce_product_options_reviews' ); echo '
'; ?>
ID, '_product_attributes', true ) ); // See if any are set $variation_attribute_found = false; if ( $attributes ) { foreach ( $attributes as $attribute ) { if ( isset( $attribute['is_variation'] ) ) { $variation_attribute_found = true; break; } } } // Get tax classes $tax_classes = array_filter( array_map('trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); $tax_class_options = array(); $tax_class_options[''] = __( 'Standard', 'woocommerce' ); if ( $tax_classes ) { foreach ( $tax_classes as $class ) { $tax_class_options[ sanitize_title( $class ) ] = esc_attr( $class ); } } $backorder_options = array( 'no' => __( 'Do not allow', 'woocommerce' ), 'notify' => __( 'Allow, but notify customer', 'woocommerce' ), 'yes' => __( 'Allow', 'woocommerce' ) ); $stock_status_options = array( 'instock' => __( 'In stock', 'woocommerce' ), 'outofstock' => __( 'Out of stock', 'woocommerce' ) ); ?>

Attributes tab.', 'woocommerce' ); ?>

$post->ID, 'attributes' => $attributes, 'tax_class_options' => $tax_class_options, 'sku' => get_post_meta( $post->ID, '_sku', true ), 'weight' => wc_format_localized_decimal( get_post_meta( $post->ID, '_weight', true ) ), 'length' => wc_format_localized_decimal( get_post_meta( $post->ID, '_length', true ) ), 'width' => wc_format_localized_decimal( get_post_meta( $post->ID, '_width', true ) ), 'height' => wc_format_localized_decimal( get_post_meta( $post->ID, '_height', true ) ), 'tax_class' => get_post_meta( $post->ID, '_tax_class', true ), 'backorder_options' => $backorder_options, 'stock_status_options' => $stock_status_options ); if ( ! $parent_data['weight'] ) { $parent_data['weight'] = wc_format_localized_decimal( 0 ); } if ( ! $parent_data['length'] ) { $parent_data['length'] = wc_format_localized_decimal( 0 ); } if ( ! $parent_data['width'] ) { $parent_data['width'] = wc_format_localized_decimal( 0 ); } if ( ! $parent_data['height'] ) { $parent_data['height'] = wc_format_localized_decimal( 0 ); } // Get variations $args = array( 'post_type' => 'product_variation', 'post_status' => array( 'private', 'publish' ), 'numberposts' => -1, 'orderby' => 'menu_order', 'order' => 'asc', 'post_parent' => $post->ID ); $variations = get_posts( $args ); $loop = 0; if ( $variations ) { foreach ( $variations as $variation ) { $variation_id = absint( $variation->ID ); $variation_post_status = esc_attr( $variation->post_status ); $variation_data = get_post_meta( $variation_id ); $variation_data['variation_post_id'] = $variation_id; // Grab shipping classes $shipping_classes = get_the_terms( $variation_id, 'product_shipping_class' ); $shipping_class = ( $shipping_classes && ! is_wp_error( $shipping_classes ) ) ? current( $shipping_classes )->term_id : ''; $variation_fields = array( '_sku', '_stock', '_regular_price', '_sale_price', '_weight', '_length', '_width', '_height', '_download_limit', '_download_expiry', '_downloadable_files', '_downloadable', '_virtual', '_thumbnail_id', '_sale_price_dates_from', '_sale_price_dates_to', '_manage_stock', '_stock_status' ); foreach ( $variation_fields as $field ) { $$field = isset( $variation_data[ $field ][0] ) ? maybe_unserialize( $variation_data[ $field ][0] ) : ''; } $_backorders = isset( $variation_data['_backorders'][0] ) ? $variation_data['_backorders'][0] : null; $_tax_class = isset( $variation_data['_tax_class'][0] ) ? $variation_data['_tax_class'][0] : null; $image_id = absint( $_thumbnail_id ); $image = $image_id ? wp_get_attachment_thumb_url( $image_id ) : ''; // Locale formatting $_regular_price = wc_format_localized_price( $_regular_price ); $_sale_price = wc_format_localized_price( $_sale_price ); $_weight = wc_format_localized_decimal( $_weight ); $_length = wc_format_localized_decimal( $_length ); $_width = wc_format_localized_decimal( $_width ); $_height = wc_format_localized_decimal( $_height ); // Stock BW compat if ( '' !== $_stock ) { $_manage_stock = 'yes'; } include( 'views/html-variation-admin.php' ); $loop++; } } ?>

: [?] ID, '_default_attributes', true ) ); foreach ( $attributes as $attribute ) { // Only deal with attributes that are variations if ( ! $attribute['is_variation'] ) { continue; } // Get current value for variation (if set) $variation_selected_value = isset( $default_attributes[ sanitize_title( $attribute['name'] ) ] ) ? $default_attributes[ sanitize_title( $attribute['name'] ) ] : ''; // Name will be something like attribute_pa_color echo ''; } ?>

0 && $product_type != 'external' ? absint( $_POST['product_shipping_class'] ) : ''; wp_set_object_terms( $post_id, $product_shipping_class, 'product_shipping_class'); // Unique SKU $sku = get_post_meta( $post_id, '_sku', true ); $new_sku = wc_clean( stripslashes( $_POST['_sku'] ) ); if ( '' == $new_sku ) { update_post_meta( $post_id, '_sku', '' ); } elseif ( $new_sku !== $sku ) { if ( ! empty( $new_sku ) ) { $unique_sku = wc_product_has_unique_sku( $post_id, $new_sku ); if ( ! $unique_sku ) { WC_Admin_Meta_Boxes::add_error( __( 'Product SKU must be unique.', 'woocommerce' ) ); } else { update_post_meta( $post_id, '_sku', $new_sku ); } } else { update_post_meta( $post_id, '_sku', '' ); } } // Save Attributes $attributes = array(); if ( isset( $_POST['attribute_names'] ) && isset( $_POST['attribute_values'] ) ) { $attribute_names = $_POST['attribute_names']; $attribute_values = $_POST['attribute_values']; if ( isset( $_POST['attribute_visibility'] ) ) { $attribute_visibility = $_POST['attribute_visibility']; } if ( isset( $_POST['attribute_variation'] ) ) { $attribute_variation = $_POST['attribute_variation']; } $attribute_is_taxonomy = $_POST['attribute_is_taxonomy']; $attribute_position = $_POST['attribute_position']; $attribute_names_count = sizeof( $attribute_names ); for ( $i = 0; $i < $attribute_names_count; $i++ ) { if ( ! $attribute_names[ $i ] ) { continue; } $is_visible = isset( $attribute_visibility[ $i ] ) ? 1 : 0; $is_variation = isset( $attribute_variation[ $i ] ) ? 1 : 0; $is_taxonomy = $attribute_is_taxonomy[ $i ] ? 1 : 0; if ( $is_taxonomy ) { if ( isset( $attribute_values[ $i ] ) ) { // Select based attributes - Format values (posted values are slugs) if ( is_array( $attribute_values[ $i ] ) ) { $values = array_map( 'sanitize_title', $attribute_values[ $i ] ); // Text based attributes - Posted values are term names - don't change to slugs } else { $values = array_map( 'stripslashes', array_map( 'strip_tags', explode( WC_DELIMITER, $attribute_values[ $i ] ) ) ); } // Remove empty items in the array $values = array_filter( $values, 'strlen' ); } else { $values = array(); } // Update post terms if ( taxonomy_exists( $attribute_names[ $i ] ) ) { wp_set_object_terms( $post_id, $values, $attribute_names[ $i ] ); } if ( $values ) { // Add attribute to array, but don't set values $attributes[ sanitize_title( $attribute_names[ $i ] ) ] = array( 'name' => wc_clean( $attribute_names[ $i ] ), 'value' => '', 'position' => $attribute_position[ $i ], 'is_visible' => $is_visible, 'is_variation' => $is_variation, 'is_taxonomy' => $is_taxonomy ); } } elseif ( isset( $attribute_values[ $i ] ) ) { // Text based, separate by pipe $values = implode( ' ' . WC_DELIMITER . ' ', array_map( 'wc_clean', explode( WC_DELIMITER, $attribute_values[ $i ] ) ) ); // Custom attribute - Add attribute to array and set the values $attributes[ sanitize_title( $attribute_names[ $i ] ) ] = array( 'name' => wc_clean( $attribute_names[ $i ] ), 'value' => $values, 'position' => $attribute_position[ $i ], 'is_visible' => $is_visible, 'is_variation' => $is_variation, 'is_taxonomy' => $is_taxonomy ); } } } if ( ! function_exists( 'attributes_cmp' ) ) { function attributes_cmp( $a, $b ) { if ( $a['position'] == $b['position'] ) { return 0; } return ( $a['position'] < $b['position'] ) ? -1 : 1; } } uasort( $attributes, 'attributes_cmp' ); update_post_meta( $post_id, '_product_attributes', $attributes ); // Sales and prices if ( in_array( $product_type, array( 'variable', 'grouped' ) ) ) { // Variable and grouped products have no prices update_post_meta( $post_id, '_regular_price', '' ); update_post_meta( $post_id, '_sale_price', '' ); update_post_meta( $post_id, '_sale_price_dates_from', '' ); update_post_meta( $post_id, '_sale_price_dates_to', '' ); update_post_meta( $post_id, '_price', '' ); } else { $date_from = isset( $_POST['_sale_price_dates_from'] ) ? $_POST['_sale_price_dates_from'] : ''; $date_to = isset( $_POST['_sale_price_dates_to'] ) ? $_POST['_sale_price_dates_to'] : ''; // Dates if ( $date_from ) { update_post_meta( $post_id, '_sale_price_dates_from', strtotime( $date_from ) ); } else { update_post_meta( $post_id, '_sale_price_dates_from', '' ); } if ( $date_to ) { update_post_meta( $post_id, '_sale_price_dates_to', strtotime( $date_to ) ); } else { update_post_meta( $post_id, '_sale_price_dates_to', '' ); } if ( $date_to && ! $date_from ) { update_post_meta( $post_id, '_sale_price_dates_from', strtotime( 'NOW', current_time( 'timestamp' ) ) ); } // Update price if on sale if ( '' !== $_POST['_sale_price'] && '' == $date_to && '' == $date_from ) { update_post_meta( $post_id, '_price', wc_format_decimal( $_POST['_sale_price'] ) ); } else { update_post_meta( $post_id, '_price', ( $_POST['_regular_price'] === '' ) ? '' : wc_format_decimal( $_POST['_regular_price'] ) ); } if ( '' !== $_POST['_sale_price'] && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $post_id, '_price', wc_format_decimal( $_POST['_sale_price'] ) ); } if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $post_id, '_price', ( $_POST['_regular_price'] === '' ) ? '' : wc_format_decimal( $_POST['_regular_price'] ) ); update_post_meta( $post_id, '_sale_price_dates_from', '' ); update_post_meta( $post_id, '_sale_price_dates_to', '' ); } } // Update parent if grouped so price sorting works and stays in sync with the cheapest child if ( $post->post_parent > 0 || 'grouped' == $product_type || $_POST['previous_parent_id'] > 0 ) { $clear_parent_ids = array(); if ( $post->post_parent > 0 ) { $clear_parent_ids[] = $post->post_parent; } if ( 'grouped' == $product_type ) { $clear_parent_ids[] = $post_id; } if ( $_POST['previous_parent_id'] > 0 ) { $clear_parent_ids[] = absint( $_POST['previous_parent_id'] ); } if ( $clear_parent_ids ) { foreach ( $clear_parent_ids as $clear_id ) { $children_by_price = get_posts( array( 'post_parent' => $clear_id, 'orderby' => 'meta_value_num', 'order' => 'asc', 'meta_key' => '_price', 'posts_per_page' => 1, 'post_type' => 'product', 'fields' => 'ids' ) ); if ( $children_by_price ) { foreach ( $children_by_price as $child ) { $child_price = get_post_meta( $child, '_price', true ); update_post_meta( $clear_id, '_price', $child_price ); } } wc_delete_product_transients( $clear_id ); } } } // Sold Individually if ( ! empty( $_POST['_sold_individually'] ) ) { update_post_meta( $post_id, '_sold_individually', 'yes' ); } else { update_post_meta( $post_id, '_sold_individually', '' ); } // Stock Data if ( 'yes' === get_option( 'woocommerce_manage_stock' ) ) { $manage_stock = 'no'; $backorders = 'no'; $stock = ''; $stock_status = wc_clean( $_POST['_stock_status'] ); if ( 'external' === $product_type ) { $stock_status = 'instock'; } elseif ( 'variable' === $product_type ) { // Stock status is always determined by children so sync later $stock_status = ''; if ( ! empty( $_POST['_manage_stock'] ) ) { $manage_stock = 'yes'; $backorders = wc_clean( $_POST['_backorders'] ); } } elseif ( 'grouped' !== $product_type && ! empty( $_POST['_manage_stock'] ) ) { $manage_stock = 'yes'; $backorders = wc_clean( $_POST['_backorders'] ); } update_post_meta( $post_id, '_manage_stock', $manage_stock ); update_post_meta( $post_id, '_backorders', $backorders ); if ( $stock_status ) { wc_update_product_stock_status( $post_id, $stock_status ); } if ( ! empty( $_POST['_manage_stock'] ) ) { wc_update_product_stock( $post_id, wc_stock_amount( $_POST['_stock'] ) ); } else { update_post_meta( $post_id, '_stock', '' ); } } else { wc_update_product_stock_status( $post_id, wc_clean( $_POST['_stock_status'] ) ); } // Upsells if ( isset( $_POST['upsell_ids'] ) ) { $upsells = array(); $ids = $_POST['upsell_ids']; foreach ( $ids as $id ) { if ( $id && $id > 0 ) { $upsells[] = $id; } } update_post_meta( $post_id, '_upsell_ids', $upsells ); } else { delete_post_meta( $post_id, '_upsell_ids' ); } // Cross sells if ( isset( $_POST['crosssell_ids'] ) ) { $crosssells = array(); $ids = $_POST['crosssell_ids']; foreach ( $ids as $id ) { if ( $id && $id > 0 ) { $crosssells[] = $id; } } update_post_meta( $post_id, '_crosssell_ids', $crosssells ); } else { delete_post_meta( $post_id, '_crosssell_ids' ); } // Downloadable options if ( 'yes' == $is_downloadable ) { $_download_limit = absint( $_POST['_download_limit'] ); if ( ! $_download_limit ) { $_download_limit = ''; // 0 or blank = unlimited } $_download_expiry = absint( $_POST['_download_expiry'] ); if ( ! $_download_expiry ) { $_download_expiry = ''; // 0 or blank = unlimited } // file paths will be stored in an array keyed off md5(file path) $files = array(); if ( isset( $_POST['_wc_file_urls'] ) ) { $file_names = isset( $_POST['_wc_file_names'] ) ? array_map( 'wc_clean', $_POST['_wc_file_names'] ) : array(); $file_urls = isset( $_POST['_wc_file_urls'] ) ? array_map( 'wc_clean', $_POST['_wc_file_urls'] ) : array(); $file_url_size = sizeof( $file_urls ); for ( $i = 0; $i < $file_url_size; $i ++ ) { if ( ! empty( $file_urls[ $i ] ) ) { $files[ md5( $file_urls[ $i ] ) ] = array( 'name' => $file_names[ $i ], 'file' => $file_urls[ $i ] ); } } } // grant permission to any newly added files on any existing orders for this product prior to saving do_action( 'woocommerce_process_product_file_download_paths', $post_id, 0, $files ); update_post_meta( $post_id, '_downloadable_files', $files ); update_post_meta( $post_id, '_download_limit', $_download_limit ); update_post_meta( $post_id, '_download_expiry', $_download_expiry ); if ( isset( $_POST['_download_type'] ) ) { update_post_meta( $post_id, '_download_type', wc_clean( $_POST['_download_type'] ) ); } } // Product url if ( 'external' == $product_type ) { if ( isset( $_POST['_product_url'] ) ) { update_post_meta( $post_id, '_product_url', esc_attr( $_POST['_product_url'] ) ); } if ( isset( $_POST['_button_text'] ) ) { update_post_meta( $post_id, '_button_text', esc_attr( $_POST['_button_text'] ) ); } } // Save variations if ( 'variable' == $product_type ) { self::save_variations( $post_id, $post ); } // Do action for product type do_action( 'woocommerce_process_product_meta_' . $product_type, $post_id ); // Clear cache/transients wc_delete_product_transients( $post_id ); } /** * Save meta box data */ public static function save_variations( $post_id, $post ) { global $wpdb; $attributes = (array) maybe_unserialize( get_post_meta( $post_id, '_product_attributes', true ) ); if ( isset( $_POST['variable_sku'] ) ) { $variable_post_id = $_POST['variable_post_id']; $variable_sku = $_POST['variable_sku']; $variable_regular_price = $_POST['variable_regular_price']; $variable_sale_price = $_POST['variable_sale_price']; $upload_image_id = $_POST['upload_image_id']; $variable_download_limit = $_POST['variable_download_limit']; $variable_download_expiry = $_POST['variable_download_expiry']; $variable_shipping_class = $_POST['variable_shipping_class']; $variable_tax_class = isset( $_POST['variable_tax_class'] ) ? $_POST['variable_tax_class'] : array(); $variable_menu_order = $_POST['variation_menu_order']; $variable_sale_price_dates_from = $_POST['variable_sale_price_dates_from']; $variable_sale_price_dates_to = $_POST['variable_sale_price_dates_to']; $variable_weight = isset( $_POST['variable_weight'] ) ? $_POST['variable_weight'] : array(); $variable_length = isset( $_POST['variable_length'] ) ? $_POST['variable_length'] : array(); $variable_width = isset( $_POST['variable_width'] ) ? $_POST['variable_width'] : array(); $variable_height = isset( $_POST['variable_height'] ) ? $_POST['variable_height'] : array(); $variable_enabled = isset( $_POST['variable_enabled'] ) ? $_POST['variable_enabled'] : array(); $variable_is_virtual = isset( $_POST['variable_is_virtual'] ) ? $_POST['variable_is_virtual'] : array(); $variable_is_downloadable = isset( $_POST['variable_is_downloadable'] ) ? $_POST['variable_is_downloadable'] : array(); $variable_manage_stock = isset( $_POST['variable_manage_stock'] ) ? $_POST['variable_manage_stock'] : array(); $variable_stock = isset( $_POST['variable_stock'] ) ? $_POST['variable_stock'] : array(); $variable_backorders = isset( $_POST['variable_backorders'] ) ? $_POST['variable_backorders'] : array(); $variable_stock_status = isset( $_POST['variable_stock_status'] ) ? $_POST['variable_stock_status'] : array(); $max_loop = max( array_keys( $_POST['variable_post_id'] ) ); for ( $i = 0; $i <= $max_loop; $i ++ ) { if ( ! isset( $variable_post_id[ $i ] ) ) { continue; } $variation_id = absint( $variable_post_id[ $i ] ); // Checkboxes $is_virtual = isset( $variable_is_virtual[ $i ] ) ? 'yes' : 'no'; $is_downloadable = isset( $variable_is_downloadable[ $i ] ) ? 'yes' : 'no'; $post_status = isset( $variable_enabled[ $i ] ) ? 'publish' : 'private'; $parent_manage_stock = isset( $_POST['_manage_stock'] ) ? 'yes' : 'no'; $manage_stock = isset( $variable_manage_stock[ $i ] ) ? 'yes' : 'no'; // Generate a useful post title $variation_post_title = sprintf( __( 'Variation #%s of %s', 'woocommerce' ), absint( $variation_id ), esc_html( get_the_title( $post_id ) ) ); // Update or Add post if ( ! $variation_id ) { $variation = array( 'post_title' => $variation_post_title, 'post_content' => '', 'post_status' => $post_status, 'post_author' => get_current_user_id(), 'post_parent' => $post_id, 'post_type' => 'product_variation', 'menu_order' => $variable_menu_order[ $i ] ); $variation_id = wp_insert_post( $variation ); do_action( 'woocommerce_create_product_variation', $variation_id ); } else { $wpdb->update( $wpdb->posts, array( 'post_status' => $post_status, 'post_title' => $variation_post_title, 'menu_order' => $variable_menu_order[ $i ] ), array( 'ID' => $variation_id ) ); do_action( 'woocommerce_update_product_variation', $variation_id ); } // Only continue if we have a variation ID if ( ! $variation_id ) { continue; } // Unique SKU $sku = get_post_meta( $variation_id, '_sku', true ); $new_sku = wc_clean( stripslashes( $variable_sku[ $i ] ) ); if ( '' == $new_sku ) { update_post_meta( $variation_id, '_sku', '' ); } elseif ( $new_sku !== $sku ) { if ( ! empty( $new_sku ) ) { $unique_sku = wc_product_has_unique_sku( $variation_id, $new_sku ); if ( ! $unique_sku ) { WC_Admin_Meta_Boxes::add_error( __( 'Variation SKU must be unique.', 'woocommerce' ) ); } else { update_post_meta( $variation_id, '_sku', $new_sku ); } } else { update_post_meta( $variation_id, '_sku', '' ); } } // Update post meta update_post_meta( $variation_id, '_thumbnail_id', absint( $upload_image_id[ $i ] ) ); update_post_meta( $variation_id, '_virtual', wc_clean( $is_virtual ) ); update_post_meta( $variation_id, '_downloadable', wc_clean( $is_downloadable ) ); if ( isset( $variable_weight[ $i ] ) ) { update_post_meta( $variation_id, '_weight', ( '' === $variable_weight[ $i ] ) ? '' : wc_format_decimal( $variable_weight[ $i ] ) ); } if ( isset( $variable_length[ $i ] ) ) { update_post_meta( $variation_id, '_length', ( '' === $variable_length[ $i ] ) ? '' : wc_format_decimal( $variable_length[ $i ] ) ); } if ( isset( $variable_width[ $i ] ) ) { update_post_meta( $variation_id, '_width', ( '' === $variable_width[ $i ] ) ? '' : wc_format_decimal( $variable_width[ $i ] ) ); } if ( isset( $variable_height[ $i ] ) ) { update_post_meta( $variation_id, '_height', ( '' === $variable_height[ $i ] ) ? '' : wc_format_decimal( $variable_height[ $i ] ) ); } // Stock handling update_post_meta( $variation_id, '_manage_stock', $manage_stock ); // Only update stock status to user setting if changed by the user, but do so before looking at stock levels at variation level if ( ! empty( $variable_stock_status[ $i ] ) ) { wc_update_product_stock_status( $variation_id, $variable_stock_status[ $i ] ); } if ( 'yes' === $manage_stock ) { update_post_meta( $variation_id, '_backorders', wc_clean( $variable_backorders[ $i ] ) ); wc_update_product_stock( $variation_id, wc_stock_amount( $variable_stock[ $i ] ) ); } else { delete_post_meta( $variation_id, '_backorders' ); delete_post_meta( $variation_id, '_stock' ); } // Price handling $regular_price = wc_format_decimal( $variable_regular_price[ $i ] ); $sale_price = $variable_sale_price[ $i ] === '' ? '' : wc_format_decimal( $variable_sale_price[ $i ] ); $date_from = wc_clean( $variable_sale_price_dates_from[ $i ] ); $date_to = wc_clean( $variable_sale_price_dates_to[ $i ] ); update_post_meta( $variation_id, '_regular_price', $regular_price ); update_post_meta( $variation_id, '_sale_price', $sale_price ); // Save Dates update_post_meta( $variation_id, '_sale_price_dates_from', $date_from ? strtotime( $date_from ) : '' ); update_post_meta( $variation_id, '_sale_price_dates_to', $date_to ? strtotime( $date_to ) : '' ); if ( $date_to && ! $date_from ) { update_post_meta( $variation_id, '_sale_price_dates_from', strtotime( 'NOW', current_time( 'timestamp' ) ) ); } // Update price if on sale if ( '' !== $sale_price && '' === $date_to && '' === $date_from ) { update_post_meta( $variation_id, '_price', $sale_price ); } else { update_post_meta( $variation_id, '_price', $regular_price ); } if ( '' !== $sale_price && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $variation_id, '_price', $sale_price ); } if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $variation_id, '_price', $regular_price ); update_post_meta( $variation_id, '_sale_price_dates_from', '' ); update_post_meta( $variation_id, '_sale_price_dates_to', '' ); } if ( isset( $variable_tax_class[ $i ] ) && $variable_tax_class[ $i ] !== 'parent' ) { update_post_meta( $variation_id, '_tax_class', wc_clean( $variable_tax_class[ $i ] ) ); } else { delete_post_meta( $variation_id, '_tax_class' ); } if ( 'yes' == $is_downloadable ) { update_post_meta( $variation_id, '_download_limit', wc_clean( $variable_download_limit[ $i ] ) ); update_post_meta( $variation_id, '_download_expiry', wc_clean( $variable_download_expiry[ $i ] ) ); $files = array(); $file_names = isset( $_POST['_wc_variation_file_names'][ $variation_id ] ) ? array_map( 'wc_clean', $_POST['_wc_variation_file_names'][ $variation_id ] ) : array(); $file_urls = isset( $_POST['_wc_variation_file_urls'][ $variation_id ] ) ? array_map( 'wc_clean', $_POST['_wc_variation_file_urls'][ $variation_id ] ) : array(); $file_url_size = sizeof( $file_urls ); for ( $ii = 0; $ii < $file_url_size; $ii ++ ) { if ( ! empty( $file_urls[ $ii ] ) ) { $files[ md5( $file_urls[ $ii ] ) ] = array( 'name' => $file_names[ $ii ], 'file' => $file_urls[ $ii ] ); } } // grant permission to any newly added files on any existing orders for this product prior to saving do_action( 'woocommerce_process_product_file_download_paths', $post_id, $variation_id, $files ); update_post_meta( $variation_id, '_downloadable_files', $files ); } else { update_post_meta( $variation_id, '_download_limit', '' ); update_post_meta( $variation_id, '_download_expiry', '' ); update_post_meta( $variation_id, '_downloadable_files', '' ); } // Save shipping class $variable_shipping_class[ $i ] = ! empty( $variable_shipping_class[ $i ] ) ? (int) $variable_shipping_class[ $i ] : ''; wp_set_object_terms( $variation_id, $variable_shipping_class[ $i ], 'product_shipping_class'); // Update taxonomies - don't use wc_clean as it destroys sanitized characters $updated_attribute_keys = array(); foreach ( $attributes as $attribute ) { if ( $attribute['is_variation'] ) { $attribute_key = 'attribute_' . sanitize_title( $attribute['name'] ); $value = isset( $_POST[ $attribute_key ][ $i ] ) ? sanitize_title( stripslashes( $_POST[ $attribute_key ][ $i ] ) ) : ''; $updated_attribute_keys[] = $attribute_key; update_post_meta( $variation_id, $attribute_key, $value ); } } // Remove old taxonomies attributes so data is kept up to date - first get attribute key names $delete_attribute_keys = $wpdb->get_col( $wpdb->prepare( "SELECT meta_key FROM {$wpdb->postmeta} WHERE meta_key LIKE 'attribute_%%' AND meta_key NOT IN ( '" . implode( "','", $updated_attribute_keys ) . "' ) AND post_id = %d;", $variation_id ) ); foreach ( $delete_attribute_keys as $key ) { delete_post_meta( $variation_id, $key ); } do_action( 'woocommerce_save_product_variation', $variation_id, $i ); } } // Update parent if variable so price sorting works and stays in sync with the cheapest child WC_Product_Variable::sync( $post_id ); // Update default attribute options setting $default_attributes = array(); foreach ( $attributes as $attribute ) { if ( $attribute['is_variation'] ) { // Don't use wc_clean as it destroys sanitized characters if ( isset( $_POST[ 'default_attribute_' . sanitize_title( $attribute['name'] ) ] ) ) { $value = sanitize_title( trim( stripslashes( $_POST[ 'default_attribute_' . sanitize_title( $attribute['name'] ) ] ) ) ); } else { $value = ''; } if ( $value ) { $default_attributes[ sanitize_title( $attribute['name'] ) ] = $value; } } } update_post_meta( $post_id, '_default_attributes', $default_attributes ); } }