{"id":337,"date":"2018-06-11T13:44:38","date_gmt":"2018-06-11T13:44:38","guid":{"rendered":"https:\/\/demos.welaunch.io\/woocommerce-print-products\/?post_type=faq&#038;p=337"},"modified":"2020-06-20T12:28:42","modified_gmt":"2020-06-20T10:28:42","slug":"how-to-remove-data-from-pdf-product","status":"publish","type":"faq","link":"https:\/\/www.welaunch.io\/en\/knowledge-base\/faq\/how-to-remove-data-from-pdf-product\/","title":{"rendered":"How to Remove Data from PDF Product?"},"content":{"rendered":"<p>If you want to remove data beside the options panel, you can always hook into WooCommerce functions. Then you can check if the $_GET parameter exists and apply the hook correctly.<\/p>\n<p>Here is an example to remove the Weight from Additional Information only on the PDF Print Product:<\/p>\n<pre>function remove_weight_from_pdf($value) {\n\tif(isset($_GET)) {\n\t\t$value = false;\n\t}\n\n\treturn $value;\n}\nadd_filter('woocommerce_product_get_weight', 'remove_weight_from_pdf', 10, 1);<\/pre>\n","protected":false},"author":1,"featured_media":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","product_cat":[],"class_list":["post-337","faq","type-faq","status-publish","hentry","faq_topics-print-products-filter-hooks"],"_links":{"self":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq\/337","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq"}],"about":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/types\/faq"}],"author":[{"embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/comments?post=337"}],"version-history":[{"count":0,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq\/337\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/media?parent=337"}],"wp:term":[{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/product_cat?post=337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}