Magento 2.0.4重命名标签并删除送货地址onepage checkout中的字段 - 名字=>收件人姓名等

时间:2016-04-16 05:33:28

标签: magento2 magento-2.0 magento2.0.2

我遇到了客户要求,我必须删除姓氏字段并将名字的标签更改为收件人姓名&名字后的几个自定义字段......

1 个答案:

答案 0 :(得分:0)

您可以尝试:

CREATE TABLE town (town_code INTEGER, town_name CHARACTER VARING(255)) ;
CREATE TABLE operation (ope_id INTEGER, ope_year INTEGER, ope_town INTEGER) ;
CREATE TABLE intervention (int_id INTEGER, int_ope_id INTEGER) ;
CREATE TABLE nature (int_id INTEGER, type_id INTEGER) ;

INSERT INTO town VALUES (86000, 'Lille'), (86001, 'Paris'), (86002, 'Nantes'), (86003, 'Rennes'), (86004, 'Marseille'), (86005, 'Londres') ;
INSERT INTO operation VALUES (1, 2014, 86000), (2, 2015, 86000), (3, 2012, 86001), (4, 2015, 86002), (5, 2015, 86003) ;
INSERT INTO intervention VALUES (12, 1), (13, 2), (14, 3), (15, 4), (16, 5) ;
INSERT INTO nature VALUES (12, 1), (13, 1), (14, 3), (15, 1), (16, 3) ;

在这里阅读更多内容: https://magento.stackexchange.com/questions/115826/magento-2-customising-checkout-page-not-working/115900#115900