添加条件结帐字段woocommerce

时间:2017-06-12 12:33:23

标签: php html wordpress woocommerce e-commerce

这是我的产品页面: http://www.sunriseviaggi.com/rodi-faliraki/

我需要在结帐时为每位乘客索取一些数据。 在产品的预订表格中。使用一些属性和变体的woocommerce(日期,成人,孩子)来计算产品的价格。

如何修改此代码,使字段数等于产品的“成人”属性数? 例: $ Quantity_of_products_in_cart =“属性名称”

代码是:

typedef NS_ENUM(NSInteger, ContentMode) {
    ContentMode_aspectFit,
    ContentMode_aspectFill,
    ContentMode_stretch
}

// ....

[containerView addSubview:subview];

[subview mas_makeConstraints:^(MASConstraintMaker *make) {
    if (contentMode == ContentMode_stretch) {
        make.edges.equalTo(containerView);
    }
    else {
        make.center.equalTo(containerView);
        make.edges.equalTo(containerView).priorityHigh();
        make.width.equalTo(content.mas_height).multipliedBy(4.0 / 3); // the aspect ratio
        if (contentMode == ContentMode_aspectFit) {
            make.width.height.lessThanOrEqualTo(containerView);
        }
        else { // contentMode == ContentMode_aspectFill
            make.width.height.greaterThanOrEqualTo(containerView);
        }
    }
}];

0 个答案:

没有答案