recently viewed products
This commit is contained in:
parent
d2596ddeea
commit
6381bf5d56
|
@ -0,0 +1,138 @@
|
|||
<?php
|
||||
/**
|
||||
* Recent Products Widget
|
||||
*
|
||||
* @package WooCommerce
|
||||
* @category Widgets
|
||||
* @author WooThemes
|
||||
*/
|
||||
|
||||
class WooCommerce_Widget_Recently_Viewed extends WP_Widget {
|
||||
|
||||
/** Variables to setup the widget. */
|
||||
var $woo_widget_cssclass;
|
||||
var $woo_widget_description;
|
||||
var $woo_widget_idbase;
|
||||
var $woo_widget_name;
|
||||
|
||||
/** constructor */
|
||||
function WooCommerce_Widget_Recently_Viewed() {
|
||||
|
||||
/* Widget variable settings. */
|
||||
$this->woo_widget_cssclass = 'widget_recently_viewed_products';
|
||||
$this->woo_widget_description = __( 'Display a list of recently viewed products.', 'woothemes' );
|
||||
$this->woo_widget_idbase = 'woocommerce_recently_viewed_products';
|
||||
$this->woo_widget_name = __('WooCommerce Recently Viewed Products', 'woothemes' );
|
||||
|
||||
/* Widget settings. */
|
||||
$widget_ops = array( 'classname' => $this->woo_widget_cssclass, 'description' => $this->woo_widget_description );
|
||||
|
||||
/* Create the widget. */
|
||||
$this->WP_Widget('recently_viewed_products', $this->woo_widget_name, $widget_ops);
|
||||
|
||||
add_action( 'save_post', array(&$this, 'flush_widget_cache') );
|
||||
add_action( 'deleted_post', array(&$this, 'flush_widget_cache') );
|
||||
add_action( 'switch_theme', array(&$this, 'flush_widget_cache') );
|
||||
}
|
||||
|
||||
/** @see WP_Widget::widget */
|
||||
function widget($args, $instance) {
|
||||
*$cache = wp_cache_get('recently_viewed_products', 'widget');
|
||||
|
||||
if ( !is_array($cache) ) $cache = array();
|
||||
|
||||
if ( isset($cache[$args['widget_id']]) ) {
|
||||
echo $cache[$args['widget_id']];
|
||||
return;
|
||||
}
|
||||
|
||||
if (!isset($_SESSION['viewed_products']) || sizeof($_SESSION['viewed_products'])==0) return;
|
||||
|
||||
ob_start();
|
||||
extract($args);
|
||||
|
||||
$title = apply_filters('widget_title', empty($instance['title']) ? __('Recently viewed', 'woothemes') : $instance['title'], $instance, $this->id_base);
|
||||
if ( !$number = (int) $instance['number'] )
|
||||
$number = 10;
|
||||
else if ( $number < 1 )
|
||||
$number = 1;
|
||||
else if ( $number > 15 )
|
||||
$number = 15;
|
||||
|
||||
$args = array('showposts' => $number, 'nopaging' => 0, 'post_status' => 'publish', 'post_type' => 'product', 'post__in' => $_SESSION['viewed_products'], 'orderby' => 'rand');
|
||||
|
||||
$r = new WP_Query($args);
|
||||
|
||||
if ($r->have_posts()) :
|
||||
?>
|
||||
<?php echo $before_widget; ?>
|
||||
<?php if ( $title ) echo $before_title . $title . $after_title; ?>
|
||||
<ul class="product_list_widget">
|
||||
<?php while ($r->have_posts()) : $r->the_post(); $_product = &new woocommerce_product(get_the_ID()); ?>
|
||||
<li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>">
|
||||
<?php if (has_post_thumbnail()) the_post_thumbnail('shop_thumbnail'); else echo '<img src="'.woocommerce::plugin_url().'/assets/images/placeholder.png" alt="Placeholder" width="'.woocommerce::get_var('shop_thumbnail_image_width').'px" height="'.woocommerce::get_var('shop_thumbnail_image_height').'px" />'; ?>
|
||||
<?php if ( get_the_title() ) the_title(); else the_ID(); ?>
|
||||
</a> <?php echo $_product->get_price_html(); ?></li>
|
||||
<?php endwhile; ?>
|
||||
</ul>
|
||||
<?php echo $after_widget; ?>
|
||||
<?php
|
||||
// Reset the global $the_post as this query will have stomped on it
|
||||
wp_reset_query();
|
||||
|
||||
endif;
|
||||
|
||||
if (isset($args['widget_id']) && isset($cache[$args['widget_id']])) $cache[$args['widget_id']] = ob_get_flush();
|
||||
wp_cache_set('recently_viewed_products', $cache, 'widget');
|
||||
}
|
||||
|
||||
/** @see WP_Widget::update */
|
||||
function update( $new_instance, $old_instance ) {
|
||||
$instance = $old_instance;
|
||||
$instance['title'] = strip_tags($new_instance['title']);
|
||||
$instance['number'] = (int) $new_instance['number'];
|
||||
|
||||
$this->flush_widget_cache();
|
||||
|
||||
$alloptions = wp_cache_get( 'alloptions', 'options' );
|
||||
if ( isset($alloptions['recently_viewed_products']) ) delete_option('recently_viewed_products');
|
||||
|
||||
return $instance;
|
||||
}
|
||||
|
||||
function flush_widget_cache() {
|
||||
wp_cache_delete('recently_viewed_products', 'widget');
|
||||
}
|
||||
|
||||
/** @see WP_Widget::form */
|
||||
function form( $instance ) {
|
||||
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
|
||||
if ( !isset($instance['number']) || !$number = (int) $instance['number'] ) $number = 5;
|
||||
|
||||
$show_variations = isset( $instance['show_variations'] ) ? (bool) $instance['show_variations'] : false;
|
||||
?>
|
||||
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'woothemes'); ?></label>
|
||||
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
|
||||
|
||||
<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of products to show:', 'woothemes'); ?></label>
|
||||
<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
|
||||
|
||||
<?php
|
||||
}
|
||||
} // class WooCommerce_Widget_Recently_Viewed
|
||||
|
||||
|
||||
/**
|
||||
* Track product views
|
||||
*/
|
||||
add_action( 'woocommerce_before_single_product', 'woocommerce_track_product_view', 10, 2);
|
||||
|
||||
function woocommerce_track_product_view( $post, $_product ) {
|
||||
|
||||
if (!isset($_SESSION['viewed_products']) || !is_array($_SESSION['viewed_products'])) $_SESSION['viewed_products'] = array();
|
||||
|
||||
if (!in_array($post->ID, $_SESSION['viewed_products'])) $_SESSION['viewed_products'][] = $post->ID;
|
||||
|
||||
if (sizeof($_SESSION['viewed_products'])>15) array_shift($_SESSION['viewed_products']);
|
||||
|
||||
}
|
|
@ -19,6 +19,7 @@ include_once('widget-product_tag_cloud.php');
|
|||
include_once('widget-recent_products.php');
|
||||
include_once('widget-top_rated_products.php');
|
||||
include_once('widget-recent_reviews.php');
|
||||
include_once('widget-recently_viewed.php');
|
||||
|
||||
function woocommerce_register_widgets() {
|
||||
register_widget('WooCommerce_Widget_Recent_Products');
|
||||
|
@ -31,5 +32,6 @@ function woocommerce_register_widgets() {
|
|||
register_widget('WooCommerce_Widget_Product_Search');
|
||||
register_widget('WooCommerce_Widget_Top_Rated_Products');
|
||||
register_widget('WooCommerce_Widget_Recent_Reviews');
|
||||
register_widget('WooCommerce_Widget_Recently_Viewed');
|
||||
}
|
||||
add_action('widgets_init', 'woocommerce_register_widgets');
|
Loading…
Reference in New Issue