Deprecation notices

This commit is contained in:
Johan Nielsen 2018-02-19 23:58:24 +01:00 committed by GitHub
parent 7b1f482f87
commit d1dac63120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ do_action( 'woocommerce_before_cart' ); ?>
<?php
echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf(
'<a href="%s" class="remove" aria-label="%s" data-product_id="%s" data-product_sku="%s">&times;</a>',
esc_url( WC()->cart->get_remove_url( $cart_item_key ) ),
esc_url( wc_get_cart_remove_url( $cart_item_key ) ),
esc_attr__( 'Remove this item', 'understrap' ),
esc_attr( $product_id ),
esc_attr( $_product->get_sku() )
@ -84,7 +84,7 @@ do_action( 'woocommerce_before_cart' ); ?>
}
// Meta data
echo WC()->cart->get_item_data( $cart_item );
echo wc_get_formatted_cart_item_data( $cart_item );
// Backorder notification
if ( $_product->backorders_require_notification() && $_product->is_on_backorder( $cart_item['quantity'] ) ) {