Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // WooCommerce - Add custom shipping note
- add_action( 'woocommerce_review_order_before_shipping', 'custom_shipping_note' );
- function custom_shipping_note() {
- print '<tr><td></td><td>My custom text about shipping methods.</td></tr>'.PHP_EOL;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement