/** * CNTONGPIN — 报价单页面 + 询盘邮件显示 SKU * * 来源:YITH Request a Quote 免费版模板 * templates/request-quote-view.php 第 69-74 行: * $product_title = $_product->get_title(); * if ( $_product->get_sku() !== '' && get_option( 'ywraq_show_sku' ) === 'yes' ) { * $product_title .= ' SKU:' . $_product->get_sku(); * } * 这段逻辑免费版完整存在,只是 ywraq_show_sku 这个开关被划到付费版,后台没有 UI。 * 把它强制置为 yes,免费版照常输出 SKU。 */ // 1) 强制打开报价单页的 SKU 显示 add_filter( 'pre_option_ywraq_show_sku', function( $pre, $option, $default ) { return 'yes'; }, 10, 3 ); // 2) SKU 标签文字(可选:改这段文字就能改页面上显示的前缀,注意不要把尾部空格删掉) add_filter( 'ywraq_sku_label', function( $label ) { return 'SKU: '; } ); // 3) 询盘邮件里也带 SKU —— 邮件模板没有 SKU 逻辑,需要单独补 // 注意:WooCommerce 的 get_title() 走的是 woocommerce_product_title 过滤器 // (WC_Product::get_title() 源码:return apply_filters( 'woocommerce_product_title', $this->get_name(), $this );) // 之前用的 woocommerce_product_get_title 是不存在的钩子,所以邮件里不出 SKU。 if ( ! function_exists( 'cntongpin_title_with_sku' ) ) { function cntongpin_title_with_sku( $title, $product ) { if ( $product && method_exists( $product, 'get_sku' ) && $product->get_sku() ) { $title .= ' (SKU: ' . esc_html( $product->get_sku() ) . ')'; } return $title; } } add_action( 'yith_ywraq_email_before_raq_table', function () { add_filter( 'woocommerce_product_title', 'cntongpin_title_with_sku', 20, 2 ); } ); // 双保险:邮件模板尾部兜底移除,确保过滤器不会泄漏到全站 add_action( 'yith_ywraq_email_after_raq_table', function () { remove_filter( 'woocommerce_product_title', 'cntongpin_title_with_sku', 20 ); } ); add_action( 'woocommerce_email_footer', function () { remove_filter( 'woocommerce_product_title', 'cntongpin_title_with_sku', 20 ); } );

Contact Us

Contact Us

Get in touch for quotations, product catalogs or any questions. We reply within 24 hours.

Company Information

Company Name

Guangzhou Tongpin Auto Parts Co., Ltd.

Address

Room 222, Block 15, KaiLong International Auto Parts Market, GuangCong Road, Guangzhou, Guangdong, China

Telephone / WhatsApp

+86 13760640845

Email

yuetian2009@126.com

Contact Person

Mrs. Lizzy

Business Hours

Monday – Saturday, 9:00 – 18:00 (GMT+8)

Website

www.cntongpin.com/

Send Us a Message

Prefer to just send a list? Email your part numbers, car models and quantities to yuetian2009@126.com — we quote within 24 hours.

Our Location

We are located inside KaiLong International Auto Parts Market on GuangCong Road, Guangzhou — about 40 minutes from Baiyun International Airport. Visitors are welcome; please contact us before your visit so we can arrange to meet you.