0

上次 WooCommerce 更新后,订单详细信息不再显示在“感谢您”页面上。从那时起,我使用 WooCommerce Storefront 主题开发了一个子主题。无论我尝试了什么,我看到的只是感谢页面上的“谢谢”消息。

到目前为止我已经尝试过:

  • 对整个过程进行故障排除,以发现任何可能出错的地方。这包括以下内容:
  • 检查调用 order-details 模板的 wc 模板函数及其相关的操作挂钩(两者都存在)
  • 确保我的子主题的 WooCommerce 目录结构正确。其他一切正常,包括我的自定义模板片段和它们的钩子。
  • 仔细注意语法错误,包括那些可能静默失败的错误。
  • 将插件中的 WooCommerce 目录复制到子主题中。这产生了完全相同的结果——感谢页面上没有订单详细信息。
  • 消除了 WordPress 感谢页面并使用了默认的 WooCommerce 端点('order-received')。注意:由于这种影响布局和显示的方式,我恢复到原来的 WooCommerce 目录结构,它与 WooCommerce 模板目录相同,但减去了一些子目录。(更新:我实际上仍在使用复制的 WooCommerce 目录)
  • 在子主题的functions.php文件中编写了一个带有动作钩子的自定义函数,输出没有变化。
  • 在thankyou.php中,创建了一个动作钩子,并写了一个使用wc_get_template调用order-details的函数,但是没有用(静默失败)
  • 将 WordPress 从 4.5 更新到 4.6.1,更新了 Storefront 主题,并更新了我的子主题中所有过时的 WooCommerce 模板文件。

    Code:
    **storefront-child/woocommerce/wc-template-functions.php**
    
    if ( ! function_exists( 'woocommerce_order_details_table' ) ) {
    
        /**
         * Displays order details in a table.
         *
         * @param mixed $order_id
         * @subpackage  Orders
         */
        function woocommerce_order_details_table( $order_id ) {
            if ( ! $order_id ) return;
    
            wc_get_template( 'order/order-details.php', array(
                'order_id' => $order_id
            ) );
        }
    }
    
    
    
    **storefront-child/woocommerce/wc-template-hooks.php
    
    /**
     * Order details.
     *
     * @see woocommerce_order_details_table()
     * @see woocommerce_order_again_button()
     */
     add_action( 'woocommerce_view_order', 'woocommerce_order_details_table', 10 );
     add_action( 'woocommerce_thankyou', 'woocommerce_order_details_table', 10 );
     add_action( 'woocommerce_order_details_after_order_table', 'woocommerce_order_again_button' );
    
    
    
    **storefront-child/woocommerce/checkout/thankyou.php**
    
    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }
    
    if ( $order ) : ?>
    
        <?php if ( $order->has_status( 'failed' ) ) : ?>
    
        <p class="woocommerce-thankyou-order-failed"><?php _e( 'Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction. Please attempt your purchase again.', 'woocommerce' ); ?></p>
    
        <p class="woocommerce-thankyou-order-failed-actions">
            <a href="<?php echo esc_url( $order->get_checkout_payment_url() ); ?>" class="button pay"><?php _e( 'Pay', 'woocommerce' ) ?></a>
            <?php if ( is_user_logged_in() ) : ?>
                <a href="<?php echo esc_url( wc_get_page_permalink( 'myaccount' ) ); ?>" class="button pay"><?php _e( 'My Account', 'woocommerce' ); ?></a>
            <?php endif; ?>
        </p>
    
    <?php else : ?>
    
        <p class="woocommerce-thankyou-order-received"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.', 'woocommerce' ), $order ); ?></p>
    
        <ul class="woocommerce-thankyou-order-details order_details">
            <li class="order">
                <?php _e( 'Order Number:', 'woocommerce' ); ?>
                <strong><?php echo $order->get_order_number(); ?></strong>
            </li>
            <li class="date">
                <?php _e( 'Date:', 'woocommerce' ); ?>
                <strong><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></strong>
            </li>
            <li class="total">
                <?php _e( 'Total:', 'woocommerce' ); ?>
                <strong><?php echo $order->get_formatted_order_total(); ?></strong>
            </li>
            <?php if ( $order->payment_method_title ) : ?>
            <li class="method">
                <?php _e( 'Payment Method:', 'woocommerce' ); ?>
                <strong><?php echo $order->payment_method_title; ?></strong>
            </li>
            <?php endif; ?>
        </ul>
        <div class="clear"></div>
    
    <?php endif; ?>
    
    <?php do_action( 'woocommerce_thankyou_' . $order->payment_method, $order->id ); ?>
    <?php do_action( 'woocommerce_thankyou', $order->id ); ?>
    
    <p class="woocommerce-thankyou-order-received"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.', 'woocommerce' ), null ); ?></p>
    
    <?php endif; 
    
    ?>
    
    
    **storefront-child/woocommerce/order/order-details.php**
    
    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }
    
    $order = wc_get_order( $order_id );
    
    $show_purchase_note    = $order->has_status( apply_filters( 'woocommerce_purchase_note_order_statuses', array( 'completed', 'processing' ) ) );
    $show_customer_details = is_user_logged_in() && $order->get_user_id() === get_current_user_id();
    ?>
    <h2><?php _e( 'Order Details', 'woocommerce' ); ?></h2>
    <table class="shop_table order_details">
        <thead>
            <tr>
                <th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
                <th class="product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
            </tr>
        </thead>
        <tbody>
        <?php
            foreach( $order->get_items() as $item_id => $item ) {
                $product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item );
    
                wc_get_template( 'order/order-details-item.php', array(
                    'order'              => $order,
                    'item_id'            => $item_id,
                    'item'               => $item,
                    'show_purchase_note' => $show_purchase_note,
                    'purchase_note'      => $product ? get_post_meta( $product->id, '_purchase_note', true ) : '',
                    'product'            => $product,
                ) );
            }
        ?>
        <?php do_action( 'woocommerce_order_items_table', $order ); ?>
    </tbody>
    <tfoot>
        <?php
            foreach ( $order->get_order_item_totals() as $key => $total ) {
                ?>
                <tr>
                    <th scope="row"><?php echo $total['label']; ?></th>
                    <td><?php echo $total['value']; ?></td>
                </tr>
                <?php
            }
        ?>
    </tfoot>
    

    <?php if ( $show_customer_details ) : ?>
        <?php wc_get_template( 'order/order-details-customer.php',    array( 'order' =>  $order ) ); ?>
    <?php endif; ?>
    
    
    
    **Rendered HTML**
    <div class="entry-content">
        <div class="mailmunch-forms-before-post" style="display: none !important;"></div>
    <div class="woocommerce">
        <p class="woocommerce-thankyou-order-received">Thank you. Your order has been received.</p>    
    </div>
    
    <!-- This is where the order details should be -->
    
    <p>&nbsp;</p>
    
    <div class="mailmunch-forms-in-post-middle" style="display: none !important;"></div>
    <div class="mailmunch-forms-after-post" style="display: none !important;"></div>
    
    </div>
    

我在这里遗漏了什么,还是 WooCommerce 发生了什么事?任何帮助将不胜感激:)

更新:发现我有两个版本的 jQuery 正在运行:v1.11.3 和 v1.12.4。还有两个不同版本的 jQueryUI 加载:v1.10.4 和 v1.11.4。当前禁用 WordPress 插件并注意浏览器中正在加载哪些 jquery 版本。

更新:找到一个使用 jQueryUI v1.10.4 的插件。还在寻找其他人。

更新:完成所有插件的故障排除,除了 WooCommerce (WSOD)。MailChimp MailMunch 插件正在对旧版 jquery (v1.11.3) 进行 google api 调用,而 Spider Player 正在调用旧版 jQueryUI。停用两个插件,结果仍然相同。就好像 WooCommerce 只是忽略了thankyou.php 模板中间的订单详细信息。

有什么想法或想法吗?我现在真的很茫然。我可以修复禁用插件中的 jquery 问题,但这不会解决我在感谢页面上的紧迫问题。

任何帮助将不胜感激:)

更新:经过大量工作,我确定 WooCommerce 正在使用子主题thankyou.php。进一步的故障排除还发现 $order 是false。这就是为什么我在感谢页面上看不到订单详细信息的原因。下一个:说明为什么 $order 是假的(它是 WC_Order 的一个实例)。

UPDATE: I did a stacktrace:

#0 /home/onyour6test/www/wp-content/plugins/woocommerce/includes/wc-core-functions.php(203): include() 

#1 /home/onyour6test/www/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php(212): wc_get_template('checkout/thanky...', Array) 

#2 /home/onyour6test/www/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php(59): WC_Shortcode_Checkout::order_received(NULL) 

#3 /home/onyour6test/www/wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php(71): WC_Shortcode_Checkout::output('') 

#4 /home/onyour6test/www/wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php(138): WC_Shortcodes::shortcode_wrapper(Array, '') 

#5 /home/onyour6test/www/wp-includes/shortcodes.php(326): WC_Shortcodes::checkout('', '', 'woocommerce_che...') 

#6 [internal function]: do_shortcode_tag(Arr in /home/onyour6test/www/wp-content/themes/storefront-child/woocommerce/checkout/thankyou.php on line 77

我认为罪魁祸首可能在堆栈跟踪 #2:...WC_Shortcode_Checkout::order_received(NULL)。

Stacktrace #6 似乎用do_shortcode_tag证实了这一点。第 77 行指的是调用 $order 失败的地方,特别是这里:

<strong><? php _e( 'Order Number:', 'woocommerce' ); ?></strong>

我设法让这行特定的代码显示出来,但它在“订单号”中只显示“订单”,然后是 500 内部服务器错误。页面上没有呈现其余的 HTML 或订单详细信息变量。

更新:这似乎与 WooCommerce 代码本身有关。$order_id 为空,导致 $order 返回 NULL。这可以防止显示订单详细信息。这应该默认显示,并带有在 WooCommerce 设置中将其关闭的选项。

4

1 回答 1

0

如果客户未登录,$show_customer_detailsorder/order-details.php设置为问题所在。false

我在我的 order-details.php 主题副本中修改了客户检查,以检查订单密钥(发布密码)是否与作为 URL 参数提供的密钥匹配。这与 WooCommerce 在确定是否可以在感谢页面上显示订单信息时执行的检查相同:

$order_key             = apply_filters( 'woocommerce_thankyou_order_key', empty( $_GET['key'] ) ? '' : wc_clean( $_GET['key'] ) );
$show_customer_details = $order_key == $order->get_order_key() || (is_user_logged_in() && $order->get_user_id() === get_current_user_id());

它不漂亮,但它有效。

于 2017-12-07T12:32:53.963 回答