Skip to content

Commit

Permalink
Don't say 'Oops' about a cart being empty. It adds personality which …
Browse files Browse the repository at this point in the history
…may not always be appropriate for every site, and it could make someone feel they did something they weren't supposed to.
  • Loading branch information
JustinSainton committed Jun 19, 2015
1 parent 3d8cb2a commit 2231a60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<?php if ( wpsc_cart_has_items() ): ?>
<?php wpsc_cart_item_table(); ?>
<?php else: ?>
<p><?php esc_html_e( "Oops, there's nothing in your cart.", 'wpsc' ); ?></p>
<p><?php esc_html_e( "There's nothing in your cart.", 'wpsc' ); ?></p>
<p><?php wpsc_keep_shopping_button(); ?></p>
<?php endif ?>
</div>

0 comments on commit 2231a60

Please sign in to comment.