Astra_Woocommerce::astra_get_cart_link()
Cart Link Displayed a link to the cart including the number of items present and the cart total
Description
Return
(void)
Source
File: inc/compatibility/woocommerce/class-astra-woocommerce.php
public function astra_get_cart_link() {
$view_shopping_cart = apply_filters( 'astra_woo_view_shopping_cart_title', __( 'View your shopping cart', 'astra' ) );
$woo_cart_link = wc_get_cart_url();
if ( is_customize_preview() ) {
$woo_cart_link = '#';
}
?>
<a class="cart-container" href="<?php echo esc_url( $woo_cart_link ); ?>" title="<?php echo esc_attr( $view_shopping_cart ); ?>">
<?php
do_action( 'astra_woo_header_cart_icons_before' );
if ( apply_filters( 'astra_woo_default_header_cart_icon', true ) ) {
?>
<div class="ast-cart-menu-wrap">
<span class="count">
<?php
if ( apply_filters( 'astra_woo_header_cart_total', true ) && null != WC()->cart ) {
echo WC()->cart->get_cart_contents_count(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
</span>
</div>
<?php
}
do_action( 'astra_woo_header_cart_icons_after' );
?>
</a>
<?php
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |