UPS Promotional Credit Campaign Aug ’25 – Banner

Banner promoting UPS Promotional Credit Campaign on UPS x Woo Landing page

Product Icon

TikTok for WooCommerce

*New and Improved Setup Process*  Sync your catalog to TikTok Shop, create TikTok ads to showcase your products, install the TikTok Pixel and Events API (server-to-server connection) to fuel performance, and measure results at scale! Once connected, you can list more of your products in TikTok Shop, create advertising campaigns directly from your dashboard, generate leads, and reach over one billion global users across both TikTok ads and TikTok Shop - all with a streamlined experience that gets you selling faster.

Don’t log TikTok sales in WooCommerce

I would like an option to turn off logging TikTok sales in the WooCommerce website orders page.

Having TikTok orders logged into WooCommerce really isn’t helpful. We manage TikTok orders through the TikTok store website, not our website. Having those orders duplicated in WooCommerce buries orders placed through the website, making it easy to miss orders.

We have also had problems with with TikTok orders being entered multiple times into WooCommerce orders, producing bogus sales numbers and lowering inventory unnecessarily. Having the option to turn off TikTok order logging would solve that problem as well.

Author

timwalkerus

Current Status

Open

Last updated: July 4, 2023

2 comments

Log in to comment on this feature request.

  1. David Higginbottom says:

    @nathaneldo
    Where do I place the code.

    Can we get an update or a setting option to disable the TikTok orders from showing in WooCommerce. A turn off or on setting would be ideal.

    Thanks

  2. nathaneldo says:

    In case this is helpful to anyone, below is some code that will delete TikTok orders when they are placed:

    // Delete TikTok orders when they are placed
    add_action(‘woocommerce_new_order’, ‘action_woocommerce_new_tiktok_order’, 10, 2);
    function action_woocommerce_new_tiktok_order( $order_id, $order ) {
    $order_id = $order->get_id();

    if ($order->get_meta( ‘tiktok_order’ )) {
    wp_delete_post($order_id);
    } else {
    return;
    }
    }