Description
“tcp_shopping_cart_before_cart” action is executed before shopping cart is displayed.
Example
<?php
function my_tcp_shopping_cart_before_cart() {
echo 'Before Shopping cart';
}
add_action( 'tcp_shopping_cart_before_cart', 'my_tcp_shopping_cart_before_cart' ); ?>
Related
Change Log
Since 1.4.1
