Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mikejolley/c4606aa52754b334f0f1bbe7e5b5ca6b to your computer and use it in GitHub Desktop.

Select an option

Save mikejolley/c4606aa52754b334f0f1bbe7e5b5ca6b to your computer and use it in GitHub Desktop.

Revisions

  1. mikejolley created this gist Jun 30, 2016.
    11 changes: 11 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    <?php // Do not include this if already open!

    /**
    * Code goes in theme functions.php.
    */
    add_filter( 'woocommerce_get_order_item_totals', 'custom_woocommerce_get_order_item_totals' );

    function custom_woocommerce_get_order_item_totals( $totals ) {
    unset( $totals['payment_method'] );
    return $totals;
    }