parent
d944b43845
commit
b75034ae38
|
@ -139,6 +139,7 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
|
|||
== Changelog ==
|
||||
|
||||
* Fix - Unhook wc_page_endpoint_title after it is ran once (main page title).
|
||||
* Fix - Taxes save issue when page is paginated.
|
||||
* Tweak - Improve category coupon message.
|
||||
* Tweak - Don't download GeoIP Database until geolocation option is enabled in settings.
|
||||
|
||||
|
|
|
@ -73,13 +73,13 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
<?php if ( is_cart() ) : ?>
|
||||
|
||||
<?php echo apply_filters( 'woocommerce_cart_no_shipping_available_html',
|
||||
'<div class="woocommerce-info"><p>' . __( 'There don‘t seem to be available shipping methods. Please double check your address, or contact us if you need any help.', 'woocommerce' ) . '</p></div>'
|
||||
'<div class="woocommerce-info"><p>' . __( 'There are no shipping methods available. Please double check your address, or contact us if you need any help.', 'woocommerce' ) . '</p></div>'
|
||||
); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php echo apply_filters( 'woocommerce_no_shipping_available_html',
|
||||
'<p>' . __( 'There don‘t seem to be available shipping methods. Please double check your address, or contact us if you need any help.', 'woocommerce' ) . '</p>'
|
||||
'<p>' . __( 'There are no shipping methods available. Please double check your address, or contact us if you need any help.', 'woocommerce' ) . '</p>'
|
||||
); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Reference in New Issue