2012-12-31 18:25:09 +00:00
|
|
|
<?php
|
2017-08-25 22:25:19 +00:00
|
|
|
/**
|
|
|
|
* Shortcodes
|
|
|
|
*
|
2018-03-21 03:18:50 +00:00
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @version 3.2.0
|
2017-08-25 22:25:19 +00:00
|
|
|
*/
|
2015-11-06 09:22:19 +00:00
|
|
|
|
2018-03-21 03:18:50 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2015-11-06 09:22:19 +00:00
|
|
|
|
2012-12-31 18:25:09 +00:00
|
|
|
/**
|
2017-08-25 22:25:19 +00:00
|
|
|
* WooCommerce Shortcodes class.
|
2012-12-31 18:25:09 +00:00
|
|
|
*/
|
|
|
|
class WC_Shortcodes {
|
|
|
|
|
2013-10-23 11:55:40 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Init shortcodes.
|
2013-10-23 11:55:40 +00:00
|
|
|
*/
|
2013-11-01 21:15:52 +00:00
|
|
|
public static function init() {
|
2013-10-23 13:55:18 +00:00
|
|
|
$shortcodes = array(
|
|
|
|
'product' => __CLASS__ . '::product',
|
|
|
|
'product_page' => __CLASS__ . '::product_page',
|
|
|
|
'product_category' => __CLASS__ . '::product_category',
|
|
|
|
'product_categories' => __CLASS__ . '::product_categories',
|
|
|
|
'add_to_cart' => __CLASS__ . '::product_add_to_cart',
|
|
|
|
'add_to_cart_url' => __CLASS__ . '::product_add_to_cart_url',
|
|
|
|
'products' => __CLASS__ . '::products',
|
|
|
|
'recent_products' => __CLASS__ . '::recent_products',
|
|
|
|
'sale_products' => __CLASS__ . '::sale_products',
|
|
|
|
'best_selling_products' => __CLASS__ . '::best_selling_products',
|
|
|
|
'top_rated_products' => __CLASS__ . '::top_rated_products',
|
|
|
|
'featured_products' => __CLASS__ . '::featured_products',
|
|
|
|
'product_attribute' => __CLASS__ . '::product_attribute',
|
|
|
|
'related_products' => __CLASS__ . '::related_products',
|
|
|
|
'shop_messages' => __CLASS__ . '::shop_messages',
|
|
|
|
'woocommerce_order_tracking' => __CLASS__ . '::order_tracking',
|
|
|
|
'woocommerce_cart' => __CLASS__ . '::cart',
|
|
|
|
'woocommerce_checkout' => __CLASS__ . '::checkout',
|
|
|
|
'woocommerce_my_account' => __CLASS__ . '::my_account',
|
|
|
|
);
|
|
|
|
|
2013-12-29 13:54:55 +00:00
|
|
|
foreach ( $shortcodes as $shortcode => $function ) {
|
2013-10-23 13:55:18 +00:00
|
|
|
add_shortcode( apply_filters( "{$shortcode}_shortcode_tag", $shortcode ), $function );
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-10-23 13:55:18 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Alias for pre 2.1 compatibility.
|
2013-10-23 13:55:18 +00:00
|
|
|
add_shortcode( 'woocommerce_messages', __CLASS__ . '::shop_messages' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 16:11:15 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Shortcode Wrapper.
|
2013-08-09 16:11:15 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param string[] $function Callback function.
|
|
|
|
* @param array $atts Attributes. Default to empty array.
|
|
|
|
* @param array $wrapper Customer wrapper data.
|
2017-05-15 11:50:52 +00:00
|
|
|
*
|
2013-08-09 16:11:15 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function shortcode_wrapper(
|
|
|
|
$function,
|
2017-08-25 22:25:19 +00:00
|
|
|
$atts = array(),
|
2013-08-09 16:11:15 +00:00
|
|
|
$wrapper = array(
|
2013-12-29 13:54:55 +00:00
|
|
|
'class' => 'woocommerce',
|
2013-08-09 16:11:15 +00:00
|
|
|
'before' => null,
|
2016-08-27 01:46:45 +00:00
|
|
|
'after' => null,
|
2013-08-09 16:11:15 +00:00
|
|
|
)
|
2013-10-23 11:55:40 +00:00
|
|
|
) {
|
2013-08-09 16:11:15 +00:00
|
|
|
ob_start();
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreStart
|
2015-04-13 11:48:40 +00:00
|
|
|
echo empty( $wrapper['before'] ) ? '<div class="' . esc_attr( $wrapper['class'] ) . '">' : $wrapper['before'];
|
2013-08-09 16:11:15 +00:00
|
|
|
call_user_func( $function, $atts );
|
2015-04-13 11:48:40 +00:00
|
|
|
echo empty( $wrapper['after'] ) ? '</div>' : $wrapper['after'];
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreEnd
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
|
|
|
|
2012-12-31 18:25:09 +00:00
|
|
|
/**
|
|
|
|
* Cart page shortcode.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-09-24 14:26:48 +00:00
|
|
|
public static function cart() {
|
2015-04-13 11:48:40 +00:00
|
|
|
return is_null( WC()->cart ) ? '' : self::shortcode_wrapper( array( 'WC_Shortcode_Cart', 'output' ) );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkout page shortcode.
|
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function checkout( $atts ) {
|
|
|
|
return self::shortcode_wrapper( array( 'WC_Shortcode_Checkout', 'output' ), $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Order tracking page shortcode.
|
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function order_tracking( $atts ) {
|
|
|
|
return self::shortcode_wrapper( array( 'WC_Shortcode_Order_Tracking', 'output' ), $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-02 12:52:18 +00:00
|
|
|
* My account page shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function my_account( $atts ) {
|
|
|
|
return self::shortcode_wrapper( array( 'WC_Shortcode_My_Account', 'output' ), $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List products in a category shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function product_category( $atts ) {
|
2017-08-25 00:24:05 +00:00
|
|
|
if ( empty( $atts['category'] ) ) {
|
2014-07-31 06:10:07 +00:00
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 00:24:05 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'menu_order title',
|
|
|
|
'order' => 'ASC',
|
|
|
|
'category' => '',
|
|
|
|
'cat_operator' => 'IN',
|
2017-08-25 00:31:58 +00:00
|
|
|
), (array) $atts );
|
2014-06-09 08:15:46 +00:00
|
|
|
|
2017-08-25 00:24:05 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'product_category' );
|
2014-06-09 08:15:46 +00:00
|
|
|
|
2017-08-25 00:24:05 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List all (or limited) product categories.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_categories( $atts ) {
|
2017-08-28 20:57:39 +00:00
|
|
|
if ( isset( $atts['number'] ) ) {
|
|
|
|
$atts['limit'] = $atts['number'];
|
|
|
|
}
|
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '-1',
|
2012-12-31 18:25:09 +00:00
|
|
|
'orderby' => 'name',
|
|
|
|
'order' => 'ASC',
|
2015-02-04 12:44:27 +00:00
|
|
|
'columns' => '4',
|
2012-12-31 18:25:09 +00:00
|
|
|
'hide_empty' => 1,
|
2015-02-04 12:44:27 +00:00
|
|
|
'parent' => '',
|
2016-08-27 01:46:45 +00:00
|
|
|
'ids' => '',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'product_categories' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2016-09-12 12:10:08 +00:00
|
|
|
$ids = array_filter( array_map( 'trim', explode( ',', $atts['ids'] ) ) );
|
2016-09-12 13:53:04 +00:00
|
|
|
$hide_empty = ( true === $atts['hide_empty'] || 'true' === $atts['hide_empty'] || 1 === $atts['hide_empty'] || '1' === $atts['hide_empty'] ) ? 1 : 0;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Get terms and workaround WP bug with parents/pad counts.
|
2013-12-29 13:41:48 +00:00
|
|
|
$args = array(
|
2014-11-20 02:14:06 +00:00
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
2013-12-29 13:41:48 +00:00
|
|
|
'hide_empty' => $hide_empty,
|
2012-12-31 18:25:09 +00:00
|
|
|
'include' => $ids,
|
2013-02-08 16:30:39 +00:00
|
|
|
'pad_counts' => true,
|
2016-08-27 01:46:45 +00:00
|
|
|
'child_of' => $atts['parent'],
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$product_categories = get_terms( 'product_cat', $args );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( '' !== $atts['parent'] ) {
|
2017-08-25 22:25:19 +00:00
|
|
|
$product_categories = wp_list_filter( $product_categories, array(
|
|
|
|
'parent' => $atts['parent'],
|
|
|
|
) );
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-02-08 16:30:39 +00:00
|
|
|
|
2014-02-11 15:55:46 +00:00
|
|
|
if ( $hide_empty ) {
|
|
|
|
foreach ( $product_categories as $key => $category ) {
|
2017-08-25 22:25:19 +00:00
|
|
|
if ( 0 === $category->count ) {
|
2014-02-11 15:55:46 +00:00
|
|
|
unset( $product_categories[ $key ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-28 20:57:39 +00:00
|
|
|
$atts['limit'] = '-1' === $atts['limit'] ? null : intval( $atts['limit'] );
|
|
|
|
if ( $atts['limit'] ) {
|
|
|
|
$product_categories = array_slice( $product_categories, 0, $atts['limit'] );
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-02-08 16:30:39 +00:00
|
|
|
|
2015-05-20 15:27:07 +00:00
|
|
|
$columns = absint( $atts['columns'] );
|
2017-12-06 18:10:44 +00:00
|
|
|
|
|
|
|
wc_set_loop_prop( 'columns', $columns );
|
2018-03-19 11:12:18 +00:00
|
|
|
wc_set_loop_prop( 'is_shortcode', true );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
ob_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( $product_categories ) {
|
|
|
|
woocommerce_product_loop_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
foreach ( $product_categories as $category ) {
|
2013-11-25 12:45:04 +00:00
|
|
|
wc_get_template( 'content-product_cat.php', array(
|
2016-08-27 01:46:45 +00:00
|
|
|
'category' => $category,
|
2012-12-31 18:25:09 +00:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_product_loop_end();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_reset_loop();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-05-20 15:27:07 +00:00
|
|
|
return '<div class="woocommerce columns-' . $columns . '">' . ob_get_clean() . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Recent Products shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function recent_products( $atts ) {
|
2017-08-25 00:31:58 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'date',
|
|
|
|
'order' => 'DESC',
|
|
|
|
'category' => '',
|
|
|
|
'cat_operator' => 'IN',
|
2017-08-25 00:31:58 +00:00
|
|
|
), (array) $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 00:31:58 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'recent_products' );
|
2015-09-16 07:26:30 +00:00
|
|
|
|
2017-08-25 00:31:58 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List multiple products shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function products( $atts ) {
|
2017-08-25 23:04:53 +00:00
|
|
|
$atts = (array) $atts;
|
|
|
|
$type = 'products';
|
|
|
|
|
|
|
|
// Allow list product based on specific cases.
|
|
|
|
if ( isset( $atts['on_sale'] ) && wc_string_to_bool( $atts['on_sale'] ) ) {
|
|
|
|
$type = 'sale_products';
|
|
|
|
} elseif ( isset( $atts['best_selling'] ) && wc_string_to_bool( $atts['best_selling'] ) ) {
|
|
|
|
$type = 'best_selling_products';
|
|
|
|
} elseif ( isset( $atts['top_rated'] ) && wc_string_to_bool( $atts['top_rated'] ) ) {
|
|
|
|
$type = 'top_rated_products';
|
|
|
|
}
|
|
|
|
|
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, $type );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-24 22:33:14 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Display a single product.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2013-12-29 13:41:48 +00:00
|
|
|
|
2017-08-28 20:57:39 +00:00
|
|
|
$atts['skus'] = isset( $atts['sku'] ) ? $atts['sku'] : '';
|
|
|
|
$atts['ids'] = isset( $atts['id'] ) ? $atts['id'] : '';
|
|
|
|
$atts['limit'] = '1';
|
|
|
|
$shortcode = new WC_Shortcode_Products( (array) $atts, 'product' );
|
2014-12-21 15:31:27 +00:00
|
|
|
|
2017-08-25 01:16:42 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Display a single product price + cart button.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_add_to_cart( $atts ) {
|
2017-05-15 09:54:06 +00:00
|
|
|
global $post;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2013-11-18 14:37:27 +00:00
|
|
|
'id' => '',
|
2014-02-28 21:43:31 +00:00
|
|
|
'class' => '',
|
2014-11-20 02:14:06 +00:00
|
|
|
'quantity' => '1',
|
2013-11-18 14:37:27 +00:00
|
|
|
'sku' => '',
|
|
|
|
'style' => 'border:4px solid #ccc; padding: 12px;',
|
2016-08-27 01:46:45 +00:00
|
|
|
'show_price' => 'true',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'product_add_to_cart' );
|
2013-11-18 14:37:27 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( ! empty( $atts['id'] ) ) {
|
|
|
|
$product_data = get_post( $atts['id'] );
|
|
|
|
} elseif ( ! empty( $atts['sku'] ) ) {
|
2014-11-27 12:31:56 +00:00
|
|
|
$product_id = wc_get_product_id_by_sku( $atts['sku'] );
|
2012-12-31 18:25:09 +00:00
|
|
|
$product_data = get_post( $product_id );
|
|
|
|
} else {
|
2013-11-29 09:15:58 +00:00
|
|
|
return '';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
$product = is_object( $product_data ) && in_array( $product_data->post_type, array( 'product', 'product_variation' ), true ) ? wc_setup_product_data( $product_data ) : false;
|
2016-03-11 12:53:50 +00:00
|
|
|
|
|
|
|
if ( ! $product ) {
|
2013-11-29 09:15:58 +00:00
|
|
|
return '';
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-11-27 16:03:54 +00:00
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
ob_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-09-20 12:18:16 +00:00
|
|
|
echo '<p class="product woocommerce add_to_cart_inline ' . esc_attr( $atts['class'] ) . '" style="' . ( empty( $atts['style'] ) ? '' : esc_attr( $atts['style'] ) ) . '">';
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
if ( wc_string_to_bool( $atts['show_price'] ) ) {
|
|
|
|
// @codingStandardsIgnoreStart
|
|
|
|
echo $product->get_price_html();
|
|
|
|
// @codingStandardsIgnoreEnd
|
|
|
|
}
|
|
|
|
|
|
|
|
woocommerce_template_loop_add_to_cart( array(
|
|
|
|
'quantity' => $atts['quantity'],
|
|
|
|
) );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
echo '</p>';
|
2013-02-20 18:10:03 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Restore Product global in case this is shown inside a product post.
|
2013-09-26 14:11:28 +00:00
|
|
|
wc_setup_product_data( $post );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
return ob_get_clean();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Get the add to cart URL for a product.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_add_to_cart_url( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( isset( $atts['id'] ) ) {
|
|
|
|
$product_data = get_post( $atts['id'] );
|
2012-12-31 18:25:09 +00:00
|
|
|
} elseif ( isset( $atts['sku'] ) ) {
|
2014-11-27 12:31:56 +00:00
|
|
|
$product_id = wc_get_product_id_by_sku( $atts['sku'] );
|
2012-12-31 18:25:09 +00:00
|
|
|
$product_data = get_post( $product_id );
|
2016-01-07 09:07:02 +00:00
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
$product = is_object( $product_data ) && in_array( $product_data->post_type, array( 'product', 'product_variation' ), true ) ? wc_setup_product_data( $product_data ) : false;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2016-03-11 12:53:50 +00:00
|
|
|
if ( ! $product ) {
|
2013-11-29 09:15:58 +00:00
|
|
|
return '';
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-08-19 10:09:29 +00:00
|
|
|
$_product = wc_get_product( $product_data );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
return esc_url( $_product->add_to_cart_url() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List all products on sale.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function sale_products( $atts ) {
|
2017-08-25 14:00:48 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
|
|
|
'order' => 'ASC',
|
|
|
|
'category' => '',
|
|
|
|
'cat_operator' => 'IN',
|
2017-08-25 14:00:48 +00:00
|
|
|
), (array) $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 14:00:48 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'sale_products' );
|
2016-04-20 11:27:20 +00:00
|
|
|
|
2017-08-25 14:00:48 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List best selling products on sale.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function best_selling_products( $atts ) {
|
2017-08-25 14:46:47 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'category' => '',
|
|
|
|
'cat_operator' => 'IN',
|
2017-08-25 14:46:47 +00:00
|
|
|
), (array) $atts );
|
2013-12-29 13:41:48 +00:00
|
|
|
|
2017-08-25 14:46:47 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'best_selling_products' );
|
2015-09-16 07:26:30 +00:00
|
|
|
|
2017-08-25 14:46:47 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List top rated products on sale.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function top_rated_products( $atts ) {
|
2017-08-25 18:55:34 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
|
|
|
'order' => 'ASC',
|
|
|
|
'category' => '',
|
|
|
|
'cat_operator' => 'IN',
|
2017-08-25 18:55:34 +00:00
|
|
|
), (array) $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 18:55:34 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'top_rated_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 18:55:34 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Output featured products.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function featured_products( $atts ) {
|
2017-08-25 21:42:02 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'date',
|
|
|
|
'order' => 'DESC',
|
|
|
|
'category' => '',
|
|
|
|
'cat_operator' => 'IN',
|
2017-08-25 21:42:02 +00:00
|
|
|
), (array) $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-29 21:29:29 +00:00
|
|
|
$atts['visibility'] = 'featured';
|
|
|
|
|
2017-08-25 21:42:02 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'featured_products' );
|
2015-09-16 07:26:30 +00:00
|
|
|
|
2017-08-25 21:42:02 +00:00
|
|
|
return $shortcode->get_content();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Show a single product page.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2012-12-31 18:25:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 13:55:18 +00:00
|
|
|
public static function product_page( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( ! isset( $atts['id'] ) && ! isset( $atts['sku'] ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$args = array(
|
2014-11-20 02:14:06 +00:00
|
|
|
'posts_per_page' => 1,
|
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
2016-08-27 01:46:45 +00:00
|
|
|
'no_found_rows' => 1,
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( isset( $atts['sku'] ) ) {
|
|
|
|
$args['meta_query'][] = array(
|
|
|
|
'key' => '_sku',
|
2015-01-19 17:07:57 +00:00
|
|
|
'value' => sanitize_text_field( $atts['sku'] ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'compare' => '=',
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
2015-01-17 05:01:05 +00:00
|
|
|
|
|
|
|
$args['post_type'] = array( 'product', 'product_variation' );
|
2013-12-29 13:41:48 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( isset( $atts['id'] ) ) {
|
2015-01-19 17:07:57 +00:00
|
|
|
$args['p'] = absint( $atts['id'] );
|
2013-12-29 13:41:48 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-11-13 18:36:58 +00:00
|
|
|
// Don't render titles if desired.
|
|
|
|
if ( isset( $atts['show_title'] ) && ! $atts['show_title'] ) {
|
|
|
|
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
|
|
|
|
}
|
|
|
|
|
2018-02-20 11:15:09 +00:00
|
|
|
// Change form action to avoid redirect.
|
|
|
|
add_filter( 'woocommerce_add_to_cart_form_action', '__return_empty_string' );
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$single_product = new WP_Query( $args );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-01-19 16:54:28 +00:00
|
|
|
$preselected_id = '0';
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Check if sku is a variation.
|
2016-09-07 22:32:24 +00:00
|
|
|
if ( isset( $atts['sku'] ) && $single_product->have_posts() && 'product_variation' === $single_product->post->post_type ) {
|
2015-04-13 11:48:40 +00:00
|
|
|
|
2018-03-21 03:18:50 +00:00
|
|
|
$variation = new WC_Product_Variation( $single_product->post->ID );
|
WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
|
|
|
$attributes = $variation->get_attributes();
|
2015-01-17 05:01:05 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Set preselected id to be used by JS to provide context.
|
2015-01-19 16:54:28 +00:00
|
|
|
$preselected_id = $single_product->post->ID;
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Get the parent product object.
|
2015-01-17 05:01:05 +00:00
|
|
|
$args = array(
|
|
|
|
'posts_per_page' => 1,
|
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'no_found_rows' => 1,
|
2016-08-27 01:46:45 +00:00
|
|
|
'p' => $single_product->post->post_parent,
|
2015-01-17 05:01:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$single_product = new WP_Query( $args );
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery( document ).ready( function( $ ) {
|
2015-01-19 16:54:28 +00:00
|
|
|
var $variations_form = $( '[data-product-page-preselected-id="<?php echo esc_attr( $preselected_id ); ?>"]' ).find( 'form.variations_form' );
|
2015-01-17 05:01:05 +00:00
|
|
|
|
2016-08-27 04:23:02 +00:00
|
|
|
<?php foreach ( $attributes as $attr => $value ) { ?>
|
2017-01-06 12:45:26 +00:00
|
|
|
$variations_form.find( 'select[name="<?php echo esc_attr( $attr ); ?>"]' ).val( '<?php echo esc_js( $value ); ?>' );
|
2015-01-17 05:01:05 +00:00
|
|
|
<?php } ?>
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
2015-04-13 11:48:40 +00:00
|
|
|
|
2017-07-14 17:06:18 +00:00
|
|
|
// For "is_single" to always make load comments_template() for reviews.
|
|
|
|
$single_product->is_single = true;
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
ob_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
global $wp_query;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
// Backup query object so following loops think this is a product page.
|
|
|
|
$previous_wp_query = $wp_query;
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreStart
|
2017-04-12 11:33:24 +00:00
|
|
|
$wp_query = $single_product;
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreEnd
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
wp_enqueue_script( 'wc-single-product' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
while ( $single_product->have_posts() ) {
|
|
|
|
$single_product->the_post()
|
|
|
|
?>
|
|
|
|
<div class="single-product" data-product-page-preselected-id="<?php echo esc_attr( $preselected_id ); ?>">
|
|
|
|
<?php wc_get_template_part( 'content', 'single-product' ); ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
</div>
|
2017-04-12 11:33:24 +00:00
|
|
|
<?php
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Restore $previous_wp_query and reset post data.
|
|
|
|
// @codingStandardsIgnoreStart
|
2017-04-12 11:33:24 +00:00
|
|
|
$wp_query = $previous_wp_query;
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreEnd
|
2012-12-31 18:25:09 +00:00
|
|
|
wp_reset_postdata();
|
|
|
|
|
2017-11-13 18:36:58 +00:00
|
|
|
// Re-enable titles if they were removed.
|
|
|
|
if ( isset( $atts['show_title'] ) && ! $atts['show_title'] ) {
|
|
|
|
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
|
|
|
|
}
|
|
|
|
|
2018-02-20 11:15:09 +00:00
|
|
|
remove_filter( 'woocommerce_add_to_cart_form_action', '__return_empty_string' );
|
|
|
|
|
2013-01-29 13:01:09 +00:00
|
|
|
return '<div class="woocommerce">' . ob_get_clean() . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Show messages.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 13:55:18 +00:00
|
|
|
public static function shop_messages() {
|
2018-04-19 17:27:29 +00:00
|
|
|
return '<div class="woocommerce">' . wc_print_notices( true ) . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-08-25 18:55:34 +00:00
|
|
|
* Order by rating.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2017-08-25 18:55:34 +00:00
|
|
|
* @deprecated 3.2.0 Use WC_Shortcode_Products::order_by_rating_post_clauses().
|
|
|
|
* @param array $args Query args.
|
|
|
|
* @return array
|
2012-12-31 18:25:09 +00:00
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function order_by_rating_post_clauses( $args ) {
|
2017-08-25 18:55:34 +00:00
|
|
|
return WC_Shortcode_Products::order_by_rating_post_clauses( $args );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
2013-03-03 14:51:25 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List products with an attribute shortcode.
|
2017-08-25 22:25:19 +00:00
|
|
|
* Example [product_attribute attribute="color" filter="black"].
|
2013-03-03 14:51:25 +00:00
|
|
|
*
|
2017-08-25 22:25:19 +00:00
|
|
|
* @param array $atts Attributes.
|
2013-03-03 14:51:25 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_attribute( $atts ) {
|
2017-08-25 22:07:10 +00:00
|
|
|
$atts = array_merge( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '12',
|
2013-03-10 13:30:48 +00:00
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
2017-08-25 23:04:53 +00:00
|
|
|
'order' => 'ASC',
|
2013-03-10 13:30:48 +00:00
|
|
|
'attribute' => '',
|
2017-08-28 20:57:39 +00:00
|
|
|
'terms' => '',
|
2017-08-25 22:07:10 +00:00
|
|
|
), (array) $atts );
|
2013-03-03 14:51:25 +00:00
|
|
|
|
2017-08-28 20:57:39 +00:00
|
|
|
if ( empty( $atts['attribute'] ) ) {
|
2017-08-25 22:07:10 +00:00
|
|
|
return '';
|
|
|
|
}
|
2016-12-08 10:56:45 +00:00
|
|
|
|
2017-08-25 22:07:10 +00:00
|
|
|
$shortcode = new WC_Shortcode_Products( $atts, 'product_attribute' );
|
2013-03-03 14:51:25 +00:00
|
|
|
|
2017-08-25 22:07:10 +00:00
|
|
|
return $shortcode->get_content();
|
2013-03-03 14:51:25 +00:00
|
|
|
}
|
2013-04-15 07:36:30 +00:00
|
|
|
|
2013-11-28 17:59:09 +00:00
|
|
|
/**
|
2015-10-09 01:53:15 +00:00
|
|
|
* List related products.
|
2017-08-25 22:25:19 +00:00
|
|
|
*
|
|
|
|
* @param array $atts Attributes.
|
2013-11-28 17:59:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 13:55:18 +00:00
|
|
|
public static function related_products( $atts ) {
|
2017-08-28 20:57:39 +00:00
|
|
|
if ( isset( $atts['per_page'] ) ) {
|
|
|
|
$atts['limit'] = $atts['per_page'];
|
|
|
|
}
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreStart
|
2013-05-16 12:39:53 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2017-08-28 20:57:39 +00:00
|
|
|
'limit' => '4',
|
2015-10-09 01:53:15 +00:00
|
|
|
'columns' => '4',
|
2016-08-27 01:46:45 +00:00
|
|
|
'orderby' => 'rand',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'related_products' );
|
2017-08-25 22:25:19 +00:00
|
|
|
// @codingStandardsIgnoreEnd
|
2013-05-16 12:39:53 +00:00
|
|
|
|
2013-04-15 07:36:30 +00:00
|
|
|
ob_start();
|
|
|
|
|
2017-08-25 22:25:19 +00:00
|
|
|
// Rename arg.
|
2017-08-28 20:57:39 +00:00
|
|
|
$atts['posts_per_page'] = absint( $atts['limit'] );
|
2016-06-08 09:39:28 +00:00
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_related_products( $atts );
|
2013-04-15 07:36:30 +00:00
|
|
|
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
2013-11-02 22:12:50 +00:00
|
|
|
}
|