woocommerce_admin_order_preview_line_item_column_

woocommerce_admin_order_preview_line_item_column_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_admin_order_preview_line_item_column_') is found 1 times:

  • /includes/admin/list-tables/class-wc-admin-list-table-orders.php line 328
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
            case 'total':
                $html .= wc_price( $item->get_total(), array( 'currency' => $order->get_currency() ) );
                break;
            default:
                $html .= apply_filters( 'woocommerce_admin_order_preview_line_item_column_' . sanitize_key( $column ), '', $item, $item_id, $order );
                break;
        }
        $html .= '</td>';
    }
     
    $html .= '</tr>';