管理员中的Magento扩展设置

时间:2018-02-24 14:31:59

标签: magento

我正在使用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的奇怪图形,似乎该网站可能被黑客入侵。 我尝试从管理表单中删除该网站的图形和所有链接,但我无法在扩展程序的代码中找到它。

所以我的问题:我在哪里可以找到此图形的配置和网站的链接?

enter image description here

2 个答案:

答案 0 :(得分:1)

模块中的代码system.xml负责该图像下的图像和备注

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

  

应用程序/代码/本地/ Mxperts /发票的/ 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>

答案 1 :(得分:0)

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