Title: Remove subtotal
Last modified: September 27, 2020

---

# Remove subtotal

 *  [krismali](https://wordpress.org/support/users/krismali/)
 * (@krismali)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/remove-subtotal/)
 * Is it possible to remove / hide the subtotal field with CSS?
 * I sell digital downloads, so shipping is free. Hence, the subtotal is always 
   the same as the total.

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/remove-subtotal/#post-13466551)
 * Hey,
    Try adding this to your CSS:
 *     ```
       th.td.tlabel-subtotal, td.td.tvalue-subtotal {
           display: none;
       }
       ```
   
 * Hope that helps!
 * Hannah
 *  Thread Starter [krismali](https://wordpress.org/support/users/krismali/)
 * (@krismali)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/remove-subtotal/#post-13488386)
 * Thank you, Hannah, that totally worked!
 * Also, is there a way to change “Billing address” to “Contact information”. Since
   I sell digital products, I only collect name and email address at checkout, so“
   billing address” sounds odd.
 * Thanks for your help!
 *  [pumpky](https://wordpress.org/support/users/laitnesse2020/)
 * (@laitnesse2020)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/remove-subtotal/#post-13497841)
 * add_filter( ‘gettext’, ‘replace_text’, 80, 3 );
    function replace_text( $translated_text,
   $text, $domain ) { if ($domain == ‘kadence-woocommerce-email-designer’) { switch(
   $translated_text) { case ‘Billing address’: $translated_text = __(‘Contact information’,‘
   kadence-woocommerce-email-designer’); break; } } return $translated_text; }
 *  Thread Starter [krismali](https://wordpress.org/support/users/krismali/)
 * (@krismali)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/remove-subtotal/#post-13524177)
 * Unfortunately, this code didn´t work!
 * Actually, I´d rather hide this section at all than change the title. Is it possible
   to do it with CSS?
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/remove-subtotal/#post-13528209)
 * Hey [@krismali](https://wordpress.org/support/users/krismali/),
    You can use 
   this css to hide the address container:
 *     ```
       td.address-container {
           display: none;
       }
       ```
   
 * Hope that helps!
 * Best,
    Hannah

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove subtotal’ is closed to new replies.

 * ![](https://ps.w.org/kadence-woocommerce-email-designer/assets/icon-256x256.png?
   rev=3115863)
 * [Kadence WooCommerce Email Designer](https://wordpress.org/plugins/kadence-woocommerce-email-designer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/kadence-woocommerce-email-designer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/)
 * [Active Topics](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [hannah](https://wordpress.org/support/users/hannahritner/)
 * Last activity: [5 years, 7 months ago](https://wordpress.org/support/topic/remove-subtotal/#post-13528209)
 * Status: not resolved