Magento 管理仪表板图表显示“未找到数据”有时,我该如何删除它?

发布于 2024-10-07 17:26:08 字数 107 浏览 3 评论 0原文

如果在所选时间段内未下订单或销售,管理面板仪表板首页上显示的图形/图表将显示“未找到数据”。无论如何,我想显示图表,即使没有订单。

我需要修改什么才能做到这一点?代码还是只是一个模板?

The graph/chart that appears on the frontpage of the admin panel dashboard says "No Data Found" if an order or sale hasn't been placed in the time period selected. I want to display the chart no matter what, even if there are no orders.

What do I have to modify to do this? The code or just a template?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只涨不跌 2024-10-14 17:26:08

编辑 DOCROOT\app\design\adminhtml\default\default\template\dashboard\index.phtml 并删除第 115-125 行:

<div class="entry-edit" style="border:1px solid #ccc;">
                <?php echo $this->getChildHtml('diagrams') ?>
                    <div id="diagram_tab_content"></div>
                <div style="margin:20px;">
                    <?php echo $this->getChildHtml('totals') ?>
                </div>
                <div style="margin:20px;">
                    <?php echo $this->getChildHtml('grids') ?>
                    <div id="grid_tab_content"></div>
                </div>
            </div>

Edit DOCROOT\app\design\adminhtml\default\default\template\dashboard\index.phtml and remove lines 115-125 :

<div class="entry-edit" style="border:1px solid #ccc;">
                <?php echo $this->getChildHtml('diagrams') ?>
                    <div id="diagram_tab_content"></div>
                <div style="margin:20px;">
                    <?php echo $this->getChildHtml('totals') ?>
                </div>
                <div style="margin:20px;">
                    <?php echo $this->getChildHtml('grids') ?>
                    <div id="grid_tab_content"></div>
                </div>
            </div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文