2011-08-09 15:16:18 +00:00
< ? php
/**
2011-08-10 17:11:11 +00:00
* Functions used for displaying the WooCommerce store dashboard
2011-08-09 15:16:18 +00:00
*
2011-08-10 17:11:11 +00:00
* @ author WooThemes
2011-08-09 15:16:18 +00:00
* @ category Admin
2011-08-10 17:11:11 +00:00
* @ package WooCommerce
2011-08-09 15:16:18 +00:00
*/
/**
* Function for showing the dashboard
*
2011-08-10 17:11:11 +00:00
* The dashboard shows widgets for things such as :
2011-08-09 15:16:18 +00:00
* - Products
* - Sales
* - Recent reviews
2011-08-10 17:11:11 +00:00
* - Inventory notifications
* - WooCommerce news and updates
2011-08-09 15:16:18 +00:00
*/
2011-08-10 17:11:11 +00:00
function woocommerce_dashboard () {
2011-08-09 15:16:18 +00:00
?>
2011-08-10 17:11:11 +00:00
< div class = " wrap woocommerce " >
< div class = " icon32 woocommerce_icon " >< br /></ div >
< h2 >< ? php _e ( 'WooCommerce Dashboard' , 'woothemes' ); ?> </h2>
< div id = " woocommerce_dashboard " >
2011-08-09 15:16:18 +00:00
< div id = " dashboard-widgets " class = " metabox-holder " >
< div class = " postbox-container " style = " width:49%; " >
2011-08-10 17:11:11 +00:00
< div id = " woocommerce_right_now " class = " woocommerce_right_now postbox " >
< h3 >< ? php _e ( 'Right Now' , 'woothemes' ) ?> </h3>
2011-08-09 15:16:18 +00:00
< div class = " inside " >
< div class = " table table_content " >
2011-08-10 17:11:11 +00:00
< p class = " sub " >< ? php _e ( 'Shop Content' , 'woothemes' ); ?> </p>
2011-08-09 15:16:18 +00:00
< table >
< tbody >
< tr class = " first " >
< td class = " first b " >< a href = " edit.php?post_type=product " >< ? php
$num_posts = wp_count_posts ( 'product' );
$num = number_format_i18n ( $num_posts -> publish );
echo $num ;
?> </a></td>
2011-08-10 17:11:11 +00:00
< td class = " t " >< a href = " edit.php?post_type=product " >< ? php _e ( 'Products' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
< tr >
< td class = " first b " >< a href = " edit-tags.php?taxonomy=product_cat&post_type=product " >< ? php
echo wp_count_terms ( 'product_cat' );
?> </a></td>
2011-08-10 17:11:11 +00:00
< td class = " t " >< a href = " edit-tags.php?taxonomy=product_cat&post_type=product " >< ? php _e ( 'Product Categories' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
< tr >
< td class = " first b " >< a href = " edit-tags.php?taxonomy=product_tag&post_type=product " >< ? php
echo wp_count_terms ( 'product_tag' );
?> </a></td>
2011-08-10 17:11:11 +00:00
< td class = " t " >< a href = " edit-tags.php?taxonomy=product_tag&post_type=product " >< ? php _e ( 'Product Tag' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
< tr >
< td class = " first b " >< a href = " admin.php?page=attributes " >< ? php
2011-08-10 17:11:11 +00:00
echo sizeof ( woocommerce :: $attribute_taxonomies );
2011-08-09 15:16:18 +00:00
?> </a></td>
2011-08-10 17:11:11 +00:00
< td class = " t " >< a href = " admin.php?page=attributes " >< ? php _e ( 'Attribute taxonomies' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
</ tbody >
</ table >
</ div >
< div class = " table table_discussion " >
2011-08-10 17:11:11 +00:00
< p class = " sub " >< ? php _e ( 'Orders' , 'woothemes' ); ?> </p>
2011-08-09 15:16:18 +00:00
< table >
< tbody >
2011-08-10 17:11:11 +00:00
< ? php $woocommerce_orders = & new woocommerce_orders (); ?>
2011-08-09 15:16:18 +00:00
< tr class = " first " >
2011-08-10 17:11:11 +00:00
< td class = " b " >< a href = " edit.php?post_type=shop_order&shop_order_status=pending " >< span class = " total-count " >< ? php echo $woocommerce_orders -> pending_count ; ?> </span></a></td>
< td class = " last t " >< a class = " pending " href = " edit.php?post_type=shop_order&shop_order_status=pending " >< ? php _e ( 'Pending' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
< tr >
2011-08-10 17:11:11 +00:00
< td class = " b " >< a href = " edit.php?post_type=shop_order&shop_order_status=on-hold " >< span class = " total-count " >< ? php echo $woocommerce_orders -> on_hold_count ; ?> </span></a></td>
< td class = " last t " >< a class = " onhold " href = " edit.php?post_type=shop_order&shop_order_status=on-hold " >< ? php _e ( 'On-Hold' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
< tr >
2011-08-10 17:11:11 +00:00
< td class = " b " >< a href = " edit.php?post_type=shop_order&shop_order_status=processing " >< span class = " total-count " >< ? php echo $woocommerce_orders -> processing_count ; ?> </span></a></td>
< td class = " last t " >< a class = " processing " href = " edit.php?post_type=shop_order&shop_order_status=processing " >< ? php _e ( 'Processing' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
< tr >
2011-08-10 17:11:11 +00:00
< td class = " b " >< a href = " edit.php?post_type=shop_order&shop_order_status=completed " >< span class = " total-count " >< ? php echo $woocommerce_orders -> completed_count ; ?> </span></a></td>
< td class = " last t " >< a class = " complete " href = " edit.php?post_type=shop_order&shop_order_status=completed " >< ? php _e ( 'Completed' , 'woothemes' ); ?> </a></td>
2011-08-09 15:16:18 +00:00
</ tr >
</ tbody >
</ table >
</ div >
< div class = " versions " >
2011-08-10 17:11:11 +00:00
< p id = " wp-version-message " >< ? php _e ( 'You are using' , 'woothemes' ); ?> <strong>WooCommerce <?php echo WOOCOMMERCE_VERSION; ?>.</strong></p>
2011-08-09 15:16:18 +00:00
</ div >
< div class = " clear " ></ div >
</ div >
</ div ><!-- postbox end -->
< div class = " postbox " >
2011-08-10 17:11:11 +00:00
< h3 class = " hndle " id = " poststuff " >< span >< ? php _e ( 'Recent Orders' , 'woothemes' ) ?> </span></h3>
2011-08-09 15:16:18 +00:00
< div class = " inside " >
< ? php
$args = array (
'numberposts' => 10 ,
'orderby' => 'post_date' ,
'order' => 'DESC' ,
'post_type' => 'shop_order' ,
'post_status' => 'publish'
);
$orders = get_posts ( $args );
if ( $orders ) :
echo '<ul class="recent-orders">' ;
foreach ( $orders as $order ) :
2011-08-10 17:11:11 +00:00
$this_order = & new woocommerce_order ( $order -> ID );
2011-08-09 15:16:18 +00:00
echo '
< li >
< span class = " order-status '.sanitize_title( $this_order->status ).' " > '.ucwords($this_order->status).' </ span > < a href = " '.admin_url('post.php?post='. $order->ID ).'&action=edit " > '.date_i18n(' l jS \of F Y h : i : s A ', strtotime($this_order->order_date)).' </ a >< br />
2011-08-10 17:11:11 +00:00
< small > '.sizeof($this_order->items).' '._n(' item ', ' items ', sizeof($this_order->items), ' woothemes ').' < span class = " order-cost " > '.__(' Total : ', ' woothemes ').woocommerce_price($this_order->order_total).' </ span ></ small >
2011-08-09 15:16:18 +00:00
</ li > ' ;
endforeach ;
echo '</ul>' ;
endif ;
?>
</ div >
</ div ><!-- postbox end -->
2011-08-10 17:11:11 +00:00
< ? php if ( get_option ( 'woocommerce_manage_stock' ) == 'yes' ) : ?>
< div class = " postbox woocommerce_right_now " >
< h3 class = " hndle " id = " poststuff " >< span >< ? php _e ( 'Stock Report' , 'woothemes' ) ?> </span></h3>
2011-08-09 15:16:18 +00:00
< div class = " inside " >
< ? php
2011-08-10 17:11:11 +00:00
$lowstockamount = get_option ( 'woocommerce_notify_low_stock_amount' );
2011-08-09 15:16:18 +00:00
if ( ! is_numeric ( $lowstockamount )) $lowstockamount = 1 ;
2011-08-10 17:11:11 +00:00
$nostockamount = get_option ( 'woocommerce_notify_no_stock_amount' );
2011-08-09 15:16:18 +00:00
if ( ! is_numeric ( $nostockamount )) $nostockamount = 1 ;
$outofstock = array ();
$lowinstock = array ();
$args = array (
'post_type' => 'product' ,
'post_status' => 'publish' ,
'ignore_sticky_posts' => 1 ,
'posts_per_page' => - 1
);
$my_query = new WP_Query ( $args );
if ( $my_query -> have_posts ()) : while ( $my_query -> have_posts ()) : $my_query -> the_post ();
2011-08-10 17:11:11 +00:00
$_product = & new woocommerce_product ( $my_query -> post -> ID );
2011-08-09 15:16:18 +00:00
if ( ! $_product -> managing_stock ()) continue ;
$thisitem = ' < tr class = " first " >
< td class = " first b " >< a href = " post.php?post='. $my_query->post ->ID.'&action=edit " > '.$_product->stock.' </ a ></ td >
< td class = " t " >< a href = " post.php?post='. $my_query->post ->ID.'&action=edit " > '.$my_query->post->post_title.' </ a ></ td >
</ tr > ' ;
if ( $_product -> stock <= $nostockamount ) :
$outofstock [] = $thisitem ;
continue ;
endif ;
if ( $_product -> stock <= $lowstockamount ) $lowinstock [] = $thisitem ;
endwhile ; endif ;
wp_reset_query ();
if ( sizeof ( $lowinstock ) == 0 ) :
2011-08-10 17:11:11 +00:00
$lowinstock [] = '<tr><td colspan="2">' . __ ( 'No products are low in stock.' , 'woothemes' ) . '</td></tr>' ;
2011-08-09 15:16:18 +00:00
endif ;
if ( sizeof ( $outofstock ) == 0 ) :
2011-08-10 17:11:11 +00:00
$outofstock [] = '<tr><td colspan="2">' . __ ( 'No products are out of stock.' , 'woothemes' ) . '</td></tr>' ;
2011-08-09 15:16:18 +00:00
endif ;
?>
< div class = " table table_content " >
2011-08-10 17:11:11 +00:00
< p class = " sub " >< ? php _e ( 'Low Stock' , 'woothemes' ); ?> </p>
2011-08-09 15:16:18 +00:00
< table >
< tbody >
< ? php echo implode ( '' , $lowinstock ); ?>
</ tbody >
</ table >
</ div >
< div class = " table table_discussion " >
2011-08-10 17:11:11 +00:00
< p class = " sub " >< ? php _e ( 'Out of Stock/Backorders' , 'woothemes' ); ?> </p>
2011-08-09 15:16:18 +00:00
< table >
< tbody >
< ? php echo implode ( '' , $outofstock ); ?>
</ tbody >
</ table >
</ div >
< div class = " clear " ></ div >
</ div >
</ div ><!-- postbox end -->
< ? php endif ; ?>
</ div >
< div class = " postbox-container " style = " width:49%; float:right; " >
< ? php
global $current_month_offset ;
$current_month_offset = ( int ) date ( 'm' );
if ( isset ( $_GET [ 'month' ])) $current_month_offset = ( int ) $_GET [ 'month' ];
?>
2011-08-10 17:11:11 +00:00
< div class = " postbox stats " id = " woocommerce-stats " >
2011-08-09 15:16:18 +00:00
< h3 class = " hndle " id = " poststuff " >
2011-08-10 17:11:11 +00:00
< ? php if ( $current_month_offset != date ( 'm' )) : ?> <a href="admin.php?page=woocommerce&month=<?php echo $current_month_offset+1; ?>" class="next">Next Month →</a><?php endif; ?>
< a href = " admin.php?page=woocommerce&month=<?php echo $current_month_offset -1; ?> " class = " previous " >& larr ; Previous Month </ a >
< span >< ? php _e ( 'Monthly Sales' , 'woothemes' ) ?> </span></h3>
2011-08-09 15:16:18 +00:00
< div class = " inside " >
< div id = " placeholder " style = " width:100%; height:300px; position:relative; " ></ div >
< script type = " text/javascript " >
/* <![CDATA[ */
jQuery ( function (){
function weekendAreas ( axes ) {
var markings = [];
var d = new Date ( axes . xaxis . min );
// go to the first Saturday
d . setUTCDate ( d . getUTCDate () - (( d . getUTCDay () + 1 ) % 7 ))
d . setUTCSeconds ( 0 );
d . setUTCMinutes ( 0 );
d . setUTCHours ( 0 );
var i = d . getTime ();
do {
// when we don't set yaxis, the rectangle automatically
// extends to infinity upwards and downwards
markings . push ({ xaxis : { from : i , to : i + 2 * 24 * 60 * 60 * 1000 } });
i += 7 * 24 * 60 * 60 * 1000 ;
} while ( i < axes . xaxis . max );
return markings ;
}
< ? php
function orders_this_month ( $where = '' ) {
global $current_month_offset ;
$month = $current_month_offset ;
$year = ( int ) date ( 'Y' );
$first_day = strtotime ( " { $year } - { $month } -01 " );
$last_day = strtotime ( '-1 second' , strtotime ( '+1 month' , $first_day ));
$after = date ( 'Y-m-d' , $first_day );
$before = date ( 'Y-m-d' , $last_day );
$where .= " AND post_date > ' $after ' " ;
$where .= " AND post_date < ' $before ' " ;
return $where ;
}
add_filter ( 'posts_where' , 'orders_this_month' );
$args = array (
'numberposts' => - 1 ,
'orderby' => 'post_date' ,
'order' => 'DESC' ,
'post_type' => 'shop_order' ,
'post_status' => 'publish' ,
'suppress_filters' => false
);
$orders = get_posts ( $args );
$order_counts = array ();
$order_amounts = array ();
// Blank date ranges to begin
$month = $current_month_offset ;
$year = ( int ) date ( 'Y' );
$first_day = strtotime ( " { $year } - { $month } -01 " );
$last_day = strtotime ( '-1 second' , strtotime ( '+1 month' , $first_day ));
if (( date ( 'm' ) - $current_month_offset ) == 0 ) :
$up_to = date ( 'd' , strtotime ( 'NOW' ));
else :
$up_to = date ( 'd' , $last_day );
endif ;
$count = 0 ;
while ( $count < $up_to ) :
$time = strtotime ( date ( 'Ymd' , strtotime ( '+ ' . $count . ' DAY' , $first_day ))) . '000' ;
$order_counts [ $time ] = 0 ;
$order_amounts [ $time ] = 0 ;
$count ++ ;
endwhile ;
if ( $orders ) :
foreach ( $orders as $order ) :
2011-08-10 17:11:11 +00:00
$order_data = & new woocommerce_order ( $order -> ID );
2011-08-09 15:16:18 +00:00
if ( $order_data -> status == 'cancelled' || $order_data -> status == 'refunded' ) continue ;
$time = strtotime ( date ( 'Ymd' , strtotime ( $order -> post_date ))) . '000' ;
if ( isset ( $order_counts [ $time ])) :
$order_counts [ $time ] ++ ;
else :
$order_counts [ $time ] = 1 ;
endif ;
if ( isset ( $order_amounts [ $time ])) :
$order_amounts [ $time ] = $order_amounts [ $time ] + $order_data -> order_total ;
else :
$order_amounts [ $time ] = ( float ) $order_data -> order_total ;
endif ;
endforeach ;
endif ;
remove_filter ( 'posts_where' , 'orders_this_month' );
?>
var d = [
< ? php
$values = array ();
foreach ( $order_counts as $key => $value ) $values [] = " [ $key , $value ] " ;
echo implode ( ',' , $values );
?>
];
for ( var i = 0 ; i < d . length ; ++ i ) d [ i ][ 0 ] += 60 * 60 * 1000 ;
var d2 = [
< ? php
$values = array ();
foreach ( $order_amounts as $key => $value ) $values [] = " [ $key , $value ] " ;
echo implode ( ',' , $values );
?>
];
for ( var i = 0 ; i < d2 . length ; ++ i ) d2 [ i ][ 0 ] += 60 * 60 * 1000 ;
var plot = jQuery . plot ( jQuery ( " #placeholder " ), [ { label : " Number of sales " , data : d }, { label : " Sales amount " , data : d2 , yaxis : 2 } ], {
series : {
lines : { show : true },
points : { show : true }
},
grid : {
show : true ,
aboveData : false ,
color : '#ccc' ,
backgroundColor : '#fff' ,
borderWidth : 2 ,
borderColor : '#ccc' ,
clickable : false ,
hoverable : true ,
markings : weekendAreas
},
xaxis : {
mode : " time " ,
timeformat : " %d %b " ,
tickLength : 1 ,
minTickSize : [ 1 , " day " ]
},
yaxes : [ { min : 0 , tickSize : 1 , tickDecimals : 0 }, { position : " right " , min : 0 , tickDecimals : 2 } ],
colors : [ " #21759B " , " #ed8432 " ]
});
function showTooltip ( x , y , contents ) {
jQuery ( '<div id="tooltip">' + contents + '</div>' ) . css ( {
position : 'absolute' ,
display : 'none' ,
top : y + 5 ,
left : x + 5 ,
border : '1px solid #fdd' ,
padding : '2px' ,
'background-color' : '#fee' ,
opacity : 0.80
}) . appendTo ( " body " ) . fadeIn ( 200 );
}
var previousPoint = null ;
jQuery ( " #placeholder " ) . bind ( " plothover " , function ( event , pos , item ) {
if ( item ) {
if ( previousPoint != item . dataIndex ) {
previousPoint = item . dataIndex ;
jQuery ( " #tooltip " ) . remove ();
if ( item . series . label == " Number of sales " ) {
var y = item . datapoint [ 1 ];
showTooltip ( item . pageX , item . pageY , item . series . label + " - " + y );
} else {
var y = item . datapoint [ 1 ] . toFixed ( 2 );
2011-08-10 17:11:11 +00:00
showTooltip ( item . pageX , item . pageY , item . series . label + " - <?php echo get_woocommerce_currency_symbol(); ?> " + y );
2011-08-09 15:16:18 +00:00
}
}
}
else {
jQuery ( " #tooltip " ) . remove ();
previousPoint = null ;
}
});
});
/* ]]> */
</ script >
</ div >
</ div ><!-- postbox end -->
< div class = " postbox " >
2011-08-10 17:11:11 +00:00
< h3 class = " hndle " id = " poststuff " >< span >< ? php _e ( 'Recent Product Reviews' , 'woothemes' ) ?> </span></h3>
< div class = " inside woocommerce-reviews-widget " >
2011-08-09 15:16:18 +00:00
< ? php
global $wpdb ;
$comments = $wpdb -> get_results ( " SELECT *, SUBSTRING(comment_content,1,100) AS comment_excerpt
FROM $wpdb -> comments
LEFT JOIN $wpdb -> posts ON ( $wpdb -> comments . comment_post_ID = $wpdb -> posts . ID )
WHERE comment_approved = '1'
AND comment_type = ''
AND post_password = ''
AND post_type = 'product'
ORDER BY comment_date_gmt DESC
LIMIT 5 " );
if ( $comments ) :
echo '<ul>' ;
foreach ( $comments as $comment ) :
echo '<li>' ;
echo get_avatar ( $comment -> comment_author , '32' );
$rating = get_comment_meta ( $comment -> comment_ID , 'rating' , true );
echo '<div class="star-rating" title="' . $rating . ' " >
2011-08-10 17:11:11 +00:00
< span style = " width:'.( $rating *16).'px " > '.$rating.' '.__(' out of 5 ', ' woothemes ').' </ span ></ div > ' ;
2011-08-09 15:16:18 +00:00
echo '<h4 class="meta"><a href="' . get_permalink ( $comment -> ID ) . '#comment-' . $comment -> comment_ID . '">' . $comment -> post_title . '</a> reviewed by ' . strip_tags ( $comment -> comment_author ) . '</h4>' ;
echo '<blockquote>' . strip_tags ( $comment -> comment_excerpt ) . ' [...]</blockquote></li>' ;
endforeach ;
echo '</ul>' ;
else :
2011-08-10 17:11:11 +00:00
echo '<p>' . __ ( 'There are no product reviews yet.' , 'woothemes' ) . '</p>' ;
2011-08-09 15:16:18 +00:00
endif ;
?>
</ div >
</ div ><!-- postbox end -->
< div class = " postbox " >
2011-08-10 17:11:11 +00:00
< h3 class = " hndle " id = " poststuff " >< span >< ? php _e ( 'Latest News' , 'woothemes' ) ?> </span></h3>
< div class = " inside woocommerce-rss-widget " >
2011-08-09 15:16:18 +00:00
< ? php
if ( file_exists ( ABSPATH . WPINC . '/class-simplepie.php' )) {
include_once ( ABSPATH . WPINC . '/class-simplepie.php' );
2011-08-10 17:11:11 +00:00
$rss = fetch_feed ( 'http://woocommerce.com/feed' );
2011-08-09 15:16:18 +00:00
if ( ! is_wp_error ( $rss ) ) :
$maxitems = $rss -> get_item_quantity ( 5 );
$rss_items = $rss -> get_items ( 0 , $maxitems );
if ( $maxitems > 0 ) :
echo '<ul>' ;
foreach ( $rss_items as $item ) :
$title = wptexturize ( $item -> get_title (), ENT_QUOTES , " UTF-8 " );
$link = $item -> get_permalink ();
$date = $item -> get_date ( 'U' );
if ( ( abs ( time () - $date ) ) < 86400 ) : // 1 Day
2011-08-10 17:11:11 +00:00
$human_date = sprintf ( __ ( '%s ago' , 'woothemes' ), human_time_diff ( $date ));
2011-08-09 15:16:18 +00:00
else :
2011-08-10 17:11:11 +00:00
$human_date = date ( __ ( 'F jS Y' , 'woothemes' ), $date );
2011-08-09 15:16:18 +00:00
endif ;
echo '<li><a href="' . $link . '">' . $title . '</a> – <span class="rss-date">' . $human_date . '</span></li>' ;
endforeach ;
echo '</ul>' ;
else :
2011-08-10 17:11:11 +00:00
echo '<ul><li>' . __ ( 'No items found.' , 'woothemes' ) . '</li></ul>' ;
2011-08-09 15:16:18 +00:00
endif ;
else :
2011-08-10 17:11:11 +00:00
echo '<ul><li>' . __ ( 'No items found.' , 'woothemes' ) . '</li></ul>' ;
2011-08-09 15:16:18 +00:00
endif ;
}
?>
</ div >
</ div ><!-- postbox end -->
< div class = " postbox " >
2011-08-10 17:11:11 +00:00
< h3 class = " hndle " id = " poststuff " >< span >< ? php _e ( 'Useful Links' , 'woothemes' ) ?> </span></h3>
< div class = " inside woocommerce-links-widget " >
2011-08-09 15:16:18 +00:00
< ul class = " links " >
2011-08-10 17:11:11 +00:00
< li >< a href = " http://www.woothemes.com/ " >< ? php _e ( 'WooThemes' , 'woothemes' ); ?> </a> – <?php _e('Premium WordPress Themes', 'woothemes'); ?></li>
< li >< a href = " https://github.com/mikejolley/woocommerce " >< ? php _e ( 'WooCommerce on Github' , 'woothemes' ); ?> </a> – <?php _e('Help extend and develop WooCommerce.', 'woothemes'); ?></li>
< li >< a href = " http://wordpress.org/extend/plugins/woocommerce/ " >< ? php _e ( 'WooCommerce on WordPress.org' , 'woothemes' ); ?> </a> – <?php _e('Leave us a rating if you like it!', 'woothemes'); ?></li>
2011-08-09 15:16:18 +00:00
</ ul >
< div class = " social " >
2011-08-10 17:11:11 +00:00
< h4 class = " first " >< ? php _e ( 'Show your support for WooCommerce!' , 'woothemes' ); ?> </h4>
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
< iframe src = " http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwoocommerce.com&send=false&layout=standard&width=450&show_faces=false&action=like&colorscheme=light&font=segoe+ui&height=24 " scrolling = " no " frameborder = " 0 " style = " border:none; overflow:hidden; width:450px; height:24px; " allowTransparency = " true " ></ iframe >
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
< p >< a href = " http://twitter.com/share " class = " twitter-share-button " data - url = " http://woocommerce.com/ " data - text = " WooCommerce: A WordPress eCommerce solution that works " data - count = " horizontal " data - via = " woocommerce " data - related = " WooThemes:Creators " > Tweet </ a >< script type = " text/javascript " src = " http://platform.twitter.com/widgets.js " ></ script ></ p >
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
< p >< g : plusone size = " medium " href = " http://woocommerce.com/ " ></ g : plusone >< script type = " text/javascript " src = " https://apis.google.com/js/plusone.js " > { lang : 'en-GB' } </ script ></ p >
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
< h4 >< ? php _e ( 'WooCommerce is bought to you by…' , 'woothemes' ); ?> </h4>
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
< p >< a href = " http://woocommerce.co.uk/ " >< img src = " <?php echo woocommerce::plugin_url(); ?>/assets/images/woocommerce.png " alt = " WooThemes " /></ a ></ p >
2011-08-09 15:16:18 +00:00
</ div >
< div class = " clear " ></ div >
</ div >
</ div ><!-- postbox end -->
</ div >
</ div >
</ div >
</ div >
< ? php
}