Title: remove addon plugin info
Last modified: April 1, 2021

---

# remove addon plugin info

 *  Resolved [tkwing009](https://wordpress.org/support/users/tkwing009/)
 * (@tkwing009)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/remove-addon-plugin-info/)
 * My print page also display the delivery date plugin info and message other than
   product name and SKU. May I know how to remove the other plugin info in print
   page?

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

 *  Plugin Contributor [Darren Peyou](https://wordpress.org/support/users/dpeyou/)
 * (@dpeyou)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/remove-addon-plugin-info/#post-14265397)
 * Hello [@tkwing009](https://wordpress.org/support/users/tkwing009/),
 * You can append **&output=html** to the PDF document URL in order to see it as
   HTML instead of a PDF.
 * ![output-HTML](https://i0.wp.com/i.ibb.co/mcMschK/output-HTML.png?ssl=1)
 * E.g.: if your PDF document URL is:
    [https://example.com/wp-admin/admin-ajax.php?action=generate_wpo_wcpdf&document_type=invoice&order_ids=123&_wpnonce=abcde12345](https://example.com/wp-admin/admin-ajax.php?action=generate_wpo_wcpdf&document_type=invoice&order_ids=123&_wpnonce=abcde12345)
 * You can add &debug=true at the end of the URL to open the document as HTML:
    
   [https://example.com/wp-admin/admin-ajax.php?action=generate_wpo_wcpdf&document_type=invoice&order_ids=123&_wpnonce=abcde12345](https://example.com/wp-admin/admin-ajax.php?action=generate_wpo_wcpdf&document_type=invoice&order_ids=123&_wpnonce=abcde12345)**&
   output=html**
 * Then afterwards, you can right-click the area you are trying to hide, selecting“
   Inspect Element” to see which CSS classes are present:
 * ![Screenshot-2021-03-09-16-22-57](https://i0.wp.com/i.ibb.co/Cb3qh9B/Screenshot-
   2021-03-09-16-22-57.png?ssl=1)
 * Then the CSS will look like this:
 *     ```
       add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
       function wpo_wcpdf_custom_styles ( $document_type, $document ) {
         ?>
         .some-class {
           display: none !important;
         }
         <?php
       }
       ```
   
 * If you haven’t used hooks before: [https://docs.wpovernight.com/general/how-to-use-filters/](https://docs.wpovernight.com/general/how-to-use-filters/)
 *  Plugin Contributor [Darren Peyou](https://wordpress.org/support/users/dpeyou/)
 * (@dpeyou)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/remove-addon-plugin-info/#post-14310069)
 * Hi [@tkwing009](https://wordpress.org/support/users/tkwing009/),
 * Were you able to achieve what you needed?

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

The topic ‘remove addon plugin info’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-256x256.
   png?rev=2189942)
 * [PDF Invoices & Packing Slips for WooCommerce](https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [meta-data](https://wordpress.org/support/topic-tag/meta-data/)

 * 2 replies
 * 2 participants
 * Last reply from: [Darren Peyou](https://wordpress.org/support/users/dpeyou/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/remove-addon-plugin-info/#post-14310069)
 * Status: resolved