Skip to content

Instantly share code, notes, and snippets.

@webdados
Last active April 20, 2019 07:21
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 webdados/2ff0230ba7e67c2e99d9a8b2b4f7e585 to your computer and use it in GitHub Desktop.
Save webdados/2ff0230ba7e67c2e99d9a8b2b4f7e585 to your computer and use it in GitHub Desktop.
ifthen mbway use order number formatted instead of order id
<?php
add_filter( 'mbway_ifthen_webservice_desc', function( $desc, $order_id ) {
$order = wc_get_order( $order_id );
return sprintf( '%s %s', get_bloginfo( 'name' ), $order->get_meta( '_order_number_formatted' ) );
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment