Skip to content

Instantly share code, notes, and snippets.

@bporcelli
Created February 17, 2022 13:46
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 bporcelli/0379bd7081af8da40b22133d3aa37b05 to your computer and use it in GitHub Desktop.
Save bporcelli/0379bd7081af8da40b22133d3aa37b05 to your computer and use it in GitHub Desktop.
[MarketShip] Change free shipping help text
<?php
/**
* Changes the help text for Free Shipping.
* This is displayed in the Dokan dashboard at the top of the method
* settings page.
*/
function marketship_change_free_shipping_help_text() {
return __( 'My free shipping help text' );
}
add_filter( 'marketship_free_shipping_help_text', 'marketship_change_free_shipping_help_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment