I want to display message in cart page after items list. But i want to add it through a hook/function ,not with editing the cart page. Cant find exactly how to do it. but its probably looks something like:
add_action( 'print_cart', 'add_some_message' );
function add_some_message() {
add_meta_box( 'message_title', 'message title', 'after' );
}
Its just a example, not familiar with woo functions.
Thanks.