• Resolved Azurnyx

    (@littlerebel)


    Hello,

    Is there any way to totally disable the option of download the PDF in My account? I would like that the download option was only available for the admin, and not for the customers.

    Also, is there an option to set the language of the plugin to Spanish but to keep the default language of my wordpress installation in English?

    thank you so much for this great plugin!

    https://www.ads-software.com/plugins/woocommerce-pdf-invoices-packing-slips/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi there,
    You can do this by placing the following code in your theme’s functions.php:

    /**
     * Remove Download PDF button from My Account page
     */
    add_filter( 'woocommerce_my_account_my_orders_actions', 'remove_my_account_pdf_link', 999, 2 );
    function remove_my_account_pdf_link ( $actions, $order ) {
    	unset($actions['invoice']);
    	return $actions;
    }

    Let me know if you have any other questions!

    Ewout

    Thread Starter Azurnyx

    (@littlerebel)

    Thank you so much! it works perfect.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘disable download pdf’ is closed to new replies.