Title: supportvdes's Replies | WordPress.org

---

# supportvdes

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

 *   [Profile](https://wordpress.org/support/users/supportvdes/)
 *   [Topics Started](https://wordpress.org/support/users/supportvdes/topics/)
 *   [Replies Created](https://wordpress.org/support/users/supportvdes/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/supportvdes/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/supportvdes/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/supportvdes/engagements/)
 *   [Favorites](https://wordpress.org/support/users/supportvdes/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: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14896905)
 * This works, but only in the core plugin files not the child theme.
 * I have followed the instructions.
 * Copying all the templates from /simple into
 * public_html/wp-content/themes/boxshop-child/woocommerce/pdf/customisedtemplate
 * I have edited the packing slip file, (just like how i mentioned it worked for
   the core plugin file), but it’s not showing the result.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14895124)
 * I have done what you have said. Copied the invoice.php content into the packing
   slip, but can’t find the total + shipping method in the file – [https://www.dropbox.com/t/aCB6yfYyNlPLCb4X](https://www.dropbox.com/t/aCB6yfYyNlPLCb4X)
 * I just want this “shipping: price + dpd delivery..” – on the header of the packing
   slip [https://www.dropbox.com/t/fWtEajqR9fmVIxiI](https://www.dropbox.com/t/fWtEajqR9fmVIxiI)
    -  This reply was modified 4 years, 7 months ago by [supportvdes](https://wordpress.org/support/users/supportvdes/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14894678)
 * Would you be able to provide instructions for “So you could use the invoice.php
   file as a starting point for creating your custom Packing Slip” happy to try 
   it out myself
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14892997)
 * On the invoice page i can see:
 * Shipping
    £2.13 via FREE DPD Before 12pm Next Day (order before 12pm, excl fees)
 * how do i make the price and shipping method show on the packing slip? as it’s
   only showing without the price:
 * Shipping Method: FREE DPD Before 12pm Next Day(order before 12pm, excl fees)
 * _order_shipping + order_item_name: is what i found from the order data plugin
    -  This reply was modified 4 years, 7 months ago by [supportvdes](https://wordpress.org/support/users/supportvdes/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14891302)
 * worked it out, thanks very much for your help:
 * add_action( ‘wpo_wcpdf_before_order_data’, ‘jckwds_timeslot’, 10, 2 );
    function
   jckwds_timeslot ($invoice, $order) { $document = wcpdf_get_document( $invoice,
   $order ); if ($invoice == ‘packing-slip’) { ?> <tr class=”time-slot”> <th>Time
   slot:</th> <td><?php $document->custom_field(‘jckwds_timeslot’); ?></td> </tr
   > <?php } }`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14891216)
 * if you could provide us the code to put on then functions that would be great
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] delivery slots](https://wordpress.org/support/topic/delivery-slots/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-slots/#post-14891187)
 * Apologies, what I mean is we want the same info here to show on the packing slip.–
   [https://www.dropbox.com/s/h795g1gqkbmzsb2/Product.png?dl=0](https://www.dropbox.com/s/h795g1gqkbmzsb2/Product.png?dl=0)
 * Does the code already exist so i can just adapt the template page (packing slip)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Error log](https://wordpress.org/support/topic/error-log-103/)
 *  Thread Starter [supportvdes](https://wordpress.org/support/users/supportvdes/)
 * (@supportvdes)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/error-log-103/#post-14741535)
 * Yes still having issues. I had to disable the plugin as of yesterday.
 *     ```
       [05-Aug-2021 15:07:55 UTC] PHP Warning:  array_key_exists() expects parameter 2 to be array, null given in /home/[hidden]/public_html/wp-content/plugins/facebook-for-woocommerce/includes/Feed/FeedConfigurationDetection.php on line 110
       [05-Aug-2021 15:07:55 UTC] PHP Warning:  array_key_exists() expects parameter 2 to be array, null given in /home/[hidden]/public_html/wp-content/plugins/facebook-for-woocommerce/includes/Feed/FeedConfigurationDetection.php on line 114
       [05-Aug-2021 15:07:55 UTC] PHP Warning:  array_key_exists() expects parameter 2 to be array, null given in /home/[hidden]/public_html/wp-content/plugins/facebook-for-woocommerce/includes/Feed/FeedConfigurationDetection.php on line 122
       ```
   
 *     ```
       ### WordPress Environment ###
   
       WC Version: 5.5.2
       REST API Version: ✔ 5.5.2
       WC Blocks Version: ✔ 5.3.3
       Action Scheduler Version: ✔ 3.2.1
       WC Admin Version: ✔ 2.4.4
       Log Directory Writable: ✔
       WP Version: 5.8
       WP Multisite: –
       WP Memory Limit: 2 GB
       WP Debug Mode: –
       WP Cron: –
       Language: en_GB
       External object cache: –
   
       ### Server Environment ###
   
       Server Info: LiteSpeed
       PHP Version: 7.4.22
       PHP Post Max Size: 1 GB
       PHP Time Limit: 3000
       PHP Max Input Vars: 3000
       cURL Version: 7.71.0
       OpenSSL/1.1.1d
   
       SUHOSIN Installed: –
       MySQL Version: 5.7.34-cll-lve
       Max Upload Size: 1 GB
       Default Timezone is UTC: ✔
       fsockopen/cURL: ✔
       SoapClient: ✔
       DOMDocument: ✔
       GZip: ✔
       Multibyte String: ✔
       Remote Post: ✔
       Remote Get: ✔
   
       ### Database ###
   
       WC Database Version: 5.5.2
       WC Database Prefix: wp_
       Total Database Size: 319.10MB
       Database Data Size: 248.16MB
       Database Index Size: 70.94MB
       wp_woocommerce_sessions: Data: 5.83MB + Index: 0.20MB + Engine MyISAM
       wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_order_items: Data: 2.38MB + Index: 1.14MB + Engine MyISAM
       wp_woocommerce_order_itemmeta: Data: 16.31MB + Index: 12.30MB + Engine MyISAM
       wp_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_payment_tokens: Data: 0.03MB + Index: 0.02MB + Engine MyISAM
       wp_woocommerce_payment_tokenmeta: Data: 0.07MB + Index: 0.06MB + Engine MyISAM
       wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_actionscheduler_actions: Data: 3.50MB + Index: 1.53MB + Engine MyISAM
       wp_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_actionscheduler_logs: Data: 3.68MB + Index: 2.52MB + Engine MyISAM
       wp_admin_columns: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_ariadminer_connections: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_atum_order_itemmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_atum_order_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_atum_product_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_cmplz_cookiebanners: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_cmplz_cookies: Data: 0.02MB + Index: 0.00MB + Engine MyISAM
       wp_cmplz_services: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_commentmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_comments: Data: 4.24MB + Index: 1.45MB + Engine MyISAM
       wp_evf_entries: Data: 0.30MB + Index: 0.01MB + Engine MyISAM
       wp_evf_entrymeta: Data: 0.14MB + Index: 0.05MB + Engine MyISAM
       wp_evf_sessions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_fbv: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_fbv_attachment_folder: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_frmt_form_entry: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_frmt_form_entry_meta: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
       wp_frmt_form_views: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
       wp_giftvouchers_activity: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_giftvouchers_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_giftvouchers_setting: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_giftvouchers_template: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_jckwds: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_litespeed_crawler: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_litespeed_crawler_blacklist: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_litespeed_img_optm: Data: 0.28MB + Index: 0.17MB + Engine InnoDB
       wp_litespeed_img_optming: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_mailchimp_carts: Data: 3.02MB + Index: 0.00MB + Engine InnoDB
       wp_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_options: Data: 33.59MB + Index: 2.07MB + Engine MyISAM
       wp_pmxi_hash: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_postmeta: Data: 77.05MB + Index: 25.70MB + Engine MyISAM
       wp_posts: Data: 12.81MB + Index: 3.07MB + Engine MyISAM
       wp_revslider_css: Data: 0.09MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_css_bkp: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_layer_animations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_layer_animations_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_navigations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_navigations_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_sliders: Data: 0.03MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_sliders_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_slides: Data: 0.04MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_slides_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_static_slides: Data: 0.02MB + Index: 0.00MB + Engine MyISAM
       wp_revslider_static_slides_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_shortpixel_folders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_shortpixel_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_smush_dir_images: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
       wp_termmeta: Data: 0.06MB + Index: 0.05MB + Engine MyISAM
       wp_terms: Data: 0.02MB + Index: 0.06MB + Engine MyISAM
       wp_term_relationships: Data: 0.11MB + Index: 0.27MB + Engine MyISAM
       wp_term_taxonomy: Data: 0.03MB + Index: 0.03MB + Engine MyISAM
       wp_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_trustindex_google_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_usermeta: Data: 9.10MB + Index: 5.26MB + Engine MyISAM
       wp_users: Data: 0.39MB + Index: 0.38MB + Engine MyISAM
       wp_user_registration_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wc_admin_notes: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
       wp_wc_admin_note_actions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_category_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_wc_customer_lookup: Data: 0.32MB + Index: 0.30MB + Engine MyISAM
       wp_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_mewz_wcas_match_rows: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_wc_mewz_wcas_match_sets: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.04MB + Engine MyISAM
       wp_wc_order_product_lookup: Data: 2.72MB + Index: 2.57MB + Engine MyISAM
       wp_wc_order_stats: Data: 0.40MB + Index: 0.29MB + Engine MyISAM
       wp_wc_order_tax_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_product_meta_lookup: Data: 0.22MB + Index: 0.24MB + Engine MyISAM
       wp_wc_reserved_stock: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
       wp_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wdr_order_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wdr_order_item_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_wfconfig: Data: 0.48MB + Index: 0.00MB + Engine InnoDB
       wp_wfcrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wffilechanges: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wffilemods: Data: 8.52MB + Index: 0.00MB + Engine InnoDB
       wp_wfhits: Data: 1.02MB + Index: 0.16MB + Engine InnoDB
       wp_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wfissues: Data: 0.05MB + Index: 0.06MB + Engine InnoDB
       wp_wfknownfilelist: Data: 3.52MB + Index: 0.00MB + Engine InnoDB
       wp_wflivetraffichuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wflocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wflogins: Data: 0.22MB + Index: 0.06MB + Engine InnoDB
       wp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wfnotifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
       wp_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_wfstatus: Data: 0.13MB + Index: 0.11MB + Engine InnoDB
       wp_wftrafficrates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_woocommerce_square_customers: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
       wp_woo_shippment_provider: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
       wp_woo_square_integration_deleted_data: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
       wp_woo_square_integration_logs: Data: 37.56MB + Index: 0.00MB + Engine InnoDB
       wp_wotv_woo_track_info: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wpforms_tasks_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wpfront_ure_options: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wpvivid_scan_result: Data: 0.52MB + Index: 0.00MB + Engine InnoDB
       wp_wpvivid_unused_uploads_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_xoo_wl_list: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_xoo_wl_list_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_yith_wcwl: Data: 0.17MB + Index: 0.09MB + Engine MyISAM
       wp_yith_wcwl_lists: Data: 0.19MB + Index: 0.12MB + Engine MyISAM
       wp_yoast_indexable: Data: 14.55MB + Index: 8.98MB + Engine InnoDB
       wp_yoast_indexable_hierarchy: Data: 1.31MB + Index: 0.42MB + Engine InnoDB
       wp_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_yoast_primary_term: Data: 0.09MB + Index: 0.09MB + Engine InnoDB
       wp_yoast_prominent_words: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_yoast_seo_links: Data: 0.22MB + Index: 0.13MB + Engine InnoDB
       wp_yoast_seo_meta: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
   
       ### Post Type Counts ###
   
       acf-field: 1
       acf-field-group: 1
       attachment: 2811
       br_notice: 1
       custom_css: 1
       customize_changeset: 56
       cwginstocknotifier: 325
       everest_form: 2
       fmemailverification: 1
       form-maker: 1
       forminator_forms: 1
       gift_card: 5
       giftcard: 3
       mc4wp-form: 1
       nav_menu_item: 111
       notificationx: 1
       oembed_cache: 100
       page: 30
       pos-station: 2
       product: 1260
       revision: 407
       shop_coupon: 56
       shop_order: 4229
       shop_order_refund: 526
       sl-insta-account: 1
       sl-insta-feed: 1
       sl-insta-media: 110
       ts_footer_block: 10
       ts_logo: 7
       ts_testimonial: 2
       user_registration: 1
       vtmin-rule: 1
       wc_afrsm: 23
       wc_afrsm_zone: 2
       wof_lite_wheel: 1
       wpforms: 2
       wppopups: 1
   
       ### Security ###
   
       Secure connection (HTTPS): ✔
       Hide errors from visitors: ✔
   
       ### Active Plugins (60) ###
   
       Admin Menu Editor Pro: by Janis Elsts – 2.15
       Advanced Cron Manager: by BracketSpace – 2.4.1
       Advanced Flat Rate Shipping For WooCommerce (Premium): by theDotstore – 3.9.5
       Age Gate: by Phil Baker – 2.16.4
       ARI Adminer: by ARI Soft – 1.1.12
       Back In Stock Notifier for WooCommerce | WooCommerce Waitlist Pro: by codewoogeek – 2.3.1
       Cart Weight for WooCommerce: by theDotstore – 1.0.7
       CB Change Mail Sender: by Md Abul Bashar – 1.2.2
       CheckoutWC: by Objectiv – 5.3.4
       Complianz | GDPR/CCPA Cookie Consent: by Really Simple Plugins – 5.2.6
       Cost of Goods for WooCommerce Pro: by WPFactory – 2.4.4
       Enable Media Replace: by ShortPixel – 3.5.0
       Font Awesome: by Font Awesome – 4.0.0-rc23
       Forminator: by WPMU DEV – 1.14.12.1
       Free Shipping Label: by Devnet – 2.1.1
       Hide Admin Toolbar: by Aftab Muni – 1.0
       WooCommerce Delivery Slots by Iconic [Flat Rate Shipping Plugin For WooCommerce]: by Iconic – 0.1.0
       WooCommerce Delivery Slots by Iconic: by Iconic – 1.14.0
       Insert Headers and Footers: by WPBeginner – 1.6.0
       Jetpack: by Automattic – 10.0
       WPBakery Page Builder: by Michael M - WPBakery.com – 6.6.0
       Kadence WooCommerce Email Designer: by Kadence WP – 1.4.7
       LiteSpeed Cache: by LiteSpeed Technologies – 3.6.4
       LoginPress - Customizing the WordPress Login: by WPBrigade – 1.5.5
       Mailchimp for WooCommerce: by Mailchimp – 2.5.2
       MC4WP: Mailchimp for WordPress: by ibericode – 4.8.6
       Protect WP-Admin: by WP Experts Team – 3.4
       Qty Increment Buttons for WooCommerce: by taisho – 2.7.5
       Slider Revolution: by ThemePunch – 6.4.2
       ShortPixel Image Optimizer: by ShortPixel – 4.22.3
       Social Icons Widget & Block by WPZOOM: by WPZOOM – 4.2.0
       Spotlight - Social Media Feeds: by RebelCode – 0.9.2
       Sucuri Security - Auditing, Malware Scanner and Hardening: by Sucuri Inc. – 1.8.27
       Temporary Login Without Password: by StoreApps – 1.6.14
       ThemeSky: by ThemeSky Team – 1.2.8
       Tidio Chat: by Tidio Ltd. – 4.3.0
       Two Factor: by Plugin Contributors – 0.7.0
       Use Any Font: by Dnesscarkey – 6.1.4
       User Switching: by John Blackbourn & contributors – 1.5.7
       WooCommerce No Shipping Message: by dangoodman – 2.0.11
       CTX Feed: by WebAppick – 4.4.18
       WooCommerce Backorder Manager: by jeffrey-wp – 2.3
       Checkout Field Editor for WooCommerce: by ThemeHigh – 1.4.8
       WPC Fly Cart for WooCommerce: by WPClever – 4.0.0
       Orders Tracking for WooCommerce: by VillaTheme – 1.1.8.5
       WPC Smart Quick View for WooCommerce: by WPClever – 2.6.7
       Stripe For WooCommerce: by Payment Plugins
       support@paymentplugins.com – 3.3.6
   
       WooCommerce Stripe Gateway: by WooCommerce – 5.3.0
       WooCommerce Pixel Manager: by woopt – 1.11.1
       WooCommerce Pixel Manager: by woopt – 1.11.1
       WooCommerce PDF Invoices & Packing Slips: by Ewout Fernhout – 2.9.0
       WooCommerce: by Automattic – 5.5.2
       WooSquare: by Wpexpertsio – 3.9
       Yoast SEO Premium: by Team Yoast – 16.8
       Yoast SEO: by Team Yoast – 16.8
       WP Crontrol: by John Blackbourn & contributors – 1.10.0
       WP Image Zoom: by SilkyPress – 1.47.1
       Widgets for Google Reviews: by Trustindex.io  – 6.8
       YITH WooCommerce Gift Cards: by YITH – 2.0.17
       YITH WooCommerce Wishlist: by YITH – 3.0.25
   
       ### Inactive Plugins (5) ###
   
       Admin Columns: by AdminColumns.com – 4.3.2
       Advanced Custom Fields: by Delicious Brains – 5.9.9
       Facebook for WooCommerce: by Facebook – 2.6.1
       WooSquare (Premium): by Wpexpertsio – 3.7.6
       Wordfence Security: by Wordfence – 7.5.4
   
       ### Dropin Plugins (1) ###
   
       advanced-cache.php: advanced-cache.php
   
       ### Must Use Plugins (1) ###
   
       installatron_hide_status_test.php: by  –
   
       ### Settings ###
   
       API Enabled: –
       Force SSL: –
       Currency: GBP (£)
       Currency Position: left
       Thousand Separator: ,
       Decimal Separator: .
       Number of Decimals: 2
       Taxonomies: Product Types: composite (composite)
       external (external)
       gift-card (gift-card)
       grouped (grouped)
       simple (simple)
       variable (variable)
       wgm_gift_card (wgm_gift_card)
       woosb (woosb)
       woosg (woosg)
   
       Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
       exclude-from-search (exclude-from-search)
       featured (featured)
       outofstock (outofstock)
       rated-1 (rated-1)
       rated-2 (rated-2)
       rated-3 (rated-3)
       rated-4 (rated-4)
       rated-5 (rated-5)
   
       Connected to WooCommerce.com: ✔
   
       ### WC Pages ###
   
       Shop base: #51 - /shop
       Basket: #52 - /cart
       Checkout: #53 - /checkout
       My account: #54 - /my-account
       Terms and conditions: #8352 - /terms-conditions
   
       ### Theme ###
   
       Name: BoxShop Child
       Version: 1.0.0
       Author URL: http://theme-sky.com/
       Child Theme: ✔
       Parent Theme Name: BoxShop
       Parent Theme Version: 1.5.3
       Parent Theme Author URL: http://theme-sky.com/
       WooCommerce Support: ✔
   
       ### Templates ###
   
       Overrides: boxshop/woocommerce/archive-product.php
       boxshop/woocommerce/cart/cart.php
       boxshop/woocommerce/content-product-cat.php
       boxshop/woocommerce/content-product.php
       boxshop/woocommerce/content-widget-product.php
       boxshop/woocommerce/global/quantity-input.php
       boxshop/woocommerce/loop/add-to-cart.php
       boxshop/woocommerce/loop/loop-end.php
       boxshop/woocommerce/loop/loop-start.php
       boxshop/woocommerce/loop/orderby.php
       boxshop/woocommerce/myaccount/my-address.php
       boxshop/woocommerce/single-product/add-to-cart/variable.php
       boxshop/woocommerce/single-product/product-image.php
       boxshop/woocommerce/single-product/product-thumbnails.php
       boxshop/woocommerce/single-product/rating.php
       boxshop/woocommerce/single-product/tabs/tabs.php
       boxshop/woocommerce/single-product.php
   
       ### Action Scheduler ###
   
       Canceled: 5
       Oldest: 2021-07-09 21:29:40 +0000
       Newest: 2021-07-26 17:08:59 +0000
   
       Complete: 12,670
       Oldest: 2021-08-04 12:25:37 +0000
       Newest: 2021-08-06 11:32:01 +0000
   
       Failed: 3
       Oldest: 2020-12-16 21:51:31 +0000
       Newest: 2020-12-16 21:51:31 +0000
   
       Pending: 5
       Oldest: 2021-08-06 11:56:12 +0000
       Newest: 2021-08-07 05:28:13 +0000
   
       ### Status report information ###
   
       Generated at: 2021-08-06 11:37:55 +00:00
       ```
   

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