• Resolved tkwing009

    (@tkwing009)


    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?

    Looking forward to your reply.

    thanks

Viewing 1 replies (of 1 total)
  • Plugin Support Upendra Kapse

    (@wpupen)

    Hi @tkwing009,

    Apologies for the delay in getting back to you on this.

    Can you tell us which other plugin you are using for the delivery date info?

    Also, we do have a filter to remove certain fields from the Invoice. You can refer to this example code snippet that will help you with this:

    /**
     * Add this code snippet in functions.php file of your currently active theme.
     * An example that removes the 'Payment Method' field.
     */
    function example_removed_payment_method( $fields ) {
        unset( $fields['payment_method'] );
        return $fields;
    }
    add_filter( 'wcdn_order_info_fields', 'example_removed_payment_method' );

    In the above snippet you can add the field that you want to remove from the Invoice instead of the Payment Method field.

    Kind Regards,
    Upendra.

Viewing 1 replies (of 1 total)
  • The topic ‘remove the other plugin info’ is closed to new replies.