Woocommerce添加到购物车消息不显示

时间:2017-03-17 15:51:45

标签: wordpress woocommerce

在项目本地实施和进行设计更改后,单个产品页面上不再显示woocommerce消息。我没有得到任何console errors,所以我不认为它与此有任何关系。并且处理请求是因为当我从另一个页面看到购物车时,我尝试添加的商品在列表中,只是消息没有显示在单个产品页面上。我不知道该去哪儿?

这是add-to-cart/variable文件:

<?php
/**
 * Variable product add to cart
 *
 * @author  WooThemes
 * @package WooCommerce/Templates
 * @version 2.4.0
 */
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

global $product;

$attribute_keys = array_keys( $attributes );

do_action( 'woocommerce_before_add_to_cart_form' ); ?>

<form class="variations_form cart" method="post" enctype='multipart/form-data' data-product_id="<?php echo absint( $product->id ); ?>" data-product_variations="<?php echo esc_attr( json_encode( $available_variations ) ) ?>">
    <?php do_action( 'woocommerce_before_variations_form' ); ?>

    <?php if ( empty( $available_variations ) && false !== $available_variations ) : ?>
        <p class="stock out-of-stock"><?php _e( 'This product is currently out of stock and unavailable.', 'woocommerce' ); ?></p>
    <?php else : ?>
        <div class="variations" cellspacing="0">
                <?php foreach ( $attributes as $attribute_name => $options ) : ?>
                    <div class="row">
                        <div class="small-3 columns">
                            <label for="<?php echo sanitize_title( $attribute_name ); ?>" class="text-left middle">
                                <strong><?php echo wc_attribute_label( $attribute_name ); ?></strong>
                            </label>
                        </div>

                        <div class="small-9 columns">
                            <?php
                                $selected = isset( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) ? wc_clean( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) : $product->get_variation_default_attribute( $attribute_name );
                                wc_dropdown_variation_attribute_options( array( 'options' => $options, 'attribute' => $attribute_name, 'product' => $product, 'selected' => $selected ) );
                                echo end( $attribute_keys ) === $attribute_name ? '<a class="reset_variations" href="#">' . __( 'Clear selection', 'woocommerce' ) . '</a>' : '';
                            ?>
                        </div>
                </div>
      <?php endforeach;?>
        </div>

        <?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>

        <div class="row single_variation_wrap" style="display:none;">
      <div class="small-9 small-offset-3 columns">
            <?php
                /**
                 * woocommerce_before_single_variation Hook
                 */
                do_action( 'woocommerce_before_single_variation' );

                /**
                 * woocommerce_single_variation hook. Used to output the cart button and placeholder for variation data.
                 * @since 2.4.0
                 * @hooked woocommerce_single_variation - 10 Empty div for variation data.
                 * @hooked woocommerce_single_variation_add_to_cart_button - 20 Qty and cart button.
                 */
                do_action( 'woocommerce_single_variation' );

                /**
                 * woocommerce_after_single_variation Hook
                 */
                do_action( 'woocommerce_after_single_variation' );
            ?>
      </div>
        </div>
        <?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
    <?php endif; ?>

    <?php do_action( 'woocommerce_after_variations_form' ); ?>
</form>

<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>

1 个答案:

答案 0 :(得分:0)

如果您安装了高于 WooCommerce 2.4.0 的任何内容,这看起来就像variable.php模板的旧版本(我检查了 2.5.0 此模板的版本)有足够的重大更改可能会破坏WooCommerce的某些部分。

立即突出的一个区别是,更高版本中表单上的data-product_variations属性使用htmlspecialchars而不是esc_attr

希望这有帮助!

相关问题