Title: bigtiny's Replies | WordPress.org

---

# bigtiny

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FOX - Currency Switcher Professional for WooCommerce] Wrong Price Showing on Products Archive Page (Correct On Single Product Page)](https://wordpress.org/support/topic/wrong-price-showing-on-products-archive-page-correct-on-single-product-page/)
 *  Thread Starter [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/wrong-price-showing-on-products-archive-page-correct-on-single-product-page/#post-16783627)
 * Hi there, thanks for your reply.
 * Yes, we use Variation Price Display for WooCommerce to show the higher pricing
   on our Product Archives Page.
 * This is because we want to avoid any pricing misunderstandings with our visitors.
 * Is there a workaround solution for this, or do you advice that I disable the 
   third party plugin?
 * Thank you kindly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] mobile number is not displaying on packing slip](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/)
 *  [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/page/2/#post-15155140)
 * [@yordansoares](https://wordpress.org/support/users/yordansoares/) [@pomegranate](https://wordpress.org/support/users/pomegranate/)
   Absolutely, just left a 5 star review. Keep up the great work, tysm!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] mobile number is not displaying on packing slip](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/)
 *  [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/page/2/#post-15153708)
 * Hi [@yordansoares](https://wordpress.org/support/users/yordansoares/) [@pomegranate](https://wordpress.org/support/users/pomegranate/)
 * Thanks for your time and reply on this shipping phone / recipient contact matter.
   I realised it was a custom field and added this snippet which now works!
 *     ```
       /**
        * Show the shipping contact after shipping address
        */
       add_action( 'wpo_wcpdf_after_shipping_address', 'wpo_wcpdf_show_shipping_contact', 10, 2 );
       function wpo_wcpdf_show_shipping_contact( $template_type, $order ){
       	$document = wcpdf_get_document( $template_type, $order );
       	if($template_type == 'packing-slip') { 
       		?>
       	  <p class="shipping_contact">Recipient Phone: <?php $document->custom_field('shipping_contact'); ?></p>
               <?php
           }
       }
       ```
   
 * Hope this helps anyone who has a custom field (ie. custom phone number field)
   and would like to add in their packing slip!
 * Truly grateful for all your replies and time.
    <3 bigtiny
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] 【Packing Slip】Remove Logo ; Show Delivery Instructions](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-logo-show-delivery-instructions/)
 *  Thread Starter [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-logo-show-delivery-instructions/#post-15153699)
 * This totally works!
    You’re brilliant. Tysm 🙂 bigtiny
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] mobile number is not displaying on packing slip](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/)
 *  [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/page/2/#post-15153103)
 * [@pomegranate](https://wordpress.org/support/users/pomegranate/) I’m using the
   official Simple template and testing it with the official template as welling.
 * The code on my Simple PHP template for packing slip shows billing_phone
    It should
   be shipping_phone.
 * I tried to change on the template but it doesn’t work that way I think.
 * Any possible snippets that I can add?
    Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] mobile number is not displaying on packing slip](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/)
 *  [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/page/2/#post-15152101)
 * [@pomegranate](https://wordpress.org/support/users/pomegranate/) thanks for your
   reply. It shows the Billing Party’s Phone Number on my packing slip but not the
   Recepient’s Phone Number.
 * I’d like to reflect the Receipient’s Phone Number. Is there a code I can add?
 * Thank you. 🙂
    bigtiny
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] mobile number is not displaying on packing slip](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/)
 *  [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-pdf-invoices-packing-slips-11/page/2/#post-15150262)
 * Hi [@yordansoares](https://wordpress.org/support/users/yordansoares/)
 * My current plugin is Version 2.11.1.
    Will replacing your version wipe out my
   previous customers data and info?
 * Thank you.
    bigtiny
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] 【Packing Slip】Remove Shipping Method & Display Order Instructions](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-shipping-method-display-order-instructions/)
 *  Thread Starter [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-shipping-method-display-order-instructions/#post-15150176)
 * Thank you, this is so helpful!
    Grateful 🙂 bigtiny
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] 【Packing Slip】Remove Shipping Method & Display Order Instructions](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-shipping-method-display-order-instructions/)
 *  Thread Starter [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-shipping-method-display-order-instructions/#post-15149590)
 * When I try to add these codes, it says “Cannot redeclare function wpo_wcpdf_custom_styles”.
 *     ```
       /**
        * Remove the logo, shop name and address on packing slip
        */
       add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
       function wpo_wcpdf_custom_styles ( $document_type, $document ) {
       	if ( $document_type == 'packing-slip' ) {
       		?>
       		table.head.container {
       			display: none;
       		<?php
       	}
       }
       ```
   
 *     ```
       add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
       function wpo_wcpdf_custom_styles ( $document_type, $document ) {
         if ($document_type == 'packing-slip'){
           ?>
           .shipping-method {
             display: none;
           }	
           <?php
         }
       }
       ```
   
 *     ```
       add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
       function wpo_wcpdf_custom_styles ( $document_type, $document ) {
           if ($document_type == 'packing-slip'){
             ?>
           .order-date {
               display: none;
           }
           <?php
       }
       ```
   
 * How can I solve this? T_T
    Is it possible to combine these codes together? I 
   tried to but it’s not working.
 * I also have a custom field I want to add >> show order_instructions
    -  This reply was modified 4 years, 5 months ago by [bigtiny](https://wordpress.org/support/users/bigtiny/).
    -  This reply was modified 4 years, 5 months ago by [bigtiny](https://wordpress.org/support/users/bigtiny/).
      Reason: Better context of snippets
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] 【Packing Slip】Remove Logo ; Show Delivery Instructions](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-logo-show-delivery-instructions/)
 *  Thread Starter [bigtiny](https://wordpress.org/support/users/bigtiny/)
 * (@bigtiny)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%80%90packing-slip%e3%80%91remove-logo-show-delivery-instructions/#post-15146466)
 * Hi Yordan
 * (1) Thanks so much for the code to remove the logo, shop name and address.
    That
   works.
 * **However, I do not need to add the same notes for all your packing slips.**
 * (2) I wish to display the _delivery instructions by my customers_ on my packing
   slip.
 * (3) I would also like to remove Shipping Method from the packing slip.
 * Appreciate your guidance!
    Thank you. bigtiny

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