cart/mini-cart.php
- change checked value to `$product_permalink` - Add protocol to URLs for thumbnails in cart Reference: 79fa19251e06c146390018984034b5a1981a78e2 8789642fb9f98466ac0729e3d9e0285e42dbb852
This commit is contained in:
parent
b5ecffa380
commit
ce9f8dc8bd
|
@ -50,11 +50,11 @@ do_action( 'woocommerce_before_mini_cart' ); ?>
|
|||
esc_attr( $_product->get_sku() )
|
||||
), $cart_item_key );
|
||||
?>
|
||||
<?php if ( ! $_product->is_visible() ) : ?>
|
||||
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name . ' '; ?>
|
||||
<?php if ( empty( $product_permalink ) ) : ?>
|
||||
<?php echo $thumbnail . $product_name . ' '; ?>
|
||||
<?php else : ?>
|
||||
<a href="<?php echo esc_url( $product_permalink ); ?>">
|
||||
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name . ' '; ?>
|
||||
<?php echo $thumbnail . $product_name . ' '; ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
<?php echo wc_get_formatted_cart_item_data( $cart_item ); ?>
|
||||
|
|
Reference in New Issue