Title: dk66's Replies | WordPress.org

---

# dk66

  [  ](https://wordpress.org/support/users/dk66/)

 *   [Profile](https://wordpress.org/support/users/dk66/)
 *   [Topics Started](https://wordpress.org/support/users/dk66/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dk66/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dk66/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dk66/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dk66/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dk66/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove Prices From Delivery Note in Woocommerce](https://wordpress.org/support/topic/remove-prices-from-delivery-note-in-woocommerce/)
 *  Thread Starter [dk66](https://wordpress.org/support/users/dk66/)
 * (@dk66)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/remove-prices-from-delivery-note-in-woocommerce/#post-14526979)
 * Thanks for reply. For info this was an issue with the Print Invoice & Delivery
   Note plugin and resolved by adding the following to functions.php:
 *     ```
       function example_price_free_delivery_note() {
           ?>
               <style>
                   .delivery-note .head-item-price,
                   .delivery-note .head-price, 
                   .delivery-note .product-item-price,
                   .delivery-note .product-price,
                   .delivery-note .order-items tfoot {
                       display: none;
                   }
                   .delivery-note .head-name,
                   .delivery-note .product-name {
                       width: 50%;
                   }
                   .delivery-note .head-quantity,
                   .delivery-note .product-quantity {
                       width: 50%;
                   }
                   .delivery-note .order-items tbody tr:last-child {
                       border-bottom: 0.24em solid black;
                   }
               </style>
           <?php
       }
       add_action( 'wcdn_head', 'example_price_free_delivery_note', 20 );
       ```
   

Viewing 1 replies (of 1 total)