我使用ACF插件创建了一个高级自定义字段,以在Woocommerce产品编辑页面上添加其他信息。这是区分T恤模板的字幕。我能够将值显示在产品页面的前端,但是我需要此信息显示在订单详细信息和所有电子邮件中,也许作为订单元。预先感谢。
答案 0 :(得分:0)
请尝试以下fucntions.php文件中的代码。
add_action( 'woocommerce_before_add_to_cart_button', 'add_custom_field', 0 );
function add_custom_field() {
global $product; // Changed this
// Added this too (compatibility with WC +3)
$product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id;
echo "<div class='produto-informacoes-complementares'>";
echo get_field( 'woo_title', $product_id );
echo "</div>";
return true;
}
add_filter( 'woocommerce_add_cart_item_data', 'save_my_custom_product_field', 10, 2 );
function save_my_custom_product_field( $cart_item_data, $product_id ) {
$custom_field_value = get_field( 'woo_title', $product_id, true );
if( !empty( $custom_field_value ) )
{
$cart_item_data['woo_title'] = $custom_field_value;
// below statement make sure every add to cart action as unique line item
$cart_item_data['unique_key'] = md5( microtime().rand() );
}
return $cart_item_data;
}
add_filter( 'woocommerce_get_item_data', 'render_meta_on_cart_and_checkout', 10, 2 );
function render_meta_on_cart_and_checkout( $cart_data, $cart_item ) {
$custom_items = array();
// Woo 2.4.2 updates
if( !empty( $cart_data ) ) {
$custom_items = $cart_data;
}
if( isset( $cart_item['woo_title'] ) ) {
$custom_items[] = array( "name" => "ACF value:", "value" => $cart_item['woo_title'] );
}
return $custom_items;
}
function add_order_item_meta_acf( $item_id, $values ) {
wc_add_order_item_meta( $item_id, 'acf', $values [ 'woo_title' ] );
}
add_action( 'woocommerce_add_order_item_meta', 'add_order_item_meta_acf' , 10, 2);
在订单表后的订单详细信息页面中显示Acf值
add_action ('woocommerce_order_details_after_order_table', 'order_detail_page', 20);
function order_detail_page($order_id) {
// global $post;
// $order = wc_get_order( $post->ID );
$order = new WC_Order( $order_id );
$items = $order->get_items();
foreach ( $items as $item ) {
$product_id = $item['product_id'];
}
if (get_field('woo_title', $product_id)) {
?>
<p class="WooCommerce">ACF value: <?php the_field('woo_title', $product_id); ?><p>
<?php
}
}```
答案 1 :(得分:0)
这太棒了,也是我找到这个答案的唯一地方!我可能得把它传播出去! :)
我也在我正在开发的网站上使用它 - 代码没有错误。
代码上的一些额外提示:
写“woo_title”的地方,就是你输入字段名称的地方
在显示“ACF 值:”和“acf”的代码中,将它们更改为对您尝试向客户显示的数据有意义的标题(例如日期或样式)
除了最后一点,你的字段标题后不需要加“:”,Woocommerce会插入一个冒号
当您将测试产品添加到购物车并进行测试结账时,如果您正在测试并更改我上面提到的字段标题,您无法通过简单地刷新购物车屏幕,您必须清空购物车,更改功能代码,更改您在 ACF 字段中的自定义字段中输入的内容以更新数据库中的产品数据,然后点击产品/帖子上的更新,然后去通过将其添加到购物车并查看您的更新的过程 - 希望这是有道理的!