Title: Cold's Replies | WordPress.org

---

# Cold

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Testimonials] Translate Read more](https://wordpress.org/support/topic/translate-read-more-22/)
 *  [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/translate-read-more-22/#post-17796771)
 * I have this same problem, please fix it!
 * A temporary solution is to edit the **testimonials-plugin.class.php** file and
   find **line 506**, which contains:
   `'language' => 'en',`and replacing en with
   the language we need.
    -  This reply was modified 2 years, 1 month ago by [Cold](https://wordpress.org/support/users/cold2425/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blank page showing when attempting to edit post](https://wordpress.org/support/topic/blank-page-showing-when-attempting-to-edit-post/)
 *  [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/blank-page-showing-when-attempting-to-edit-post/#post-17292099)
 * what plugins do you use on your website?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Enabled Cache and problem with contact form 7](https://wordpress.org/support/topic/enabled-cache-and-problem-with-contact-form-7/)
 *  Thread Starter [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/enabled-cache-and-problem-with-contact-form-7/#post-16999943)
 * This same:
 * _“ONE OR MORE FIELDS HAVE AN ERROR. PLEASE CHECK AND TRY AGAIN”_
 * After restoring the default settings, “Enabled Cache” is ON. As soon as I disable
   it, the forms work fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels] Polylang support?](https://wordpress.org/support/topic/polylang-support-42/)
 *  Thread Starter [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/polylang-support-42/#post-16568244)
 * I’ve received the answer:
 * _Thank you for reaching out to us. We are here to assist you. All strings used
   in our plugin are translatable and we provide full compatibility with **WPML**.
   Unlike the WPML plugin, the Polylang plugin handles translation with XML files.
   We are sorry to let you know that our plugin currently does not support it. The
   compatibility with Polylang is already in our development pipeline and since 
   it requires some development efforts and internal changes we cannot commit to
   it at this moment._
 * I’m closing the thread.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels] Download Invoice in My-Account Orders Page](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/)
 *  [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/#post-16565618)
 * You missed the double _ on “Download Invoice”, working code:
 *     ```wp-block-code
       function download_invoice_button($actions, $order)
       {
           $actions['download_invoice'] = array('url' => wp_nonce_url(home_url('/?attaching_pdf=1&print_packinglist=true&email=' . base64_encode($order->get_billing_email()) . '&post=' . base64_encode($order->get_id()) . '&type=download_invoice&user_print=1&wpnonce=' . wp_create_nonce('wf-woocommerce-packing-list')), 'wf-woocommerce-packing-list'), 'name' => __('Download Invoice', 'textdomain'));
           return $actions;
       }
       add_filter('woocommerce_my_account_my_orders_actions', 'download_invoice_button', 10, 2);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels] Download Invoice in My-Account Orders Page](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/)
 *  [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/#post-16565557)
 * Obviously you have to customize it for your site, but the code itself works because
   I implemented it yesterday. It doesn’t matter where you want to insert it, you
   just need to correctly pass the order id and user email address that are used
   in this snippet.
    -  This reply was modified 3 years, 4 months ago by [Cold](https://wordpress.org/support/users/cold2425/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels] Download Invoice in My-Account Orders Page](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/)
 *  [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/#post-16565429)
 * And what exactly is happening? Because literally yesterday I implemented it on
   my website and everything works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels] Download Invoice in My-Account Orders Page](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/)
 *  [Cold](https://wordpress.org/support/users/cold2425/)
 * (@cold2425)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/download-invoice-in-my-account-orders-page/#post-16565284)
 * Hi, this topic has already been discussed here:
 * [https://wordpress.org/support/topic/function-to-get-the-url-to-print-or-download-the-invoice/](https://wordpress.org/support/topic/function-to-get-the-url-to-print-or-download-the-invoice/)
 * Good luck! 🙂

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