WooCommerce आदेश और ईमेल सूचनाओं पर नाम के आधार पर सॉर्ट करें
मुझे WooCommerce आदेशों में मूल्य के बजाय डिफ़ॉल्ट रूप से नाम के आधार पर फीस छाँटने की आवश्यकता है।
वूकॉमर्स कार्ट और चेकआउट पेज के उत्तर कोड में अलग-अलग फीस को पुनः व्यवस्थित करने का उपयोग करते हुए , मैं कार्ट और चेकआउट पेज में नाम से फीस को सॉर्ट करने में कामयाब रहा हूं। लेकिन यह ऑर्डर की पुष्टि और ईमेल के लिए काम नहीं करता है जो बाहर भेजे जाते हैं।
आपके सहयोग के लिए धन्यवाद।
जवाब
LoicTheAztec
अद्यतन
ग्राहक के आदेशों और ईमेल सूचनाओं पर नाम के अनुसार फीस को छाँटने के लिए, आप निम्नलिखित का उपयोग करेंगे:
// Custom function that sort displayed fees by name on order items
function wc_get_sorted_order_item_totals_fee_rows( &$total_rows, $tax_display, $order ) { $fees = $order->get_fees(); if ( $fees ) {
$fee_names = []; // initializing // First Loop foreach ( $fees as $fee_id => $fee ) {
$fee_names[$fee_id] = $fee->get_name(); } asort($fee_names); // Sorting by name
// 2nd Loop
foreach ( $fee_names as $fee_id => $fee_name ) { $fee = $fees[$fee_id];
if ( apply_filters( 'woocommerce_get_order_item_totals_excl_free_fees', empty( $fee['line_total'] ) && empty( $fee['line_tax'] ), $fee_id ) ) { continue; } $total_rows[ 'fee_' . $fee->get_id() ] = array( 'label' => $fee->get_name() . ':',
'value' => wc_price( 'excl' === $tax_display ? $fee->get_total() : $fee->get_total() + $fee->get_total_tax(), array( 'currency' => $order->get_currency() ) ), ); } } } // Display sorted fees by name everywhere on orders and emails add_filter( 'woocommerce_get_order_item_totals', 'display_date_custom_field_value_on_order_item_totals', 10, 3 ); function display_date_custom_field_value_on_order_item_totals( $total_rows, $order, $tax_display ){
// Initializing variables
$new_total_rows = $item_fees = [];
// 1st Loop - Check for fees
foreach ( $total_rows as $key => $values ) { if( strpos($key, 'fee_') !== false ) {
$item_fees[] = $key;
}
}
if( count($item_fees) > 1 ) { // 2nd Loop - Remove item fees total lines foreach ( $item_fees as $key ) { unset($total_rows[$key]); } $key_start = isset($total_rows['shipping']) ? 'shipping' : ( isset($total_rows['discount']) ? 'discount' : 'cart_subtotal' );
// 3rd Loop - loop through order total rows
foreach( $total_rows as $key => $values ) { $new_total_rows[$key] = $values;
// Re-inserting sorted fees
if( $key === $key_start ) {
wc_get_sorted_order_item_totals_fee_rows( $new_total_rows, $tax_display, $order ); } } return $new_total_rows;
}
return $total_rows;
}
कोड आपके सक्रिय चाइल्ड थीम (या सक्रिय थीम) की functions.php फाइल में जाता है। परीक्षण किया और काम करता है।