在帐户信息中心

时间:2017-12-11 13:52:30

标签: magento magento2 magento-2.0

如何在帐户信息中心中移动帐户我的订单列表?因为我的订单目前处于最佳状态。

block block-dashboard-orders

移动它的块名是什么?

1 个答案:

答案 0 :(得分:2)

在客户帐户页面上显示最近订单部分的块是app/design/frontend/[YOUT THEME]/template/customer/account/dashboard.phtml

此块的代码可在此处获取。

<?php echo $this->getChildHtml('top') ?>

如果你想最后移动那个块,你可以使用phtml文件。

<?php echo $this->getChildHtml('info2') ?> 

arround line no.33有这样的代码。

// grab the element you want to modify
var el = document.querySelector('p');

// get its attributes and cast to array, then loop through
Array.prototype.slice.call(el.attributes).forEach(function(attr) {

    // remove each attribute
    el.removeAttribute(attr.name);
});

在此行之后移动该代码。

function removeAttributes(el) {

    // get its attributes and cast to array, then loop through
    Array.prototype.slice.call(el.attributes).forEach(function(attr) {

        // remove each attribute
        el.removeAttribute(attr.name);
    });
}

所以现在订单块最后显示。