Improved coupons status display in admin table

This commit is contained in:
Claudio Sanches 2015-10-05 20:30:03 -03:00
parent 6ad2269961
commit db6f51216e
1 changed files with 3 additions and 1 deletions

View File

@ -486,10 +486,12 @@ class WC_Admin_Post_Types {
$edit_link = get_edit_post_link( $post->ID );
$title = _draft_or_post_title();
echo '<strong><a href="' . esc_attr( $edit_link ) . '" class="row-title">' . esc_html( $title ). '</a></strong>';
echo '<strong><a href="' . esc_attr( $edit_link ) . '" class="row-title">' . esc_html( $title ). '</a>';
_post_states( $post );
echo '</strong>';
$this->_render_shop_coupon_row_actions( $post, $title );
break;
case 'type' :