';
else :
echo '
';
endif;
}
}
if (!function_exists('woocommerce_output_content_wrapper_end')) {
function woocommerce_output_content_wrapper_end() {
if ( get_option('template') === 'twentyeleven' ) :
echo '
';
else :
echo '
';
endif;
}
}
/**
* Sale Flash
**/
if (!function_exists('woocommerce_show_product_sale_flash')) {
function woocommerce_show_product_sale_flash( $post, $_product ) {
if ($_product->is_on_sale()) echo apply_filters('woocommerce_sale_flash', ''.__('Sale!', 'woothemes').' ', $post, $_product);
}
}
/**
* Sidebar
**/
if (!function_exists('woocommerce_get_sidebar')) {
function woocommerce_get_sidebar() {
get_sidebar('shop');
}
}
/**
* Products Loop
**/
if (!function_exists('woocommerce_template_loop_add_to_cart')) {
function woocommerce_template_loop_add_to_cart( $post, $_product ) {
// No price set - so no button
if( $_product->get_price() === '' && $_product->product_type!=='external') return;
if (!$_product->is_in_stock()) :
echo ''.__('Read More', 'woothemes').' ';
return;
endif;
switch ($_product->product_type) :
case "variable" :
$link = get_permalink($post->ID);
$label = apply_filters('variable_add_to_cart_text', __('Select options', 'woothemes'));
break;
case "grouped" :
$link = get_permalink($post->ID);
$label = apply_filters('grouped_add_to_cart_text', __('View options', 'woothemes'));
break;
case "external" :
$link = get_permalink($post->ID);
$label = apply_filters('external_add_to_cart_text', __('Read More', 'woothemes'));
break;
default :
$link = esc_url( $_product->add_to_cart_url() );
$label = apply_filters('add_to_cart_text', __('Add to cart', 'woothemes'));
break;
endswitch;
echo sprintf('%s ', $link, $_product->id, $_product->product_type, $label);
}
}
if (!function_exists('woocommerce_template_loop_product_thumbnail')) {
function woocommerce_template_loop_product_thumbnail( $post, $_product ) {
echo woocommerce_get_product_thumbnail();
}
}
if (!function_exists('woocommerce_template_loop_price')) {
function woocommerce_template_loop_price( $post, $_product ) {
$price_html = $_product->get_price_html();
if (!$price_html) return;
?> is_visible() && $post->post_parent > 0) : wp_safe_redirect(get_permalink($post->post_parent)); exit; endif;
if (!$_product->is_visible()) : wp_safe_redirect(home_url()); exit; endif;
}
}
/**
* Before Single Products Summary Div
**/
if (!function_exists('woocommerce_show_product_images')) {
function woocommerce_show_product_images() {
global $_product, $post, $woocommerce;
echo '';
$thumb_id = 0;
if (has_post_thumbnail()) :
$thumb_id = get_post_thumbnail_id();
$large_thumbnail_size = apply_filters('single_product_large_thumbnail_size', 'shop_single');
echo '
';
the_post_thumbnail($large_thumbnail_size);
echo ' ';
else :
echo '
';
endif;
do_action('woocommerce_product_thumbnails');
echo '
';
}
}
if (!function_exists('woocommerce_show_product_thumbnails')) {
function woocommerce_show_product_thumbnails() {
global $_product, $post;
echo '';
$thumb_id = get_post_thumbnail_id();
$small_thumbnail_size = apply_filters('single_product_small_thumbnail_size', 'shop_thumbnail');
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID,
'post__not_in' => array($thumb_id),
'post_mime_type' => 'image',
'meta_query' => array(
array(
'key' => '_woocommerce_exclude_image',
'value' => '1',
'compare' => '!='
)
)
);
$attachments = get_posts($args);
if ($attachments) :
$loop = 0;
$columns = apply_filters('woocommerce_product_thumbnails_columns', 3);
foreach ( $attachments as $attachment ) :
$loop++;
$_post = & get_post( $attachment->ID );
$url = wp_get_attachment_url($_post->ID);
$post_title = esc_attr($_post->post_title);
$image = wp_get_attachment_image($attachment->ID, $small_thumbnail_size);
echo '
'.$image.' ';
endforeach;
endif;
wp_reset_query();
echo '
';
}
}
/**
* After Single Products Summary Div
**/
if (!function_exists('woocommerce_output_product_data_tabs')) {
function woocommerce_output_product_data_tabs() {
?>
get_price_html(); ?>
post_excerpt) echo wpautop(wptexturize($post->post_excerpt));
}
}
if (!function_exists('woocommerce_template_single_meta')) {
function woocommerce_template_single_meta( $post, $_product ) {
?>
is_type('simple') && get_option('woocommerce_enable_sku')=='yes') : ?> sku; ?>. get_categories( ', ', ' '.__('Posted in', 'woothemes').' ', '. '); ?>get_tags( ', ', ' '.__('Tagged as', 'woothemes').' ', '. '); ?>
';
add_action( 'wp_footer', 'woocommerce_sharethis_script' );
endif;
}
}
/**
* Sharethis
*
* Adds social sharing code to the footer
**/
if (!function_exists('woocommerce_sharethis_script')) {
function woocommerce_sharethis_script() {
if (is_single() && get_option('woocommerce_sharethis')) :
if (is_ssl()) :
$sharethis = 'https://ws.sharethis.com/button/buttons.js';
else :
$sharethis = 'http://w.sharethis.com/button/buttons.js';
endif;
echo '';
endif;
}
}
/**
* Product Add to cart buttons
**/
if (!function_exists('woocommerce_template_single_add_to_cart')) {
function woocommerce_template_single_add_to_cart( $post, $_product ) {
do_action( 'woocommerce_' . $_product->product_type . '_add_to_cart' );
}
}
if (!function_exists('woocommerce_simple_add_to_cart')) {
function woocommerce_simple_add_to_cart() {
global $_product; $availability = $_product->get_availability();
// No price set - so no button
if( $_product->get_price() === '') return;
if ($availability['availability']) : ?>
is_in_stock()) return;
?>
get_available_attribute_variations();
$default_attributes = (array) maybe_unserialize(get_post_meta( $post->ID, '_default_attributes', true ));
$selected_attributes = apply_filters( 'woocommerce_product_default_attributes', $default_attributes );
// Put available variations into an array and put in a Javascript variable (JSON encoded)
$available_variations = array();
foreach($_product->get_children() as $child_id) {
$variation = $_product->get_child( $child_id );
if($variation instanceof woocommerce_product_variation) {
if (get_post_status( $variation->get_variation_id() ) != 'publish') continue; // Disabled
$variation_attributes = $variation->get_variation_attributes();
$availability = $variation->get_availability();
$availability_html = (!empty($availability['availability'])) ? ''. $availability['availability'].'
' : '';
if (has_post_thumbnail($variation->get_variation_id())) {
$attachment_id = get_post_thumbnail_id( $variation->get_variation_id() );
$large_thumbnail_size = apply_filters('single_product_large_thumbnail_size', 'shop_single');
$image = current(wp_get_attachment_image_src( $attachment_id, $large_thumbnail_size ));
$image_link = current(wp_get_attachment_image_src( $attachment_id, 'full' ));
} else {
$image = '';
$image_link = '';
}
$available_variations[] = array(
'variation_id' => $variation->get_variation_id(),
'attributes' => $variation_attributes,
'image_src' => $image,
'image_link' => $image_link,
'price_html' => ''.$variation->get_price_html().' ',
'availability_html' => $availability_html,
);
}
}
?>
id, 'product_url', true );
if (!$product_url) return;
?>
nonce_field('add_to_cart');
}
}
/**
* Pagination
**/
if (!function_exists('woocommerce_pagination')) {
function woocommerce_pagination() {
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) :
?>
→', 'woothemes' ) ); ?>
← Previous', 'woothemes' ) ); ?>
has_attributes()) : ?> ';
echo '' . apply_filters('woocommerce_product_description_heading', __('Product Description', 'woothemes')) . ' ';
the_content();
echo '';
}
}
if (!function_exists('woocommerce_product_attributes_panel')) {
function woocommerce_product_attributes_panel() {
global $_product;
echo '';
echo '
' . apply_filters('woocommerce_product_additional_information_heading', __('Additional Information', 'woothemes')) . ' ';
$_product->list_attributes();
echo '';
}
}
if (!function_exists('woocommerce_product_reviews_panel')) {
function woocommerce_product_reviews_panel() {
echo '';
comments_template();
echo '
';
}
}
/**
* WooCommerce Product Thumbnail
**/
if (!function_exists('woocommerce_get_product_thumbnail')) {
function woocommerce_get_product_thumbnail( $size = 'shop_catalog', $placeholder_width = 0, $placeholder_height = 0 ) {
global $post, $woocommerce;
if (!$placeholder_width) $placeholder_width = $woocommerce->get_image_size('shop_catalog_image_width');
if (!$placeholder_height) $placeholder_height = $woocommerce->get_image_size('shop_catalog_image_height');
if ( has_post_thumbnail() ) return get_the_post_thumbnail($post->ID, $size); else return ' ';
}
}
/**
* WooCommerce Related Products
**/
if (!function_exists('woocommerce_output_related_products')) {
function woocommerce_output_related_products() {
// 2 Related Products in 2 columns
woocommerce_related_products( 2, 2 );
}
}
if (!function_exists('woocommerce_related_products')) {
function woocommerce_related_products( $posts_per_page = 4, $post_columns = 4, $orderby = 'rand' ) {
global $_product, $woocommerce_loop;
// Pass vars to loop
$woocommerce_loop['columns'] = $post_columns;
$related = $_product->get_related();
if (sizeof($related)>0) :
echo '
'.__('Related Products', 'woothemes').' ';
$args = array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'posts_per_page' => $posts_per_page,
'orderby' => $orderby,
'post__in' => $related
);
$args = apply_filters('woocommerce_related_products_args', $args);
query_posts($args);
woocommerce_get_template_part( 'loop', 'shop' );
echo '';
endif;
wp_reset_query();
}
}
/**
* WooCommerce Shipping Calculator
**/
if (!function_exists('woocommerce_shipping_calculator')) {
function woocommerce_shipping_calculator() {
global $woocommerce;
if ($woocommerce->shipping->enabled && get_option('woocommerce_enable_shipping_calc')=='yes' && $woocommerce->cart->needs_shipping()) :
?>
shipping->get_available_shipping_methods();
?>
shipping->enabled || $available_methods || !$woocommerce->customer->get_shipping_country() || !$woocommerce->customer->get_shipping_state() || !$woocommerce->customer->get_shipping_postcode() ) :
if ( !$woocommerce->shipping->enabled || $available_methods || !$woocommerce->customer->get_shipping_country() || !isset($_SESSION['calculated_shipping']) || !$_SESSION['calculated_shipping'] ) :
// Hide totals if customer has set location and there are no methods going there
?>
cart->get_cart_subtotal(); ?>
cart->get_cart_shipping_total()) : ?>
countries->shipping_to_prefix().' '.$woocommerce->countries->countries[ $woocommerce->customer->get_shipping_country() ]; ?>
0) :
echo '';
foreach ($available_methods as $method ) :
echo 'id, $_SESSION['_chosen_shipping_method'], false).'>'.$method->title.' – ';
if ($method->shipping_total>0) :
if (get_option('woocommerce_display_totals_tax')=='excluding') :
echo woocommerce_price($method->shipping_total);
if ($method->shipping_tax>0) :
echo ' ' . $woocommerce->countries->ex_tax_or_vat();
endif;
else :
echo woocommerce_price($method->shipping_total + $method->shipping_tax);
if ($method->shipping_tax>0) :
echo ' ' . $woocommerce->countries->inc_tax_or_vat();
endif;
endif;
else :
echo __('Free', 'woothemes');
endif;
echo ' ';
endforeach;
echo ' ';
endif;
?>
cart->get_cart_tax()) : ?>
customer->is_customer_outside_base()) : ?>countries->estimated_for_prefix() . $woocommerce->countries->countries[ $woocommerce->countries->get_base_country() ] ); ?>
cart->get_cart_tax();
?>
cart->get_total_discount()) : ?>
-cart->get_total_discount(); ?>
cart->get_total(); ?>
customer->get_shipping_state() || !$woocommerce->customer->get_shipping_postcode()) : ?>countries->countries[ $woocommerce->customer->get_shipping_country() ]); ?>
', $wrap_after = '', $before = '', $after = '', $home = null ) {
global $post, $wp_query, $author, $paged;
if( !$home ) $home = _x('Home', 'breadcrumb', 'woothemes');
$home_link = home_url();
$prepend = '';
if ( get_option('woocommerce_prepend_shop_page_to_urls')=="yes" && get_option('woocommerce_shop_page_id') && get_option('page_on_front') !== get_option('woocommerce_shop_page_id') )
$prepend = $before . '' . get_the_title( get_option('woocommerce_shop_page_id') ) . ' ' . $after . $delimiter;
if ( (!is_home() && !is_front_page() && !(is_post_type_archive() && get_option('page_on_front')==get_option('woocommerce_shop_page_id'))) || is_paged() ) :
echo $wrap_before;
echo $before . '' . $home . ' ' . $after . $delimiter ;
if ( is_category() ) :
$cat_obj = $wp_query->get_queried_object();
$this_category = $cat_obj->term_id;
$this_category = get_category( $this_category );
if ($thisCat->parent != 0) :
$parent_category = get_category( $this_category->parent );
echo get_category_parents($parent_category, TRUE, $delimiter );
endif;
echo $before . single_cat_title('', false) . $after;
elseif ( is_tax('product_cat') ) :
//echo $before . '' . ucwords(get_option('woocommerce_shop_slug')) . ' ' . $after . $delimiter;
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$parents = array();
$parent = $term->parent;
while ($parent):
$parents[] = $parent;
$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ));
$parent = $new_parent->parent;
endwhile;
if(!empty($parents)):
$parents = array_reverse($parents);
foreach ($parents as $parent):
$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ));
echo $before . '' . $item->name . ' ' . $after . $delimiter;
endforeach;
endif;
$queried_object = $wp_query->get_queried_object();
echo $prepend . $before . $queried_object->name . $after;
elseif ( is_tax('product_tag') ) :
$queried_object = $wp_query->get_queried_object();
echo $prepend . $before . __('Products tagged “', 'woothemes') . $queried_object->name . '”' . $after;
elseif ( is_day() ) :
echo $before . '' . get_the_time('Y') . ' ' . $after . $delimiter;
echo $before . '' . get_the_time('F') . ' ' . $after . $delimiter;
echo $before . get_the_time('d') . $after;
elseif ( is_month() ) :
echo $before . '' . get_the_time('Y') . ' ' . $after . $delimiter;
echo $before . get_the_time('F') . $after;
elseif ( is_year() ) :
echo $before . get_the_time('Y') . $after;
elseif ( is_post_type_archive('product') && get_option('page_on_front') !== get_option('woocommerce_shop_page_id') ) :
$_name = get_option('woocommerce_shop_page_id') ? get_the_title( get_option('woocommerce_shop_page_id') ) : ucwords(get_option('woocommerce_shop_slug'));
if (is_search()) :
echo $before . '' . $_name . ' ' . $delimiter . __('Search results for “', 'woothemes') . get_search_query() . '”' . $after;
else :
echo $before . '' . $_name . ' ' . $after;
endif;
elseif ( is_single() && !is_attachment() ) :
if ( get_post_type() == 'product' ) :
//echo $before . '' . ucwords(get_option('woocommerce_shop_slug')) . ' ' . $after . $delimiter;
echo $prepend;
if ($terms = wp_get_object_terms( $post->ID, 'product_cat' )) :
$term = current($terms);
$parents = array();
$parent = $term->parent;
while ($parent):
$parents[] = $parent;
$new_parent = get_term_by( 'id', $parent, 'product_cat');
$parent = $new_parent->parent;
endwhile;
if(!empty($parents)):
$parents = array_reverse($parents);
foreach ($parents as $parent):
$item = get_term_by( 'id', $parent, 'product_cat');
echo $before . '' . $item->name . ' ' . $after . $delimiter;
endforeach;
endif;
echo $before . '' . $term->name . ' ' . $after . $delimiter;
endif;
echo $before . get_the_title() . $after;
elseif ( get_post_type() != 'post' ) :
$post_type = get_post_type_object(get_post_type());
$slug = $post_type->rewrite;
echo $before . '' . $post_type->labels->singular_name . ' ' . $after . $delimiter;
echo $before . get_the_title() . $after;
else :
$cat = current(get_the_category());
echo get_category_parents($cat, TRUE, $delimiter);
echo $before . get_the_title() . $after;
endif;
elseif ( is_404() ) :
echo $before . __('Error 404', 'woothemes') . $after;
elseif ( !is_single() && !is_page() && get_post_type() != 'post' ) :
$post_type = get_post_type_object(get_post_type());
if ($post_type) : echo $before . $post_type->labels->singular_name . $after; endif;
elseif ( is_attachment() ) :
$parent = get_post($post->post_parent);
$cat = get_the_category($parent->ID); $cat = $cat[0];
echo get_category_parents($cat, TRUE, '' . $delimiter);
echo $before . '' . $parent->post_title . ' ' . $after . $delimiter;
echo $before . get_the_title() . $after;
elseif ( is_page() && !$post->post_parent ) :
echo $before . get_the_title() . $after;
elseif ( is_page() && $post->post_parent ) :
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = '' . get_the_title($page->ID) . ' ';
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
foreach ($breadcrumbs as $crumb) :
echo $crumb . '' . $delimiter;
endforeach;
echo $before . get_the_title() . $after;
elseif ( is_search() ) :
echo $before . __('Search results for “', 'woothemes') . get_search_query() . '”' . $after;
elseif ( is_tag() ) :
echo $before . __('Posts tagged “', 'woothemes') . single_tag_title('', false) . '”' . $after;
elseif ( is_author() ) :
$userdata = get_userdata($author);
echo $before . __('Author:', 'woothemes') . ' ' . $userdata->display_name . $after;
endif;
if ( get_query_var('paged') ) :
echo ' (' . __('Page', 'woothemes') . ' ' . get_query_var('paged') .')';
endif;
echo $wrap_after;
endif;
}
}
/**
* Remove the singular class for woocommerce single product
**/
function woocommerce_body_classes ($classes) {
if( ! is_singular('product') ) return $classes;
$key = array_search('singular', $classes);
if ( $key !== false ) unset($classes[$key]);
return $classes;
}
/**
* Display Up Sells
**/
function woocommerce_upsell_display() {
global $_product;
$upsells = $_product->get_upsells();
if (sizeof($upsells)>0) :
echo ''.__('You may also like…', 'woothemes').' ';
$args = array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'posts_per_page' => 4,
'orderby' => 'rand',
'post__in' => $upsells
);
query_posts($args);
woocommerce_get_template_part( 'loop', 'shop' );
echo ' ';
endif;
wp_reset_query();
}
/**
* Display Cross Sells
**/
function woocommerce_cross_sell_display() {
global $woocommerce_loop, $woocommerce;
$woocommerce_loop['columns'] = 2;
$crosssells = $woocommerce->cart->get_cross_sells();
if (sizeof($crosssells)>0) :
echo '
'.__('You may be interested in…', 'woothemes').' ';
$args = array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'posts_per_page' => 2,
'orderby' => 'rand',
'post__in' => $crosssells
);
query_posts($args);
woocommerce_get_template_part( 'loop', 'shop' );
echo '';
endif;
wp_reset_query();
}
/**
* Order review table for checkout
**/
function woocommerce_order_review() {
woocommerce_get_template('checkout/review_order.php', false);
}
/**
* Demo Banner
*
* Adds a demo store banner to the site if enabled
**/
function woocommerce_demo_store() {
if (get_option('woocommerce_demo_store')=='yes') :
echo ''.__('This is a demo store for testing purposes — no orders shall be fulfilled.', 'woothemes').'
';
endif;
}
/**
* display product sub categories as thumbnails
**/
function woocommerce_product_subcategories() {
global $woocommerce, $woocommerce_loop, $wp_query, $wp_the_query, $_chosen_attributes;
if ($wp_query !== $wp_the_query) return; // Detect main query
if (sizeof($_chosen_attributes)>0 || (isset($_GET['max_price']) && isset($_GET['min_price']))) return; // Don't show when filtering
if (is_search()) return;
if (!is_product_category() && !is_shop()) return;
if (is_product_category() && get_option('woocommerce_show_subcategories')=='no') return;
if (is_shop() && get_option('woocommerce_shop_show_subcategories')=='no') return;
if (is_paged()) return;
$product_cat_slug = get_query_var('product_cat');
if ($product_cat_slug) :
$product_cat = get_term_by('slug', $product_cat_slug, 'product_cat');
$parent = $product_cat->term_id;
else :
$parent = 0;
endif;
// NOTE: using child_of instead of parent - this is not ideal but due to a WP bug (http://core.trac.wordpress.org/ticket/15626) pad_counts won't work
$args = array(
'child_of' => $parent,
'orderby' => 'menu_order',
'order' => 'ASC',
'hide_empty' => 1,
'hierarchical' => 1,
'taxonomy' => 'product_cat',
'pad_counts' => 1
);
$categories = get_categories( $args );
if ($categories) :
$found = false;
foreach ($categories as $category) :
if ($category->parent != $parent) continue;
$found = true;
$woocommerce_loop['loop']++;
?>
name; ?> count>0) : ?>(count; ?>)
max_num_pages = 0;
endif;
endif;
}
/**
* Show subcategory thumbnail
**/
function woocommerce_subcategory_thumbnail( $category ) {
global $woocommerce;
$small_thumbnail_size = apply_filters('single_product_small_thumbnail_size', 'shop_thumbnail');
$image_width = $woocommerce->get_image_size('shop_thumbnail_image_width');
$image_height = $woocommerce->get_image_size('shop_thumbnail_image_height');
$thumbnail_id = get_woocommerce_term_meta( $category->term_id, 'thumbnail_id', true );
if ($thumbnail_id) :
$image = wp_get_attachment_image_src( $thumbnail_id, $small_thumbnail_size );
$image = $image[0];
else :
$image = $woocommerce->plugin_url().'/assets/images/placeholder.png';
endif;
echo ' ';
}
/**
* Display an orders details in a table
**/
function woocommerce_order_details_table( $order_id ) {
if (!$order_id) return;
$order = &new woocommerce_order( $order_id );
?>
get_subtotal_to_display(); ?>
order_shipping>0) : ?>
get_shipping_to_display(); ?>
get_total_tax()>0) : ?>
get_total_tax()); ?>
order_discount>0) : ?>
-order_discount); ?>
order_total); ?>
customer_note) : ?>
customer_note)); ?>
items)>0) :
foreach($order->items as $item) :
if (isset($item['variation_id']) && $item['variation_id'] > 0) :
$_product = &new woocommerce_product_variation( $item['variation_id'] );
else :
$_product = &new woocommerce_product( $item['id'] );
endif;
echo '
'.$item['name'];
$item_meta = &new order_item_meta( $item['item_meta'] );
$item_meta->display();
echo '
'.$item['qty'].'
'.woocommerce_price( $item['cost']*$item['qty'], array('ex_tax_label' => 1) ).'
';
endforeach;
endif;
?>
billing_email) echo ''.__('Email:', 'woothemes').' '.$order->billing_email.' ';
if ($order->billing_phone) echo ''.__('Telephone:', 'woothemes').' '.$order->billing_phone.' ';
?>
formatted_shipping_address) _e('N/A', 'woothemes'); else echo $order->formatted_shipping_address;
?>
formatted_billing_address) _e('N/A', 'woothemes'); else echo $order->formatted_billing_address;
?>