How can I add a message to the woocommerce side cart? div class=”widget_shopping_cart_content”>
I would like it to display a message on top of a minimum order amount. Have just found code that puts a message in the cart page but would like it to show up in the side cart that opens when you click the cart widget.
I have tried this code:
add_action( 'woocommerce_widget_shopping_cart_content', 'shop_message', 20 ); function shop_message() { echo '<p class="woocommerce-message">'Minsta beställning 300 kr för Sverige och 1000 kr för övriga länder.'</p>'; }
Does not work unfortunately. The div class of the widget side cart is: widget_shopping_cart_content.
I would like the text to go either on top of the whole container or on the button over or under the buttons, everything is fine just if I can get it there. Preferably a different color also så den synns. Here is the link to the page: https://motoroldies.rocketdigital.se/
Thank you!
Have tried this code and some:
add_action( 'woocommerce_widget_shopping_cart_content', 'shop_message', 20 ); function shop_message() { echo '<p class="woocommerce-message">'Minsta beställning 300 kr för Sverige och 1000 kr för övriga länder.'</p>'; }