管理员中的 Magento 扩展设置

Magento extension setup in admin

我使用的是 Magento 商店版本 1.5.1。 对于发票付款,安装了扩展 Mxperts Invoice:https://github.com/sreichel/magento-Mxperts-Invoice/tree/master/app/code/local/Mxperts/Invoice

现在在发票的管理表单中:系统 - Konfiguration(配置)- Zahlungsarten(付款方式)在表单顶部有一个来自 http://www.mxperts.de/mxperts.jpg 的奇怪图形,看来该网站可能是被黑了。 我尝试从管理表单中删除该网站的图形和所有 link,但我无法在扩展代码中的任何地方找到它。

所以我的问题是:我在哪里可以找到此图形的配置以及 link 到站点?

能否请您检查哪个模块配置文件,即检查 system.xml 文件。 尝试调试此文件。

模块 system.xml 中的以下代码负责图片和图片下方的注释

根据gitHub url,模块文件路径将是

app/code/local/Mxperts/Invoice/etc/system.xml

下面是图片和注释的代码

<fields>
    ...
    <note translate="label">
          <label></label>
          <frontend_type>note</frontend_type>
          <sort_order>0</sort_order>
          <show_in_default>1</show_in_default>
          <show_in_website>1</show_in_website>
          <show_in_store>1</show_in_store>
          <comment><![CDATA[
                <a href="http://www.mxperts.de" target="_blank"><IMG border="0" src="http://www.mxperts.de/mxperts.jpg"></a>
                 <div style=""><b>Invoice Payment-Module</b> <a href="http://www.mxperts.de" target="_blank">www.mxperts.de</a></div>
                 <div style="margin-top:4px;"><b>TMEDIA cross communications, <a href="mailto:info@tmedia.de">info@tmedia.de</a></b><br>
                            Johannes Teitge, Daniel Sasse, Igor Jankovic<br></div>
                 <div style="margin-top:4px;"><b>Sponsored by:</b>&nbsp;<a href="http://www.switzerlandshop.com" target="_blank">www.switzerlandshop.com</a></div>
                            ]]>
          </comment>
     </note>
     ....
</fields>