Title: Small issues and shortcode
Last modified: August 17, 2026

---

# Small issues and shortcode

 *  Resolved [scph35003](https://wordpress.org/support/users/scph35003/)
 * (@scph35003)
 * [2 weeks, 4 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/)
 * hi – is there a shortcode abailable? im using the themes default cart/checkout
   page and the quickship isnt showing. Also using Elementor product page and again
   cannot get it to show
   Also on the home page for the show on acrhives the font/
   icon is huge so had to disable this. Also the min/seconds isnt showing for me
   since the new update

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

 *  Plugin Support [lazyowner458](https://wordpress.org/support/users/lazyowner458/)
 * (@lazyowner458)
 * [2 weeks, 4 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18995651)
 * Hi [@scph35003](https://wordpress.org/support/users/scph35003/) ,
 * We did not previously have shortcode support for estimated delivery dates. However,
   based on your enquiry, we’ve added this feature to the plugin. We’ve also fixed
   the time preview issue, and both fixes are included in the latest release.
 * You can find the shortcodes in the “Help” section of the plugin.
 * Please note that if the order cutoff time has already passed, the time will not
   be displayed. Make sure the order cutoff time is set to a future time.
 *  Thread Starter [scph35003](https://wordpress.org/support/users/scph35003/)
 * (@scph35003)
 * [2 weeks, 3 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18996105)
 * Thank you – that would massivly help.
 * Also how do i disable showing on email? I have YITH PDF invoice and packing slip
   and its showing on the packing slip for each product… so each day i have to print
   the packing slips for the orders and this extra info is adding more lines and
   using more paper – if that makes sense
    -  This reply was modified 2 weeks, 3 days ago by [scph35003](https://wordpress.org/support/users/scph35003/).
    -  This reply was modified 2 weeks, 3 days ago by [scph35003](https://wordpress.org/support/users/scph35003/).
    -  This reply was modified 2 weeks, 3 days ago by [scph35003](https://wordpress.org/support/users/scph35003/).
 *  Plugin Support [lazyowner458](https://wordpress.org/support/users/lazyowner458/)
 * (@lazyowner458)
 * [2 weeks, 3 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18996272)
 * Hi [@scph35003](https://wordpress.org/support/users/scph35003/),
 * We’ll release another update next week that will include the option to disable
   the dates on emails, along with patches for other minor bugs. Please stay tuned.
 *  Plugin Support [lazyowner458](https://wordpress.org/support/users/lazyowner458/)
 * (@lazyowner458)
 * [2 weeks, 2 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18997570)
 * [@scph35003](https://wordpress.org/support/users/scph35003/), we’ve pushed the
   release early and also added the option to disable the dates in emails. Do check
   it out as well.
 * Also, thanks for the review. It keeps us motivated to make the plugin even better.
 *  Thread Starter [scph35003](https://wordpress.org/support/users/scph35003/)
 * (@scph35003)
 * [2 weeks, 1 day ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18998067)
 * thanks you! ive read it does not cover PDF invoices/Packing slips etc…. what 
   emails do i need to turn off? All of them or any specific ones?
 *  Plugin Author [Yoyal Limbu](https://wordpress.org/support/users/y0000el/)
 * (@y0000el)
 * [2 weeks, 1 day ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18998180)
 * None, leave the email switches alone. They only affect WooCommerce’s own
   emails.
   Packing slips read the estimate straight off the order line.Turn off “Save on
   the order” under Display > Orders & Emails instead. It thenis not stored at all,
   so it drops off slips, invoices, emails, admin orders andMy Account together.
   Note it only applies to new orders, anything alreadyplaced will still print.To
   keep it in your emails and strip it only from the YITH documents, leave thaton
   and add this. It also cleans up existing orders:add_action( ‘ywpi_before_template_generation’,
   function () { add_filter( ‘woocommerce_order_item_get_formatted_meta_data’, function(
   $meta ) { foreach ( $meta as $id => $entry ) { if ( isset( $entry->key ) && ‘
   Est. Delivery’ === $entry->key ) { unset( $meta[ $id ] ); } } return $meta; });});
   Put it in your functions.php or wp-content/mu-plugins/quickshipd-hide-on-pdf.
   php.This targets YITH WooCommerce PDF Invoice and Shipping List. If you are on“
   PDFInvoices & Packing Slips for WooCommerce” instead, that is a different pluginand
   needs a different hook, so let me know. We do not officially support YITHin the
   free version, so the snippet is as is. A Pro version with properintegrations 
   and direct support is coming.
 *  Thread Starter [scph35003](https://wordpress.org/support/users/scph35003/)
 * (@scph35003)
 * [2 weeks ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18999204)
 * Thanks – really sorry, im using another plugin (not YITH) its called **PDF Invoices&
   Packing Slips for WooCommerce** by [WP Overnight](https://www.wpovernight.com/)
 *  Plugin Author [Yoyal Limbu](https://wordpress.org/support/users/y0000el/)
 * (@y0000el)
 * [2 weeks ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18999226)
 * No problem, that changes the snippet. This removes the estimate from packing 
   slips only, and leaves it on your invoices and in your emails. It also covers
   orders already placed, since it runs when the PDF is built:
 *     ```wp-block-code
       add_action(    'wpo_wcpdf_before_html',    function ( $document_type ) {        if ( 'packing-slip' !== $document_type ) {            return;        }        add_filter(            'woocommerce_order_item_get_formatted_meta_data',            function ( $meta ) {                foreach ( $meta as $id => $entry ) {                    if ( isset( $entry->key ) && 'Est. Delivery' === $entry->key ) {                        unset( $meta[ $id ] );                    }                }                return $meta;            }        );    });
       ```
   
 * Put it in your functions.php.It works for bulk printing too, which is what you
   want for the daily run.
 * If you would rather it came off invoices as well, change ‘packing-slip’ to
   ‘invoice’
   on a second copy, or just turn off “Save on the order” under Display Settings.
 *  Thread Starter [scph35003](https://wordpress.org/support/users/scph35003/)
 * (@scph35003)
 * [2 weeks ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-18999285)
 * amazing!! thanks. Ill see how that goes. i left you a possitive review a few 
   days ago. support is amazing and so is the plugin
 *  Plugin Support [lazyowner458](https://wordpress.org/support/users/lazyowner458/)
 * (@lazyowner458)
 * [1 week, 3 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-19002412)
 * We’re about to close this ticket for now. You can create another one if any questions
   arise. We’d be happy to help you.

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

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fsmall-issues-and-shortcode%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/quickshipd/assets/icon-256x256.png?rev=3560202)
 * [QuickShipD - Estimated Delivery Date for WooCommerce](https://wordpress.org/plugins/quickshipd/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/quickshipd/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/quickshipd/)
 * [Active Topics](https://wordpress.org/support/plugin/quickshipd/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/quickshipd/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/quickshipd/reviews/)

 * 10 replies
 * 3 participants
 * Last reply from: [lazyowner458](https://wordpress.org/support/users/lazyowner458/)
 * Last activity: [1 week, 3 days ago](https://wordpress.org/support/topic/small-issues-and-shortcode/#post-19002412)
 * Status: resolved