2013-08-09 16:11:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WooCommerce Product Functions
|
|
|
|
*
|
|
|
|
* Functions for product specific things.
|
|
|
|
*
|
2015-03-12 20:59:52 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @category Core
|
|
|
|
* @package WooCommerce/Functions
|
|
|
|
* @version 2.3.0
|
2013-08-09 16:11:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main function for returning products, uses the WC_Product_Factory class.
|
|
|
|
*
|
|
|
|
* @param mixed $the_product Post object or post ID of the product.
|
|
|
|
* @param array $args (default: array()) Contains all arguments to be used to get this product.
|
|
|
|
* @return WC_Product
|
|
|
|
*/
|
2014-08-19 10:05:02 +00:00
|
|
|
function wc_get_product( $the_product = false, $args = array() ) {
|
2013-08-20 11:17:51 +00:00
|
|
|
return WC()->product_factory->get_product( $the_product, $args );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 15:56:09 +00:00
|
|
|
/**
|
|
|
|
* Update a product's stock amount
|
|
|
|
*
|
|
|
|
* @param int $product_id
|
|
|
|
* @param int $new_stock_level
|
|
|
|
*/
|
|
|
|
function wc_update_product_stock( $product_id, $new_stock_level ) {
|
2014-08-19 10:09:29 +00:00
|
|
|
$product = wc_get_product( $product_id );
|
2014-06-27 18:58:29 +00:00
|
|
|
|
2014-10-16 16:15:07 +00:00
|
|
|
if ( ! metadata_exists( 'post', $product_id, '_stock' ) || $product->get_stock_quantity() !== $new_stock_level ) {
|
2013-08-13 15:56:09 +00:00
|
|
|
$product->set_stock( $new_stock_level );
|
2014-06-24 12:01:47 +00:00
|
|
|
}
|
2013-08-13 15:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a product's stock status
|
|
|
|
*
|
|
|
|
* @param int $product_id
|
|
|
|
* @param int $status
|
|
|
|
*/
|
|
|
|
function wc_update_product_stock_status( $product_id, $status ) {
|
2014-08-19 10:09:29 +00:00
|
|
|
$product = wc_get_product( $product_id );
|
2014-06-24 12:01:47 +00:00
|
|
|
$product->set_stock_status( $status );
|
2013-08-13 15:56:09 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 10:58:03 +00:00
|
|
|
/**
|
|
|
|
* Returns whether or not SKUS are enabled.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function wc_product_sku_enabled() {
|
|
|
|
return apply_filters( 'wc_product_sku_enabled', true );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not product weights are enabled.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function wc_product_weight_enabled() {
|
|
|
|
return apply_filters( 'wc_product_weight_enabled', true );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not product dimensions (HxWxD) are enabled.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function wc_product_dimensions_enabled() {
|
|
|
|
return apply_filters( 'wc_product_dimensions_enabled', true );
|
|
|
|
}
|
|
|
|
|
2013-08-09 16:11:15 +00:00
|
|
|
/**
|
|
|
|
* Clear all transients cache for product data.
|
|
|
|
*
|
|
|
|
* @param int $post_id (default: 0)
|
|
|
|
*/
|
|
|
|
function wc_delete_product_transients( $post_id = 0 ) {
|
2014-07-03 11:13:51 +00:00
|
|
|
// Core transients
|
2013-08-09 16:11:15 +00:00
|
|
|
$transients_to_clear = array(
|
2014-06-19 11:25:07 +00:00
|
|
|
'wc_products_onsale',
|
2015-03-09 11:07:49 +00:00
|
|
|
'wc_featured_products',
|
|
|
|
'wc_outofstock_count',
|
|
|
|
'wc_low_stock_count'
|
2013-08-09 16:11:15 +00:00
|
|
|
);
|
|
|
|
|
2014-07-03 11:13:51 +00:00
|
|
|
// Transients that include an ID
|
2014-03-18 10:48:18 +00:00
|
|
|
$post_transient_names = array(
|
2015-07-09 15:02:26 +00:00
|
|
|
'wc_product_children_',
|
2014-07-03 11:01:51 +00:00
|
|
|
'wc_product_total_stock_'
|
2013-08-09 16:11:15 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if ( $post_id > 0 ) {
|
2014-03-18 10:48:18 +00:00
|
|
|
foreach( $post_transient_names as $transient ) {
|
|
|
|
$transients_to_clear[] = $transient . $post_id;
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
2014-03-18 10:48:18 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2014-03-20 11:20:54 +00:00
|
|
|
// Delete transients
|
2014-03-18 10:48:18 +00:00
|
|
|
foreach( $transients_to_clear as $transient ) {
|
|
|
|
delete_transient( $transient );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
2013-09-27 09:00:42 +00:00
|
|
|
|
2014-12-30 15:27:08 +00:00
|
|
|
// Increments the transient version to invalidate cache
|
|
|
|
WC_Cache_Helper::get_transient_version( 'product', true );
|
|
|
|
|
2013-09-27 09:00:42 +00:00
|
|
|
do_action( 'woocommerce_delete_product_transients', $post_id );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function that returns an array containing the IDs of the products that are on sale.
|
|
|
|
*
|
|
|
|
* @since 2.0
|
|
|
|
* @access public
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_get_product_ids_on_sale() {
|
2013-08-13 12:14:32 +00:00
|
|
|
global $wpdb;
|
|
|
|
|
2013-08-09 16:11:15 +00:00
|
|
|
// Load from cache
|
|
|
|
$product_ids_on_sale = get_transient( 'wc_products_onsale' );
|
|
|
|
|
|
|
|
// Valid cache found
|
2015-04-09 14:34:33 +00:00
|
|
|
if ( false !== $product_ids_on_sale ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
return $product_ids_on_sale;
|
2015-04-09 14:34:33 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2013-08-13 12:14:32 +00:00
|
|
|
$on_sale_posts = $wpdb->get_results( "
|
|
|
|
SELECT post.ID, post.post_parent FROM `$wpdb->posts` AS post
|
|
|
|
LEFT JOIN `$wpdb->postmeta` AS meta ON post.ID = meta.post_id
|
2013-08-20 11:52:14 +00:00
|
|
|
LEFT JOIN `$wpdb->postmeta` AS meta2 ON post.ID = meta2.post_id
|
2013-10-17 10:48:49 +00:00
|
|
|
WHERE post.post_type IN ( 'product', 'product_variation' )
|
2013-08-13 12:14:32 +00:00
|
|
|
AND post.post_status = 'publish'
|
|
|
|
AND meta.meta_key = '_sale_price'
|
2013-08-20 11:52:14 +00:00
|
|
|
AND meta2.meta_key = '_price'
|
2013-08-13 12:14:32 +00:00
|
|
|
AND CAST( meta.meta_value AS DECIMAL ) >= 0
|
|
|
|
AND CAST( meta.meta_value AS CHAR ) != ''
|
2013-08-20 11:52:14 +00:00
|
|
|
AND CAST( meta.meta_value AS DECIMAL ) = CAST( meta2.meta_value AS DECIMAL )
|
2013-08-13 12:14:32 +00:00
|
|
|
GROUP BY post.ID;
|
|
|
|
" );
|
|
|
|
|
2014-03-01 04:37:58 +00:00
|
|
|
$product_ids_on_sale = array_unique( array_map( 'absint', array_merge( wp_list_pluck( $on_sale_posts, 'ID' ), array_diff( wp_list_pluck( $on_sale_posts, 'post_parent' ), array( 0 ) ) ) ) );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2015-02-24 12:02:56 +00:00
|
|
|
set_transient( 'wc_products_onsale', $product_ids_on_sale, DAY_IN_SECONDS * 30 );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
return $product_ids_on_sale;
|
|
|
|
}
|
|
|
|
|
2013-09-04 09:17:13 +00:00
|
|
|
/**
|
|
|
|
* Function that returns an array containing the IDs of the featured products.
|
|
|
|
*
|
|
|
|
* @since 2.1
|
|
|
|
* @access public
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_get_featured_product_ids() {
|
2013-09-12 13:41:02 +00:00
|
|
|
|
2013-09-04 09:17:13 +00:00
|
|
|
// Load from cache
|
|
|
|
$featured_product_ids = get_transient( 'wc_featured_products' );
|
|
|
|
|
|
|
|
// Valid cache found
|
|
|
|
if ( false !== $featured_product_ids )
|
|
|
|
return $featured_product_ids;
|
|
|
|
|
|
|
|
$featured = get_posts( array(
|
|
|
|
'post_type' => array( 'product', 'product_variation' ),
|
|
|
|
'posts_per_page' => -1,
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'meta_query' => array(
|
|
|
|
array(
|
|
|
|
'key' => '_visibility',
|
|
|
|
'value' => array('catalog', 'visible'),
|
|
|
|
'compare' => 'IN'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'key' => '_featured',
|
|
|
|
'value' => 'yes'
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'fields' => 'id=>parent'
|
|
|
|
) );
|
|
|
|
|
|
|
|
$product_ids = array_keys( $featured );
|
2015-04-09 14:48:26 +00:00
|
|
|
$parent_ids = array_values( array_filter( $featured ) );
|
2013-09-04 09:17:13 +00:00
|
|
|
$featured_product_ids = array_unique( array_merge( $product_ids, $parent_ids ) );
|
|
|
|
|
2015-02-24 12:02:56 +00:00
|
|
|
set_transient( 'wc_featured_products', $featured_product_ids, DAY_IN_SECONDS * 30 );
|
2013-09-04 09:17:13 +00:00
|
|
|
|
|
|
|
return $featured_product_ids;
|
|
|
|
}
|
|
|
|
|
2013-08-09 16:11:15 +00:00
|
|
|
/**
|
|
|
|
* Filter to allow product_cat in the permalinks for products.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $permalink The existing permalink URL.
|
2014-04-19 13:44:55 +00:00
|
|
|
* @param WP_Post $post
|
2013-08-09 16:11:15 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_product_post_type_link( $permalink, $post ) {
|
2014-06-27 18:58:29 +00:00
|
|
|
// Abort if post is not a product
|
2015-03-27 11:47:44 +00:00
|
|
|
if ( $post->post_type !== 'product' ) {
|
2014-06-27 18:58:29 +00:00
|
|
|
return $permalink;
|
2015-03-27 11:47:44 +00:00
|
|
|
}
|
2014-06-27 18:58:29 +00:00
|
|
|
|
|
|
|
// Abort early if the placeholder rewrite tag isn't in the generated URL
|
2015-03-27 11:47:44 +00:00
|
|
|
if ( false === strpos( $permalink, '%' ) ) {
|
2014-06-27 18:58:29 +00:00
|
|
|
return $permalink;
|
2015-03-27 11:47:44 +00:00
|
|
|
}
|
2014-06-27 18:58:29 +00:00
|
|
|
|
|
|
|
// Get the custom taxonomy terms in use by this post
|
|
|
|
$terms = get_the_terms( $post->ID, 'product_cat' );
|
|
|
|
|
2015-03-27 11:47:44 +00:00
|
|
|
if ( ! empty( $terms ) ) {
|
|
|
|
usort( $terms, '_usort_terms_by_ID' ); // order by ID
|
|
|
|
|
|
|
|
$category_object = apply_filters( 'wc_product_post_type_link_product_cat', $terms[0], $terms, $post );
|
|
|
|
$category_object = get_term( $category_object, 'product_cat' );
|
|
|
|
$product_cat = $category_object->slug;
|
|
|
|
|
|
|
|
if ( $parent = $category_object->parent ) {
|
|
|
|
$ancestors = get_ancestors( $category_object->term_id, 'product_cat' );
|
|
|
|
foreach ( $ancestors as $ancestor ) {
|
|
|
|
$ancestor_object = get_term( $ancestor, 'product_cat' );
|
|
|
|
$product_cat = $ancestor_object->slug . '/' . $product_cat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-06-27 18:58:29 +00:00
|
|
|
// If no terms are assigned to this post, use a string instead (can't leave the placeholder there)
|
|
|
|
$product_cat = _x( 'uncategorized', 'slug', 'woocommerce' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$find = array(
|
|
|
|
'%year%',
|
|
|
|
'%monthnum%',
|
|
|
|
'%day%',
|
|
|
|
'%hour%',
|
|
|
|
'%minute%',
|
|
|
|
'%second%',
|
|
|
|
'%post_id%',
|
|
|
|
'%category%',
|
|
|
|
'%product_cat%'
|
|
|
|
);
|
|
|
|
|
|
|
|
$replace = array(
|
|
|
|
date_i18n( 'Y', strtotime( $post->post_date ) ),
|
|
|
|
date_i18n( 'm', strtotime( $post->post_date ) ),
|
|
|
|
date_i18n( 'd', strtotime( $post->post_date ) ),
|
|
|
|
date_i18n( 'H', strtotime( $post->post_date ) ),
|
|
|
|
date_i18n( 'i', strtotime( $post->post_date ) ),
|
|
|
|
date_i18n( 's', strtotime( $post->post_date ) ),
|
|
|
|
$post->ID,
|
|
|
|
$product_cat,
|
|
|
|
$product_cat
|
|
|
|
);
|
|
|
|
|
|
|
|
$permalink = str_replace( $find, $replace, $permalink );
|
|
|
|
|
|
|
|
return $permalink;
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
2013-11-25 13:30:20 +00:00
|
|
|
add_filter( 'post_type_link', 'wc_product_post_type_link', 10, 2 );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the placeholder image URL for products etc
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_placeholder_img_src() {
|
2013-09-12 13:41:02 +00:00
|
|
|
return apply_filters( 'woocommerce_placeholder_img_src', WC()->plugin_url() . '/assets/images/placeholder.png' );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the placeholder image
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_placeholder_img( $size = 'shop_thumbnail' ) {
|
2013-09-12 13:41:02 +00:00
|
|
|
$dimensions = wc_get_image_size( $size );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2015-08-05 19:17:52 +00:00
|
|
|
return apply_filters('woocommerce_placeholder_img', '<img src="' . wc_placeholder_img_src() . '" alt="' . esc_attr__( 'Placeholder', 'woocommerce' ) . '" width="' . esc_attr( $dimensions['width'] ) . '" class="woocommerce-placeholder wp-post-image" height="' . esc_attr( $dimensions['height'] ) . '" />', $size, $dimensions );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Variation Formatting
|
|
|
|
*
|
|
|
|
* Gets a formatted version of variation data or item meta
|
|
|
|
*
|
|
|
|
* @access public
|
2014-09-07 23:37:55 +00:00
|
|
|
* @param string $variation
|
2013-08-09 16:11:15 +00:00
|
|
|
* @param bool $flat (default: false)
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-05-06 15:06:32 +00:00
|
|
|
function wc_get_formatted_variation( $variation, $flat = false ) {
|
2014-03-20 15:47:52 +00:00
|
|
|
$return = '';
|
2013-08-09 16:11:15 +00:00
|
|
|
if ( is_array( $variation ) ) {
|
|
|
|
|
2014-03-20 15:47:52 +00:00
|
|
|
if ( ! $flat ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
$return = '<dl class="variation">';
|
2014-03-20 15:47:52 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
$variation_list = array();
|
|
|
|
|
|
|
|
foreach ( $variation as $name => $value ) {
|
2014-03-20 15:47:52 +00:00
|
|
|
if ( ! $value ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
continue;
|
2014-03-20 15:47:52 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
// If this is a term slug, get the term's nice name
|
2014-06-27 18:58:29 +00:00
|
|
|
if ( taxonomy_exists( esc_attr( str_replace( 'attribute_', '', $name ) ) ) ) {
|
|
|
|
$term = get_term_by( 'slug', $value, esc_attr( str_replace( 'attribute_', '', $name ) ) );
|
|
|
|
if ( ! is_wp_error( $term ) && $term->name )
|
|
|
|
$value = $term->name;
|
2014-07-30 19:41:14 +00:00
|
|
|
} else {
|
|
|
|
$value = ucwords( str_replace( '-', ' ', $value ) );
|
2014-06-27 18:58:29 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2014-03-20 15:47:52 +00:00
|
|
|
if ( $flat ) {
|
2014-12-09 09:54:42 +00:00
|
|
|
$variation_list[] = wc_attribute_label( str_replace( 'attribute_', '', $name ) ) . ': ' . rawurldecode( $value );
|
2014-03-20 15:47:52 +00:00
|
|
|
} else {
|
2014-12-09 09:54:42 +00:00
|
|
|
$variation_list[] = '<dt>' . wc_attribute_label( str_replace( 'attribute_', '', $name ) ) . ':</dt><dd>' . rawurldecode( $value ) . '</dd>';
|
2014-03-20 15:47:52 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 15:47:52 +00:00
|
|
|
if ( $flat ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
$return .= implode( ', ', $variation_list );
|
2014-03-20 15:47:52 +00:00
|
|
|
} else {
|
2013-08-09 16:11:15 +00:00
|
|
|
$return .= implode( '', $variation_list );
|
2014-03-20 15:47:52 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2014-03-20 15:47:52 +00:00
|
|
|
if ( ! $flat ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
$return .= '</dl>';
|
2014-03-20 15:47:52 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
2014-03-20 15:47:52 +00:00
|
|
|
return $return;
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function which handles the start and end of scheduled sales via cron.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_scheduled_sales() {
|
2013-12-03 14:03:25 +00:00
|
|
|
global $wpdb;
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
// Sales which are due to start
|
|
|
|
$product_ids = $wpdb->get_col( $wpdb->prepare( "
|
|
|
|
SELECT postmeta.post_id FROM {$wpdb->postmeta} as postmeta
|
|
|
|
LEFT JOIN {$wpdb->postmeta} as postmeta_2 ON postmeta.post_id = postmeta_2.post_id
|
|
|
|
LEFT JOIN {$wpdb->postmeta} as postmeta_3 ON postmeta.post_id = postmeta_3.post_id
|
|
|
|
WHERE postmeta.meta_key = '_sale_price_dates_from'
|
|
|
|
AND postmeta_2.meta_key = '_price'
|
|
|
|
AND postmeta_3.meta_key = '_sale_price'
|
|
|
|
AND postmeta.meta_value > 0
|
|
|
|
AND postmeta.meta_value < %s
|
|
|
|
AND postmeta_2.meta_value != postmeta_3.meta_value
|
|
|
|
", current_time( 'timestamp' ) ) );
|
|
|
|
|
|
|
|
if ( $product_ids ) {
|
|
|
|
foreach ( $product_ids as $product_id ) {
|
|
|
|
$sale_price = get_post_meta( $product_id, '_sale_price', true );
|
|
|
|
|
|
|
|
if ( $sale_price ) {
|
|
|
|
update_post_meta( $product_id, '_price', $sale_price );
|
|
|
|
} else {
|
|
|
|
// No sale price!
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_from', '' );
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_to', '' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$parent = wp_get_post_parent_id( $product_id );
|
|
|
|
|
|
|
|
// Sync parent
|
|
|
|
if ( $parent ) {
|
2013-11-08 15:53:52 +00:00
|
|
|
// We can force variable product prices to sync up by removing their min price meta
|
|
|
|
delete_post_meta( $parent, '_min_price_variation_id' );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
// Grouped products need syncing via a function
|
2014-08-19 10:09:29 +00:00
|
|
|
$this_product = wc_get_product( $product_id );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2014-06-19 11:25:07 +00:00
|
|
|
if ( $this_product->is_type( 'simple' ) ) {
|
|
|
|
$this_product->grouped_product_sync();
|
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-19 11:25:07 +00:00
|
|
|
|
|
|
|
delete_transient( 'wc_products_onsale' );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sales which are due to end
|
|
|
|
$product_ids = $wpdb->get_col( $wpdb->prepare( "
|
|
|
|
SELECT postmeta.post_id FROM {$wpdb->postmeta} as postmeta
|
|
|
|
LEFT JOIN {$wpdb->postmeta} as postmeta_2 ON postmeta.post_id = postmeta_2.post_id
|
|
|
|
LEFT JOIN {$wpdb->postmeta} as postmeta_3 ON postmeta.post_id = postmeta_3.post_id
|
|
|
|
WHERE postmeta.meta_key = '_sale_price_dates_to'
|
|
|
|
AND postmeta_2.meta_key = '_price'
|
|
|
|
AND postmeta_3.meta_key = '_regular_price'
|
|
|
|
AND postmeta.meta_value > 0
|
|
|
|
AND postmeta.meta_value < %s
|
|
|
|
AND postmeta_2.meta_value != postmeta_3.meta_value
|
|
|
|
", current_time( 'timestamp' ) ) );
|
|
|
|
|
|
|
|
if ( $product_ids ) {
|
|
|
|
foreach ( $product_ids as $product_id ) {
|
|
|
|
$regular_price = get_post_meta( $product_id, '_regular_price', true );
|
|
|
|
|
|
|
|
update_post_meta( $product_id, '_price', $regular_price );
|
|
|
|
update_post_meta( $product_id, '_sale_price', '' );
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_from', '' );
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_to', '' );
|
|
|
|
|
|
|
|
$parent = wp_get_post_parent_id( $product_id );
|
|
|
|
|
|
|
|
// Sync parent
|
|
|
|
if ( $parent ) {
|
|
|
|
// We can force variable product price to sync up by removing their min price meta
|
|
|
|
delete_post_meta( $parent, '_min_variation_price' );
|
|
|
|
|
|
|
|
// Grouped products need syncing via a function
|
2014-08-19 10:09:29 +00:00
|
|
|
$this_product = wc_get_product( $product_id );
|
2014-06-19 11:25:07 +00:00
|
|
|
if ( $this_product->is_type( 'simple' ) ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
$this_product->grouped_product_sync();
|
2014-06-19 11:25:07 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-19 11:25:07 +00:00
|
|
|
|
|
|
|
delete_transient( 'wc_products_onsale' );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-25 13:30:20 +00:00
|
|
|
add_action( 'woocommerce_scheduled_sales', 'wc_scheduled_sales' );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 13:56:59 +00:00
|
|
|
* wc_get_attachment_image_attributes function.
|
2013-08-09 16:11:15 +00:00
|
|
|
*
|
|
|
|
* @access public
|
2013-12-02 13:42:39 +00:00
|
|
|
* @param array $attr
|
|
|
|
* @return array
|
2013-08-09 16:11:15 +00:00
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_get_attachment_image_attributes( $attr ) {
|
2014-06-19 11:25:07 +00:00
|
|
|
if ( strstr( $attr['src'], 'woocommerce_uploads/' ) ) {
|
2013-11-25 13:56:59 +00:00
|
|
|
$attr['src'] = wc_placeholder_img_src();
|
2014-06-19 11:25:07 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
return $attr;
|
|
|
|
}
|
2013-11-25 13:30:20 +00:00
|
|
|
add_filter( 'wp_get_attachment_image_attributes', 'wc_get_attachment_image_attributes' );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-11-25 13:56:59 +00:00
|
|
|
* wc_prepare_attachment_for_js function.
|
2013-08-09 16:11:15 +00:00
|
|
|
*
|
|
|
|
* @access public
|
2013-12-02 13:42:39 +00:00
|
|
|
* @param array $response
|
|
|
|
* @return array
|
2013-08-09 16:11:15 +00:00
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_prepare_attachment_for_js( $response ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
if ( isset( $response['url'] ) && strstr( $response['url'], 'woocommerce_uploads/' ) ) {
|
2013-11-25 13:56:59 +00:00
|
|
|
$response['full']['url'] = wc_placeholder_img_src();
|
2013-08-09 16:11:15 +00:00
|
|
|
if ( isset( $response['sizes'] ) ) {
|
|
|
|
foreach( $response['sizes'] as $size => $value ) {
|
2013-11-25 13:56:59 +00:00
|
|
|
$response['sizes'][ $size ]['url'] = wc_placeholder_img_src();
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
2013-11-25 13:30:20 +00:00
|
|
|
add_filter( 'wp_prepare_attachment_for_js', 'wc_prepare_attachment_for_js' );
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Track product views
|
|
|
|
*/
|
2013-11-25 13:30:20 +00:00
|
|
|
function wc_track_product_view() {
|
2015-05-28 10:49:07 +00:00
|
|
|
if ( ! is_singular( 'product' ) || ! is_active_widget( false, false, 'woocommerce_recently_viewed_products', true ) ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
return;
|
2015-05-28 10:49:07 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2014-06-08 20:33:11 +00:00
|
|
|
global $post;
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
if ( empty( $_COOKIE['woocommerce_recently_viewed'] ) )
|
|
|
|
$viewed_products = array();
|
|
|
|
else
|
|
|
|
$viewed_products = (array) explode( '|', $_COOKIE['woocommerce_recently_viewed'] );
|
|
|
|
|
2015-05-28 10:49:07 +00:00
|
|
|
if ( ! in_array( $post->ID, $viewed_products ) ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
$viewed_products[] = $post->ID;
|
2015-05-28 10:49:07 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
2015-05-28 10:49:07 +00:00
|
|
|
if ( sizeof( $viewed_products ) > 15 ) {
|
2013-08-09 16:11:15 +00:00
|
|
|
array_shift( $viewed_products );
|
2015-05-28 10:49:07 +00:00
|
|
|
}
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
// Store for session only
|
2013-10-17 14:29:39 +00:00
|
|
|
wc_setcookie( 'woocommerce_recently_viewed', implode( '|', $viewed_products ) );
|
2013-08-09 16:11:15 +00:00
|
|
|
}
|
|
|
|
|
2013-11-25 13:30:20 +00:00
|
|
|
add_action( 'template_redirect', 'wc_track_product_view', 20 );
|
2014-06-24 16:59:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get product types
|
|
|
|
*
|
|
|
|
* @since 2.2
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function wc_get_product_types() {
|
|
|
|
return (array) apply_filters( 'product_type_selector', array(
|
|
|
|
'simple' => __( 'Simple product', 'woocommerce' ),
|
|
|
|
'grouped' => __( 'Grouped product', 'woocommerce' ),
|
|
|
|
'external' => __( 'External/Affiliate product', 'woocommerce' ),
|
|
|
|
'variable' => __( 'Variable product', 'woocommerce' )
|
|
|
|
) );
|
|
|
|
}
|
2014-06-27 18:58:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if product sku is unique.
|
|
|
|
*
|
|
|
|
* @since 2.2
|
|
|
|
* @param int $product_id
|
|
|
|
* @param string $sku
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-06-27 19:03:25 +00:00
|
|
|
function wc_product_has_unique_sku( $product_id, $sku ) {
|
2014-06-27 18:58:29 +00:00
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$sku_found = $wpdb->get_var( $wpdb->prepare( "
|
|
|
|
SELECT $wpdb->posts.ID
|
|
|
|
FROM $wpdb->posts
|
|
|
|
LEFT JOIN $wpdb->postmeta ON ( $wpdb->posts.ID = $wpdb->postmeta.post_id )
|
|
|
|
WHERE $wpdb->posts.post_type IN ( 'product', 'product_variation' )
|
|
|
|
AND $wpdb->posts.post_status = 'publish'
|
|
|
|
AND $wpdb->postmeta.meta_key = '_sku' AND $wpdb->postmeta.meta_value = '%s'
|
|
|
|
AND $wpdb->postmeta.post_id <> %d LIMIT 1
|
|
|
|
", $sku, $product_id ) );
|
|
|
|
|
2015-02-10 18:50:38 +00:00
|
|
|
if ( apply_filters( 'wc_product_has_unique_sku', $sku_found, $product_id, $sku ) ) {
|
2014-06-27 18:58:29 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 12:31:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get product ID by SKU.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
* @param string $sku
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function wc_get_product_id_by_sku( $sku ) {
|
|
|
|
global $wpdb;
|
|
|
|
|
2015-03-12 20:59:52 +00:00
|
|
|
$product_id = $wpdb->get_var( $wpdb->prepare( "
|
|
|
|
SELECT posts.ID
|
|
|
|
FROM $wpdb->posts AS posts
|
|
|
|
LEFT JOIN $wpdb->postmeta AS postmeta ON ( posts.ID = postmeta.post_id )
|
|
|
|
WHERE posts.post_type IN ( 'product', 'product_variation' )
|
|
|
|
AND postmeta.meta_key = '_sku' AND postmeta.meta_value = '%s'
|
|
|
|
LIMIT 1
|
|
|
|
", $sku ) );
|
2014-11-27 12:31:56 +00:00
|
|
|
|
|
|
|
return ( $product_id ) ? intval( $product_id ) : 0;
|
|
|
|
}
|
2015-07-07 19:06:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Save product price
|
|
|
|
*
|
|
|
|
* This is a private function (internal use ONLY) used until a data manipulation api is built
|
|
|
|
*
|
2015-07-07 19:39:59 +00:00
|
|
|
* @since 2.4.0
|
|
|
|
* @todo look into Data manipulation API
|
2015-07-07 19:06:34 +00:00
|
|
|
*
|
2015-07-07 19:39:59 +00:00
|
|
|
* @param int $product_id
|
|
|
|
* @param float $regular_price
|
|
|
|
* @param float $sale_price
|
|
|
|
* @param string $date_from
|
|
|
|
* @param string $date_to
|
2015-07-07 19:06:34 +00:00
|
|
|
*/
|
2015-07-07 19:39:59 +00:00
|
|
|
function _wc_save_product_price( $product_id, $regular_price, $sale_price = '', $date_from = '', $date_to = '' ) {
|
|
|
|
$product_id = absint( $product_id );
|
2015-07-07 19:06:34 +00:00
|
|
|
$regular_price = wc_format_decimal( $regular_price );
|
|
|
|
$sale_price = $sale_price === '' ? '' : wc_format_decimal( $sale_price );
|
|
|
|
$date_from = wc_clean( $date_from );
|
|
|
|
$date_to = wc_clean( $date_to );
|
|
|
|
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_regular_price', $regular_price );
|
|
|
|
update_post_meta( $product_id, '_sale_price', $sale_price );
|
2015-07-07 19:06:34 +00:00
|
|
|
|
|
|
|
// Save Dates
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_sale_price_dates_from', $date_from ? strtotime( $date_from ) : '' );
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_to', $date_to ? strtotime( $date_to ) : '' );
|
2015-07-07 19:06:34 +00:00
|
|
|
|
|
|
|
if ( $date_to && ! $date_from ) {
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_sale_price_dates_from', strtotime( 'NOW', current_time( 'timestamp' ) ) );
|
2015-07-07 19:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update price if on sale
|
|
|
|
if ( '' !== $sale_price && '' === $date_to && '' === $date_from ) {
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_price', $sale_price );
|
2015-07-07 19:06:34 +00:00
|
|
|
} else {
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_price', $regular_price );
|
2015-07-07 19:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( '' !== $sale_price && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) {
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_price', $sale_price );
|
2015-07-07 19:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) {
|
2015-07-07 19:39:59 +00:00
|
|
|
update_post_meta( $product_id, '_price', $regular_price );
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_from', '' );
|
|
|
|
update_post_meta( $product_id, '_sale_price_dates_to', '' );
|
2015-07-07 19:06:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-28 15:20:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get attibutes/data for an individual variation from the database and maintain it's integrity.
|
|
|
|
* @since 2.4.0
|
|
|
|
* @param int $variation_id
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function wc_get_product_variation_attributes( $variation_id ) {
|
|
|
|
// Build variation data from meta
|
|
|
|
$all_meta = get_post_meta( $variation_id );
|
|
|
|
$parent_id = wp_get_post_parent_id( $variation_id );
|
|
|
|
$parent_attributes = array_filter( (array) get_post_meta( $parent_id, '_product_attributes', true ) );
|
|
|
|
$found_parent_attributes = array();
|
|
|
|
$variation_attributes = array();
|
|
|
|
|
|
|
|
// Compare to parent variable product attributes and ensure they match
|
|
|
|
foreach ( $parent_attributes as $attribute_name => $options ) {
|
|
|
|
$attribute = 'attribute_' . sanitize_title( $attribute_name );
|
|
|
|
$found_parent_attributes[] = $attribute;
|
2015-08-12 17:02:13 +00:00
|
|
|
if ( $options['is_variation'] && ! array_key_exists( $attribute, $variation_attributes ) ) {
|
2015-07-28 15:20:51 +00:00
|
|
|
$variation_attributes[ $attribute ] = ''; // Add it - 'any' will be asumed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the variation attributes from meta
|
|
|
|
foreach ( $all_meta as $name => $value ) {
|
|
|
|
// Only look at valid attribute meta, and also compare variation level attributes and remove any which do not exist at parent level
|
|
|
|
if ( 0 !== strpos( $name, 'attribute_' ) || ! in_array( $name, $found_parent_attributes ) ) {
|
|
|
|
unset( $variation_attributes[ $name ] );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Pre 2.4 handling where 'slugs' were saved instead of the full text attribute.
|
|
|
|
* Attempt to get full version of the text attribute from the parent.
|
|
|
|
*/
|
|
|
|
if ( sanitize_title( $value[0] ) === $value[0] && version_compare( get_post_meta( $parent_id, '_product_version', true ), '2.4.0', '<' ) ) {
|
|
|
|
foreach ( $parent_attributes as $attribute ) {
|
|
|
|
if ( $name !== 'attribute_' . sanitize_title( $attribute['name'] ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$text_attributes = wc_get_text_attributes( $attribute['value'] );
|
|
|
|
|
|
|
|
foreach ( $text_attributes as $text_attribute ) {
|
|
|
|
if ( sanitize_title( $text_attribute ) === $value[0] ) {
|
|
|
|
$value[0] = $text_attribute;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$variation_attributes[ $name ] = $value[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $variation_attributes;
|
|
|
|
}
|