For better visibility how can we add html text message above cart on cart page?
This topic has 3 replies, 2 voices, and was last updated 5 years ago ago by Rose Tyler
For better visibility how can we add html text message above cart on cart page?
We want to display the red message that is now below cart but put it above the cart:
Please Note!
Backorder items will only be processed starting on the 4th of January 2021!
In-stock items will be shipped subject to the availability of courier services.
Hello,
You can use woocommerce_cart_is_empty and woocommerce_cart_is_empty actions
https://developer.wordpress.org/themes/advanced-topics/child-themes/
something like this
child-theme/functions.php
add_action('woocommerce_cart_is_empty', function() {
echo '<div class="woocommerce-error">Your text here</div>';
});
Regards
The issue related to '‘Message above cart’' has been successfully resolved, and the topic is now closed for further responses