Skip to content

Instantly share code, notes, and snippets.

@fervous
Created November 13, 2017 17:06
Show Gist options
  • Save fervous/c5d3811539f5eeaeaee3f74e21814b48 to your computer and use it in GitHub Desktop.
Save fervous/c5d3811539f5eeaeaee3f74e21814b48 to your computer and use it in GitHub Desktop.
/* this would go in your child theme functions.php: */
function custom_shipping_message () {
$message = 'your message here';
echo '<p>'.$message.'</p>';
}
/* this would go where you wish the message to show up in your product-edit.php
template which you have copied and moved to your child theme
(wp-content/themes/your-child-theme/wc-vendors/dashbaord/product-edit.php): */
<?php custom_shipping_message( ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment