Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Before cart table
- */
- add_action('woocommerce_before_cart', function () {
- /**
- * Your notice text
- */
- $notice = 'Lorem ipsum dolor sit amet consectetur adipisicing elit.';
- ?>
- <div style="width:100%;padding:10px;margin-bottom:10px;border-left:4px solid #f0b849;background-color:#fef8ee;">
- <?php echo $notice?>
- </div>
- <?php
- });
- /**
- * After cart table
- */
- add_action('woocommerce_before_cart_collaterals', function () {
- /**
- * Your notice text
- */
- $notice = 'Lorem ipsum dolor sit amet consectetur adipisicing elit.';
- ?>
- <div style="width:100%;padding:10px;margin-bottom:10px;border-left:4px solid #f0b849;background-color:#fef8ee;">
- <?php echo $notice?>
- </div>
- <?php
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement