Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogist/bb42741cbd36e3ed3018 to your computer and use it in GitHub Desktop.
Save woogist/bb42741cbd36e3ed3018 to your computer and use it in GitHub Desktop.
WooCommerce Local Pickup Plus: Add freeform explanatory text above the pickup location dropdown
add_action( 'woocommerce_review_order_before_local_pickup_location', 'local_pickup_instructions' );
function local_pickup_instructions() {
?>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do...</p>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment