首页 > 解决方案 > WooCommerce 仪表板 - 突出显示标记为“本地取货”的订单

问题描述

在 WooCommerce 后端,您能否通过 CSS 突出显示“运送至”列中具有“本地取货”的订单?

像这样的东西(黄色背景,边框,任何 css): https ://i.imgur.com/KktgHPL.jpg

我不得不模糊订单数据,我希望我问的很清楚。谢谢!

标签: csswordpresswoocommerce

解决方案


尝试这个

add_action( 'manage_shop_order_posts_custom_column' , 'custom_orders_list_column_content', 10, 2 );
function custom_orders_list_column_content( $column, $post_id ) {

    $order = wc_get_order($post_id);

    if( $order->has_shipping_method('local_pickup') ) 
    {   
    ?>
    <script>
    jQuery(document).ready(function(){
         jQuery("#post-<?php echo $post_id; ?>").css("background-color", "yellow");

    });
    </script>

    <?php

    }


}

推荐阅读