2011-08-10 17:11:11 +00:00
< ? php
/**
* WooCommerce Template Functions
2011-11-24 00:24:24 +00:00
*
2011-12-11 15:37:32 +00:00
* Functions used in the template files to output content - in most cases hooked in via the template actions . All functions are pluggable .
2011-08-10 17:11:11 +00:00
*
* @ package WooCommerce
* @ category Core
* @ author WooThemes
*/
2012-01-06 14:02:34 +00:00
/** Template pages ********************************************************/
if ( ! function_exists ( 'woocommerce_content' )) {
// This function is only used in the optional 'woocommerce.php' template
// people can add to their themes to add basic woocommerce support.
function woocommerce_content () {
2012-01-13 14:17:43 +00:00
if ( is_singular ( 'product' ) )
2012-01-06 14:02:34 +00:00
woocommerce_single_product_content ();
2012-01-13 14:17:43 +00:00
elseif ( is_tax ( 'product_cat' ) || is_tax ( 'product_tag' ) )
2012-01-06 14:02:34 +00:00
woocommerce_product_taxonomy_content ();
else
woocommerce_archive_product_content ();
}
}
if ( ! function_exists ( 'woocommerce_archive_product_content' )) {
2012-01-13 14:17:43 +00:00
function woocommerce_archive_product_content () {
if ( ! is_search ()) :
$shop_page = get_post ( woocommerce_get_page_id ( 'shop' ) );
$shop_page_title = apply_filters ( 'the_title' , ( get_option ( 'woocommerce_shop_page_title' )) ? get_option ( 'woocommerce_shop_page_title' ) : $shop_page -> post_title );
$shop_page_content = $shop_page -> post_content ;
else :
$shop_page_title = __ ( 'Search Results:' , 'woocommerce' ) . ' “' . get_search_query () . '”' ;
if ( get_query_var ( 'paged' )) $shop_page_title .= ' — ' . __ ( 'Page' , 'woocommerce' ) . ' ' . get_query_var ( 'paged' );
$shop_page_content = '' ;
endif ;
2012-01-06 14:02:34 +00:00
2012-01-13 14:17:43 +00:00
?> <h1 class="page-title"><?php echo $shop_page_title ?></h1>
< ? php echo apply_filters ( 'the_content' , $shop_page_content ); ?>
2012-01-06 14:02:34 +00:00
< ? php woocommerce_get_template_part ( 'loop' , 'shop' ); ?>
2012-01-13 14:17:43 +00:00
< ? php do_action ( 'woocommerce_pagination' );
2012-01-06 14:02:34 +00:00
2012-01-13 14:17:43 +00:00
}
2012-01-06 14:02:34 +00:00
}
if ( ! function_exists ( 'woocommerce_product_taxonomy_content' )) {
function woocommerce_product_taxonomy_content () {
2012-01-13 14:17:43 +00:00
global $wp_query ;
$term = get_term_by ( 'slug' , get_query_var ( $wp_query -> query_vars [ 'taxonomy' ]), $wp_query -> query_vars [ 'taxonomy' ]);
?> <h1 class="page-title"><?php echo wptexturize($term->name); ?></h1>
< ? php if ( $term -> description ) : ?>
< div class = " term_description " >< ? php echo wpautop ( wptexturize ( $term -> description )); ?> </div>
2012-01-06 14:02:34 +00:00
2012-01-13 14:17:43 +00:00
< ? php endif ; ?>
2012-01-06 14:02:34 +00:00
< ? php woocommerce_get_template_part ( 'loop' , 'shop' ); ?>
2012-01-13 14:17:43 +00:00
< ? php do_action ( 'woocommerce_pagination' );
2012-01-06 14:02:34 +00:00
2012-01-13 14:17:43 +00:00
}
2012-01-06 14:02:34 +00:00
}
if ( ! function_exists ( 'woocommerce_single_product_content' )) {
2012-01-26 11:23:42 +00:00
function woocommerce_single_product_content ( $wc_query = false ) {
// Let developers override the query used, in case they want to use this function for their own loop/wp_query
if ( ! $wc_query ) {
global $wp_query ;
$wc_query = $wp_query ;
}
if ( $wc_query -> have_posts () ) while ( $wc_query -> have_posts () ) : $wc_query -> the_post (); ?>
2012-01-06 14:02:34 +00:00
< ? php do_action ( 'woocommerce_before_single_product' ); ?>
< div itemscope itemtype = " http://schema.org/Product " id = " product-<?php the_ID(); ?> " < ? php post_class (); ?> >
< ? php do_action ( 'woocommerce_before_single_product_summary' ); ?>
< div class = " summary " >
< h1 itemprop = " name " class = " product_title page-title " >< ? php the_title (); ?> </h1>
< ? php do_action ( 'woocommerce_single_product_summary' ); ?>
</ div >
< ? php do_action ( 'woocommerce_after_single_product_summary' ); ?>
</ div >
2012-01-26 11:23:42 +00:00
2012-01-06 14:02:34 +00:00
< ? php do_action ( 'woocommerce_after_single_product' ); ?>
2012-01-26 11:23:42 +00:00
2012-01-13 14:17:43 +00:00
< ? php endwhile ;
2012-01-06 14:02:34 +00:00
2012-01-13 14:17:43 +00:00
}
2012-01-06 14:02:34 +00:00
}
2011-12-11 12:39:35 +00:00
/** Global ****************************************************************/
2011-08-10 17:11:11 +00:00
if ( ! function_exists ( 'woocommerce_output_content_wrapper' )) {
2011-11-24 00:24:24 +00:00
function woocommerce_output_content_wrapper () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'shop/wrapper-start.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_output_content_wrapper_end' )) {
2011-11-24 00:24:24 +00:00
function woocommerce_output_content_wrapper_end () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'shop/wrapper-end.php' );
2011-08-10 17:11:11 +00:00
}
}
2012-02-08 15:20:32 +00:00
/**
* Messages
**/
if ( ! function_exists ( 'woocommerce_show_messages' )) {
function woocommerce_show_messages () {
global $woocommerce ;
if ( $woocommerce -> error_count () > 0 ) {
woocommerce_get_template ( 'shop/errors.php' , array (
'errors' => $woocommerce -> get_errors ()
));
} elseif ( $woocommerce -> message_count () > 0 ) {
woocommerce_get_template ( 'shop/messages.php' , array (
'messages' => $woocommerce -> get_messages ()
));
}
$woocommerce -> clear_messages ();
}
}
2011-08-10 17:11:11 +00:00
/**
* Sidebar
**/
if ( ! function_exists ( 'woocommerce_get_sidebar' )) {
2011-11-24 00:24:24 +00:00
function woocommerce_get_sidebar () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'shop/sidebar.php' );
2011-12-12 11:35:54 +00:00
}
}
/**
* Prevent Cache
**/
if ( ! function_exists ( 'woocommerce_prevent_sidebar_cache' )) {
2012-02-07 12:09:23 +00:00
function woocommerce_prevent_sidebar_cache ( $sidebar ) {
echo '<!--mfunc get_sidebar("' . $sidebar . '") --><!--/mfunc-->' ;
2011-08-10 17:11:11 +00:00
}
}
2011-12-12 12:28:07 +00:00
/**
* Demo Banner
*
* Adds a demo store banner to the site if enabled
**/
if ( ! function_exists ( 'woocommerce_demo_store' )) {
function woocommerce_demo_store () {
if ( get_option ( 'woocommerce_demo_store' ) == 'no' ) return ;
2012-01-05 11:31:22 +00:00
echo apply_filters ( 'woocommerce_demo_store' , '<p class="demo_store">' . __ ( 'This is a demo store for testing purposes — no orders shall be fulfilled.' , 'woocommerce' ) . '</p>' );
2011-12-12 12:28:07 +00:00
}
}
2011-12-11 01:10:24 +00:00
/** Loop ******************************************************************/
2011-08-10 17:11:11 +00:00
/**
* Products Loop
**/
if ( ! function_exists ( 'woocommerce_template_loop_add_to_cart' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_loop_add_to_cart () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'loop/add-to-cart.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_template_loop_product_thumbnail' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_loop_product_thumbnail () {
2011-08-10 17:11:11 +00:00
echo woocommerce_get_product_thumbnail ();
}
}
if ( ! function_exists ( 'woocommerce_template_loop_price' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_loop_price () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'loop/price.php' );
2011-08-10 17:11:11 +00:00
}
}
2011-12-11 14:40:25 +00:00
if ( ! function_exists ( 'woocommerce_show_product_loop_sale_flash' )) {
2011-12-11 15:20:34 +00:00
function woocommerce_show_product_loop_sale_flash () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'loop/sale-flash.php' );
2011-12-11 14:40:25 +00:00
}
}
2011-08-10 17:11:11 +00:00
2011-12-12 11:35:54 +00:00
/**
* 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' );
2012-02-24 16:23:08 +00:00
if ( has_post_thumbnail () ) return get_the_post_thumbnail ( $post -> ID , $size ); else return '<img src="' . woocommerce_placeholder_img_src () . '" alt="Placeholder" width="' . $placeholder_width . '" height="' . $placeholder_height . '" />' ;
2011-12-12 11:35:54 +00:00
}
}
2011-12-11 01:10:24 +00:00
/**
* Pagination
**/
if ( ! function_exists ( 'woocommerce_pagination' )) {
function woocommerce_pagination () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'loop/pagination.php' );
2011-12-11 01:10:24 +00:00
}
}
/**
* Sorting
**/
if ( ! function_exists ( 'woocommerce_catalog_ordering' )) {
function woocommerce_catalog_ordering () {
if ( ! isset ( $_SESSION [ 'orderby' ])) $_SESSION [ 'orderby' ] = apply_filters ( 'woocommerce_default_catalog_orderby' , 'title' );
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'loop/sorting.php' );
2011-12-11 01:10:24 +00:00
}
}
2011-12-11 01:08:33 +00:00
/** Single Product ********************************************************/
2011-08-10 17:11:11 +00:00
/**
* Before Single Products Summary Div
**/
if ( ! function_exists ( 'woocommerce_show_product_images' )) {
function woocommerce_show_product_images () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/product-image.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_show_product_thumbnails' )) {
function woocommerce_show_product_thumbnails () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/product-thumbnails.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_output_product_data_tabs' )) {
function woocommerce_output_product_data_tabs () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_template_single_price' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_single_price () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/price.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_template_single_excerpt' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_single_excerpt () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/short-description.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_template_single_meta' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_single_meta () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/meta.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_template_single_sharing' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_single_sharing () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/share.php' );
2011-09-04 00:02:44 +00:00
}
}
2011-12-11 14:40:25 +00:00
if ( ! function_exists ( 'woocommerce_show_product_sale_flash' )) {
function woocommerce_show_product_sale_flash () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/sale-flash.php' );
2011-12-11 14:40:25 +00:00
}
}
2011-09-04 00:02:44 +00:00
2011-08-10 17:11:11 +00:00
/**
* Product Add to cart buttons
**/
if ( ! function_exists ( 'woocommerce_template_single_add_to_cart' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_template_single_add_to_cart () {
2011-12-11 15:20:34 +00:00
global $product ;
do_action ( 'woocommerce_' . $product -> product_type . '_add_to_cart' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_simple_add_to_cart' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_simple_add_to_cart () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/add-to-cart/simple.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_grouped_add_to_cart' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_grouped_add_to_cart () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/add-to-cart/grouped.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_variable_add_to_cart' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_variable_add_to_cart () {
2012-02-03 16:17:35 +00:00
global $woocommerce , $product , $post ;
2011-11-24 00:24:24 +00:00
2011-12-11 15:20:34 +00:00
$attributes = $product -> get_available_attribute_variations ();
2011-11-15 06:18:31 +00:00
$default_attributes = ( array ) maybe_unserialize ( get_post_meta ( $post -> ID , '_default_attributes' , true ));
$selected_attributes = apply_filters ( 'woocommerce_product_default_attributes' , $default_attributes );
2011-12-09 20:16:34 +00:00
2011-08-22 14:10:22 +00:00
// Put available variations into an array and put in a Javascript variable (JSON encoded)
2011-12-09 20:16:34 +00:00
$available_variations = array ();
2011-12-11 15:20:34 +00:00
foreach ( $product -> get_children () as $child_id ) {
2011-12-09 20:16:34 +00:00
2011-12-11 15:20:34 +00:00
$variation = $product -> get_child ( $child_id );
2011-12-09 20:16:34 +00:00
2012-01-27 16:38:39 +00:00
if ( $variation instanceof WC_Product_Variation ) {
2011-12-09 20:16:34 +00:00
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' ])) ? apply_filters ( 'woocommerce_stock_html' , '<p class="stock ' . $availability [ 'class' ] . '">' . $availability [ 'availability' ] . '</p>' , $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 = '' ;
}
2012-02-26 01:26:42 +00:00
$available_variations [] = apply_filters ( 'woocommerce_available_variation' , array (
2011-12-09 20:16:34 +00:00
'variation_id' => $variation -> get_variation_id (),
'attributes' => $variation_attributes ,
'image_src' => $image ,
'image_link' => $image_link ,
'price_html' => '<span class="price">' . $variation -> get_price_html () . '</span>' ,
'availability_html' => $availability_html ,
2012-02-26 01:26:42 +00:00
'sku' => __ ( 'SKU:' , 'woocommerce' ) . ' ' . $variation -> sku ,
'min_qty' => 1 ,
'max_qty' => $variation -> stock
), $product , $variation );
2011-12-09 20:16:34 +00:00
}
}
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/add-to-cart/variable.php' , array (
'available_variations' => $available_variations ,
'attributes' => $attributes ,
'selected_attributes' => $selected_attributes ,
));
2011-08-10 17:11:11 +00:00
}
}
2011-11-08 16:15:36 +00:00
if ( ! function_exists ( 'woocommerce_external_add_to_cart' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_external_add_to_cart () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/add-to-cart/external.php' );
2011-11-08 16:15:36 +00:00
}
}
2011-08-10 17:11:11 +00:00
2011-12-05 19:16:55 +00:00
/**
* Quantity inputs
**/
if ( ! function_exists ( 'woocommerce_quantity_input' )) {
2011-12-11 14:40:25 +00:00
function woocommerce_quantity_input ( $args = array () ) {
$defaults = array (
'input_name' => 'quantity' ,
2012-01-14 17:59:47 +00:00
'input_value' => '1' ,
2012-02-17 23:47:18 +00:00
'max_value' => '' ,
'min_value' => '0'
2011-12-11 14:40:25 +00:00
);
2012-02-22 19:45:12 +00:00
$args = apply_filters ( 'woocommerce_quantity_input_args' , wp_parse_args ( $args , $defaults ));
2011-12-11 01:08:33 +00:00
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/add-to-cart/quantity.php' , $args );
2011-12-05 19:16:55 +00:00
}
}
2011-08-10 17:11:11 +00:00
/**
* Product page tabs
**/
if ( ! function_exists ( 'woocommerce_product_description_tab' )) {
2011-09-21 16:17:28 +00:00
function woocommerce_product_description_tab () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs/tab-description.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_product_attributes_tab' )) {
2011-09-21 16:17:28 +00:00
function woocommerce_product_attributes_tab () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs/tab-attributes.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_product_reviews_tab' )) {
2011-09-21 16:17:28 +00:00
function woocommerce_product_reviews_tab () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs/tab-reviews.php' );
2011-08-10 17:11:11 +00:00
}
}
/**
* Product page tab panels
**/
if ( ! function_exists ( 'woocommerce_product_description_panel' )) {
function woocommerce_product_description_panel () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs/description.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_product_attributes_panel' )) {
function woocommerce_product_attributes_panel () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs/attributes.php' );
2011-08-10 17:11:11 +00:00
}
}
if ( ! function_exists ( 'woocommerce_product_reviews_panel' )) {
function woocommerce_product_reviews_panel () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/tabs/reviews.php' );
2011-08-10 17:11:11 +00:00
}
}
2011-12-12 12:28:07 +00:00
/**
* Review comments template
**/
if ( ! function_exists ( 'woocommerce_comments' )) {
function woocommerce_comments ( $comment , $args , $depth ) {
$GLOBALS [ 'comment' ] = $comment ;
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/review.php' );
2011-12-12 12:28:07 +00:00
}
}
2011-08-10 17:11:11 +00:00
/**
* WooCommerce Related Products
**/
if ( ! function_exists ( 'woocommerce_output_related_products' )) {
function woocommerce_output_related_products () {
woocommerce_related_products ( 2 , 2 );
}
}
2011-11-24 00:24:24 +00:00
2011-08-10 17:11:11 +00:00
if ( ! function_exists ( 'woocommerce_related_products' )) {
2012-02-03 16:17:35 +00:00
function woocommerce_related_products ( $posts_per_page = 4 , $columns = 4 , $orderby = 'rand' ) {
woocommerce_get_template ( 'single-product/related.php' , array (
'posts_per_page' => $posts_per_page ,
'orderby' => $orderby ,
'columns' => $columns
));
2011-08-10 17:11:11 +00:00
}
}
2011-12-12 12:28:07 +00:00
/**
* Display Up Sells
**/
if ( ! function_exists ( 'woocommerce_upsell_display' )) {
function woocommerce_upsell_display () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'single-product/up-sells.php' );
2011-12-12 12:28:07 +00:00
}
}
2011-12-11 14:40:25 +00:00
/** Cart ******************************************************************/
2011-08-10 17:11:11 +00:00
/**
* WooCommerce Shipping Calculator
**/
if ( ! function_exists ( 'woocommerce_shipping_calculator' )) {
function woocommerce_shipping_calculator () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'cart/shipping-calculator.php' );
2011-08-10 17:11:11 +00:00
}
}
2011-09-11 16:42:50 +00:00
/**
* WooCommerce Cart totals
**/
if ( ! function_exists ( 'woocommerce_cart_totals' )) {
function woocommerce_cart_totals () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'cart/totals.php' );
2011-09-11 16:42:50 +00:00
}
}
2011-12-12 12:28:07 +00:00
/**
* Display Cross Sells
**/
if ( ! function_exists ( 'woocommerce_cross_sell_display' )) {
function woocommerce_cross_sell_display () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'cart/cross-sells.php' );
2011-12-12 12:28:07 +00:00
}
}
2011-12-11 14:40:25 +00:00
/** Login *****************************************************************/
2011-08-10 17:11:11 +00:00
/**
* WooCommerce Login Form
**/
if ( ! function_exists ( 'woocommerce_login_form' )) {
2011-12-12 12:28:07 +00:00
function woocommerce_login_form ( $args = array () ) {
2012-02-03 16:17:35 +00:00
2011-12-12 12:28:07 +00:00
$defaults = array (
2012-01-05 14:55:09 +00:00
'message' => '' ,
'redirect' => ''
2011-12-12 12:28:07 +00:00
);
2011-11-24 00:24:24 +00:00
2011-12-12 12:28:07 +00:00
$args = wp_parse_args ( $args , $defaults );
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'shop/form-login.php' , $args );
2011-08-10 17:11:11 +00:00
}
}
/**
2011-11-14 16:46:11 +00:00
* WooCommerce Checkout Login Form
2011-08-10 17:11:11 +00:00
**/
if ( ! function_exists ( 'woocommerce_checkout_login_form' )) {
function woocommerce_checkout_login_form () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'checkout/form-login.php' );
2011-08-10 17:11:11 +00:00
}
}
/**
* WooCommerce Breadcrumb
**/
if ( ! function_exists ( 'woocommerce_breadcrumb' )) {
2011-12-12 11:35:54 +00:00
function woocommerce_breadcrumb ( $args = array () ) {
$defaults = array (
'delimiter' => ' › ' ,
'wrap_before' => '<div id="breadcrumb">' ,
'wrap_after' => '</div>' ,
'before' => '' ,
'after' => '' ,
'home' => null
);
2011-11-24 00:24:24 +00:00
2011-12-12 11:35:54 +00:00
$args = wp_parse_args ( $args , $defaults );
2011-11-24 00:24:24 +00:00
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'shop/breadcrumb.php' , $args );
2011-08-10 17:11:11 +00:00
}
}
2011-08-16 14:06:08 +00:00
/**
* Order review table for checkout
**/
2011-12-11 15:40:17 +00:00
if ( ! function_exists ( 'woocommerce_order_review' )) {
function woocommerce_order_review () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'checkout/review-order.php' );
2011-12-11 15:40:17 +00:00
}
2011-09-04 00:02:44 +00:00
}
2011-12-19 17:10:53 +00:00
/**
* Coupon form for checkout
**/
if ( ! function_exists ( 'woocommerce_checkout_coupon_form' )) {
function woocommerce_checkout_coupon_form () {
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'checkout/form-coupon.php' );
2011-12-19 17:10:53 +00:00
}
}
2011-10-07 19:27:10 +00:00
/**
* display product sub categories as thumbnails
**/
2011-12-11 15:40:17 +00:00
if ( ! function_exists ( 'woocommerce_product_subcategories' )) {
function woocommerce_product_subcategories () {
2012-02-03 16:17:35 +00:00
global $woocommerce , $woocommerce_loop , $wp_query , $wp_the_query , $_chosen_attributes , $product_category_found ;
2011-12-11 15:40:17 +00:00
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 ;
2011-12-12 12:28:07 +00:00
if ( $product_cat_slug = get_query_var ( 'product_cat' )) :
$product_cat = get_term_by ( 'slug' , $product_cat_slug , 'product_cat' );
$product_category_parent = $product_cat -> term_id ;
2011-12-11 15:40:17 +00:00
else :
2011-12-12 12:28:07 +00:00
$product_category_parent = 0 ;
2011-10-22 19:38:39 +00:00
endif ;
2011-12-11 15:40:17 +00:00
// 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' => $product_category_parent ,
'menu_order' => 'ASC' ,
'hide_empty' => 1 ,
'hierarchical' => 1 ,
'taxonomy' => 'product_cat' ,
'pad_counts' => 1
);
$product_categories = get_categories ( $args );
if ( $product_categories ) :
2012-02-03 16:17:35 +00:00
woocommerce_get_template ( 'loop-product-cats.php' , array (
'product_categories' => $product_categories ,
'product_category_parent' => $product_category_parent
));
2011-12-11 15:40:17 +00:00
// If we are hiding products disable the loop and pagination
if ( $product_category_found == true && get_option ( 'woocommerce_hide_products_when_showing_subcategories' ) == 'yes' ) :
$woocommerce_loop [ 'show_products' ] = false ;
$wp_query -> max_num_pages = 0 ;
endif ;
endif ;
}
2011-10-07 19:27:10 +00:00
}
2011-10-31 00:47:41 +00:00
/**
* Show subcategory thumbnail
**/
2011-12-11 15:40:17 +00:00
if ( ! function_exists ( 'woocommerce_subcategory_thumbnail' )) {
function woocommerce_subcategory_thumbnail ( $category ) {
global $woocommerce ;
$small_thumbnail_size = apply_filters ( 'single_product_small_thumbnail_size' , 'shop_catalog' );
$image_width = $woocommerce -> get_image_size ( 'shop_catalog_image_width' );
$image_height = $woocommerce -> get_image_size ( 'shop_catalog_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 :
2012-02-24 16:23:08 +00:00
$image = woocommerce_placeholder_img_src ();
2011-12-11 15:40:17 +00:00
endif ;
2012-02-13 00:38:54 +00:00
echo '<img src="' . $image . '" alt="' . $category -> name . '" width="' . $image_width . '" height="' . $image_height . '" />' ;
2011-12-11 15:40:17 +00:00
}
2011-10-07 19:27:10 +00:00
}
2011-10-31 00:47:41 +00:00
/**
2011-12-09 21:47:12 +00:00
* Displays order details in a table
2011-10-31 00:47:41 +00:00
**/
2011-12-11 15:37:32 +00:00
if ( ! function_exists ( 'woocommerce_order_details_table' )) {
2012-02-03 16:17:35 +00:00
function woocommerce_order_details_table ( $order_id ) {
if ( ! $order_id ) return ;
woocommerce_get_template ( 'order/order-details.php' , array (
'order_id' => $order_id
));
2011-12-11 15:37:32 +00:00
}
2011-12-21 16:03:45 +00:00
}
/** Forms ****************************************************************/
/**
* Outputs a checkout / address form field
*/
if ( ! function_exists ( 'woocommerce_form_field' )) {
function woocommerce_form_field ( $key , $args , $value = '' ) {
global $woocommerce ;
$defaults = array (
'type' => 'text' ,
'label' => '' ,
'placeholder' => '' ,
'required' => false ,
'class' => array (),
'label_class' => array (),
'return' => false
);
$args = wp_parse_args ( $args , $defaults );
if (( isset ( $args [ 'clear' ]) && $args [ 'clear' ])) $after = '<div class="clear"></div>' ; else $after = '' ;
2012-02-23 11:19:45 +00:00
$required = ( $args [ 'required' ] ) ? ' <abbr class="required" title="' . esc_attr__ ( 'required' , 'woocommerce' ) . '">*</abbr>' : '' ;
2012-02-19 21:53:29 +00:00
2011-12-21 16:03:45 +00:00
switch ( $args [ 'type' ]) :
case " country " :
$field = '<p class="form-row ' . implode ( ' ' , $args [ 'class' ]) . '" id="' . $key . ' _field " >
2012-02-19 21:53:29 +00:00
< label for = " '. $key .' " class = " '.implode(' ', $args['label_class'] ).' " > '.$args[' label ']. $required .' </ label >
2011-12-21 16:03:45 +00:00
< select name = " '. $key .' " id = " '. $key .' " class = " country_to_state '.implode(' ', $args['class'] ).' " >
2012-01-05 11:31:22 +00:00
< option value = " " > '.__(' Select a country & hellip ; ', ' woocommerce ').' </ option > ' ;
2011-12-21 16:03:45 +00:00
foreach ( $woocommerce -> countries -> get_allowed_countries () as $ckey => $cvalue ) :
2012-01-05 11:31:22 +00:00
$field .= '<option value="' . $ckey . '" ' . selected ( $value , $ckey , false ) . '>' . __ ( $cvalue , 'woocommerce' ) . '</option>' ;
2011-12-21 16:03:45 +00:00
endforeach ;
$field .= '</select></p>' . $after ;
break ;
case " state " :
$field = '<p class="form-row ' . implode ( ' ' , $args [ 'class' ]) . '" id="' . $key . ' _field " >
2012-02-19 21:53:29 +00:00
< label for = " '. $key .' " class = " '.implode(' ', $args['label_class'] ).' " > '.$args[' label ']. $required . ' </ label > ' ;
2011-12-21 16:03:45 +00:00
/* Get Country */
$country_key = ( $key == 'billing_state' ) ? 'billing_country' : 'shipping_country' ;
if ( isset ( $_POST [ $country_key ])) :
$current_cc = woocommerce_clean ( $_POST [ $country_key ]);
elseif ( is_user_logged_in ()) :
$current_cc = get_user_meta ( get_current_user_id (), $country_key , true );
else :
$current_cc = $woocommerce -> countries -> get_base_country ();
endif ;
if ( ! $current_cc ) $current_cc = $woocommerce -> customer -> get_country ();
// Get State
$current_r = ( $value ) ? $value : $woocommerce -> customer -> get_state ();
$states = $woocommerce -> countries -> states ;
if ( isset ( $states [ $current_cc ][ $current_r ] )) :
// Dropdown
2012-01-07 18:09:23 +00:00
$field .= '<select name="' . $key . '" id="' . $key . '" class="state_select"><option value="">' . __ ( 'Select a state…' , 'woocommerce' ) . '</option>' ;
2011-12-21 16:03:45 +00:00
foreach ( $states [ $current_cc ] as $ckey => $cvalue ) :
2012-01-05 11:31:22 +00:00
$field .= '<option value="' . $ckey . '" ' . selected ( $current_r , $ckey , false ) . '>' . __ ( $cvalue , 'woocommerce' ) . '</option>' ;
2011-12-21 16:03:45 +00:00
endforeach ;
$field .= '</select>' ;
else :
// Input
$field .= '<input type="text" class="input-text" value="' . $current_r . '" placeholder="' . $args [ 'placeholder' ] . '" name="' . $key . '" id="' . $key . '" />' ;
endif ;
$field .= '</p>' . $after ;
break ;
case " textarea " :
$field = '<p class="form-row ' . implode ( ' ' , $args [ 'class' ]) . '" id="' . $key . ' _field " >
2012-02-19 21:53:29 +00:00
< label for = " '. $key .' " class = " '.implode(' ', $args['label_class'] ).' " > '.$args[' label ']. $required .' </ label >
2011-12-21 16:03:45 +00:00
< textarea name = " '. $key .' " class = " input-text " id = " '. $key .' " placeholder = " '. $args['placeholder'] .' " cols = " 5 " rows = " 2 " > '. esc_textarea( $value ).' </ textarea >
</ p > ' . $after ;
break ;
case " checkbox " :
$field = '<p class="form-row ' . implode ( ' ' , $args [ 'class' ]) . '" id="' . $key . ' _field " >
< input type = " '. $args['type'] .' " class = " input-checkbox " name = " '. $key .' " id = " '. $key .' " value = " 1 " '.checked($value, 1, false).' />
2012-02-23 11:19:45 +00:00
< label for = " '. $key .' " class = " checkbox '.implode(' ', $args['label_class'] ).' " > '.$args[' label '] . $required . ' </ label >
2011-12-21 16:03:45 +00:00
</ p > ' . $after ;
2011-12-22 01:02:42 +00:00
break ;
case " password " :
$field = '<p class="form-row ' . implode ( ' ' , $args [ 'class' ]) . '" id="' . $key . ' _field " >
2012-02-19 21:53:29 +00:00
< label for = " '. $key .' " class = " '.implode(' ', $args['label_class'] ).' " > '.$args[' label ']. $required . ' </ label >
2011-12-22 01:02:42 +00:00
< input type = " password " class = " input-text " name = " '. $key .' " id = " '. $key .' " placeholder = " '. $args['placeholder'] .' " value = " '. $value .' " />
</ p > ' . $after ;
2011-12-21 16:03:45 +00:00
break ;
2012-02-15 17:57:12 +00:00
case " text " :
2011-12-21 16:03:45 +00:00
$field = '<p class="form-row ' . implode ( ' ' , $args [ 'class' ]) . '" id="' . $key . ' _field " >
2012-02-19 21:53:29 +00:00
< label for = " '. $key .' " class = " '.implode(' ', $args['label_class'] ).' " > '.$args[' label ']. $required . ' </ label >
2011-12-21 16:03:45 +00:00
< input type = " text " class = " input-text " name = " '. $key .' " id = " '. $key .' " placeholder = " '. $args['placeholder'] .' " value = " '. $value .' " />
</ p > ' . $after ;
break ;
2012-02-15 17:57:12 +00:00
default :
$field = apply_filters ( 'woocommerce_form_field_' . $args [ 'type' ], '' , $key , $args , $value );
break ;
2011-12-21 16:03:45 +00:00
endswitch ;
2012-02-15 17:57:12 +00:00
2011-12-21 16:03:45 +00:00
if ( $args [ 'return' ]) return $field ; else echo $field ;
}
2011-12-09 19:55:09 +00:00
}