Merge branch 'master' of github.com:woothemes/woocommerce
This commit is contained in:
commit
c8da607fa2
|
@ -26,7 +26,7 @@ class WC_Email_Cancelled_Order extends WC_Email {
|
|||
|
||||
$this->id = 'cancelled_order';
|
||||
$this->title = __( 'Cancelled order', 'woocommerce' );
|
||||
$this->description = __( 'Cancelled order emails are sent to the recipient list when orders have been marked cancelled (if they were previously pending or on-hold).', 'woocommerce' );
|
||||
$this->description = __( 'Cancelled order emails are sent to the recipient list when orders have been marked cancelled (if they were previously processing or on-hold).', 'woocommerce' );
|
||||
|
||||
$this->heading = __( 'Cancelled order', 'woocommerce' );
|
||||
$this->subject = __( '[{site_title}] Cancelled order ({order_number})', 'woocommerce' );
|
||||
|
|
|
@ -75,7 +75,7 @@ class WC_Product_Cat_List_Walker extends Walker {
|
|||
$output .= ' current-cat-parent';
|
||||
}
|
||||
|
||||
$output .= '"><a href="' . get_term_link( (int) $cat->term_id, 'product_cat' ) . '">' . __( $cat->name, 'woocommerce' ) . '</a>';
|
||||
$output .= '"><a href="' . get_term_link( (int) $cat->term_id, $this->tree_type ) . '">' . __( $cat->name, 'woocommerce' ) . '</a>';
|
||||
|
||||
if ( $args['show_count'] ) {
|
||||
$output .= ' <span class="count">(' . $cat->count . ')</span>';
|
||||
|
|
Loading…
Reference in New Issue