Questions tagged «configuration»

核心模块或第三方模块的所有模块的常规设置。

2
覆盖标题内容和添加块
我已经扩展了LUMA主题,并且想要自定义标题。 我想在徽标之前添加静态块,并将徽标移动到左侧的页面中心。 最终结果将是 [1]静态块[2]徽标(在中间)[3]搜索表格(此位置已经正确)。 请建议如何实现这一目标。

3
如何在系统配置中将“图像”字段添加到自定义动态字段中?
我想允许管理员用户生成他/她想要的尽可能多的字段。我在另一个扩展中找到了解决方案,并以此为起点。所以我有这样的代码: 在system.xml: <showcases translate="label"> <label>Showcases</label> <frontend_type>text</frontend_type> <sort_order>10</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> <fields> <showcase translate="label"> <label>Showcases</label> <frontend_type>select</frontend_type> <frontend_model>awesomehome/adminhtml_showcases</frontend_model> <backend_model>adminhtml/system_config_backend_serialized</backend_model> <sort_order>410</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> </showcase> </fields> </showcases> 在Namespace/Awesomehome/Block/Adminhtml/Showcases.php: class Namespace_Awesomehome_Block_Adminhtml_Showcases extends Mage_Adminhtml_Block_System_Config_Form_Field { protected $_addRowButtonHtml = array(); protected $_removeRowButtonHtml = array(); protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element) { $this->setElement($element); $html = '<div id="showcase_template" style="display:none">'; $html …

1
配置页面上出现404错误
每次我安装新的扩展程序,并打开管理-系统-配置-模块选项时,都会出现404错误。 注销并登录会有帮助,但是如何避免这种情况呢?这个问题与管理员权限缓存有关,但是如何从安装脚本中以编程方式刷新它呢? 有任何想法吗?

1
角色登陆页面
我们有许多不同的用户将Magento后端用于不同的用途。 例如,我们有一些人员基本上只是在运送包裹,而我们真正希望他们看到的只是运送页面-如果不只是那个页面,他们应该在登录时登陆那里。 尝试进行此设置时,我创建了一个新用户“ ship”,并将其与新角色“ shipper”相关联。该角色被授予对资源销售->发货的访问权限。 我以轮船身份登录,瞧!完善!进入货运网格后,我就可以打开货运了-然后我注意到了这个问题。该用户无法发送跟踪信息,这是此角色的必备条件。 通过启用角色资源销售->订单->操作->发送销售电子邮件,我能够使此按钮在发货屏幕上显示/起作用。 现在,当船舶登录时,它将被丢弃到订单网格中,而不是装运网格中。我推测这仅仅是因为资源树上的“订单”比“货件”高。真的吗? 长话短说:是否有有效的方法将管理员用户放置在特定的屏幕/网格上? 最好是在配置屏幕中-我毫不怀疑这可以由我们的开发人员之一来实现。 我们需要通过将这些用户在99%的时间中放在所需的位置来大大简化许多角色。

3
Magento 2:当字段不在同一组中时,字段取决于system.xml
如何<depends>为不在同一组字段中的字段设置 <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd"> <system> <section id="section" translate="label" type="text" sortOrder="200" showInDefault="1" showInWebsite="1" showInStore="1"> <label>Name</label> <tab>tabname</tab> <resource>Namespace_ModuleName::method</resource> <group id="group" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1"> <label>General Configuration</label> <field id="field" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1"> <label>Enable</label> <source_model>Magento\Config\Model\Config\Source\Yesno</source_model> </field> </group> <group id="connection" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1"> <label>Connection Configuration</label> …

1
如何在我的模块中添加自定义帮助器?
如何在Magento 2模块中创建新的Helper或重写/重写Core Helper? 我尝试将依赖项添加到module.xml“自定义模块”中,但它根本不会加载Helper类。 下面是我的module.xml; <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Company1_Module1" schema_version="1.0.0" setup_version="1.0.0"> <sequence>Magento_Directory</sequence> </module> </config>

3
关闭从SQL /数据库进行的URL重写
我有一个启用了URL重写的法师安装,但是服务器不进行重写,因此我只需要进入管理员就关闭重写! 我删除了core_url_rewrite,但没有帮助。 不可能做到这一点是没有道理的,但是我没有找到在线参考这样的表格吗?




2
如何在magento的自定义模块中添加ACL
我在magento中创建了自定义模块。我在客户菜单下创建了该菜单。我需要为自定义模块添加ACL。我需要知道如何在自定义模块中创建ACL,在这里给我我的config.xml ... my config.xml ------------------ <?xml version="1.0" encoding="UTF-8" ?> <config> <!-- module configuration --> <modules> <Webcreon_Seller> <version>1.0.0</version> </Webcreon_Seller> </modules> <!-- module configuration end --> <frontend> <routers> <seller> <use>standard</use> <args> <module>Webcreon_Seller</module> <frontName>seller</frontName> </args> </seller> </routers> <layout> <updates> <seller> <file>sellerform.xml</file> </seller> </updates> </layout> </frontend> <admin> <routers> <seller> <use>admin</use> <args> <module>Webcreon_Seller</module> <frontName>adminseller</frontName> </args> …

2
$ _SERVER ['MAGE_RUN_TYPE']'商店'和'网站'有什么区别
对于创建多商店magento,我们使用以下代码 $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; Mage::run($mageRunCode, $mageRunType); 如果我们在代码中使用website代替,会有什么区别store$_SERVER['MAGE_RUN_TYPE'] : 'store';

1
配置“取决于”前端和后端模型
我在配置中的“依赖”功能上遇到困难。 通常,添加<depends>到某些配置选项后,除非给定选项的值匹配,否则它是隐藏的。 例如: <option_one> <label>Option 1</label> ... </option_one> <option_two> <label>Option 2</label> ... <depends><option_one>1</option_one></depends> </option_two 显然,我缺少一些领域,但是您明白了。仅当选项1的值为“ 1”时,选项2才会出现。 现在我的问题是,当我尝试将其应用于带有后端和前端模型的选项时,这种依赖不起作用: <option_three> ... <frontend_model>module/adminhtml_form_field_test</frontend_model> <backend_model>adminhtml/system_config_backend_serialized_array</backend_model> ... <depends><option_one>1</option_one></depends> </option_three> 此选项不会考虑选项1,它始终可见。 我是在做错什么,还是一个错误,还是“按设计工作”?

7
Magento 1.7.0.2无法本地登录到管理员
我在本地安装了magento 1.7.0.2,但是我无法登录到管理面板! 该怎么办?!我绝对尝试WEB中的所有解决方案! 我尝试了这些建议的解决方案 清除目录var / cache的内容,然后重试。 仍然没有管理员登录 我通过在数据库中手动设置两个core_config_data值来修复它。它们如下: web / cookie / cookie_path = / web / cookie / cookie_domain =“ mydomain.com” 仍然没有管理员登录 我打开了Magento根目录并创建了tmp文件夹。 并打开“ lib / Zend / Cache / Backend / File.php”,并找到以下代码: protected $_options = array( ‘cache_dir’ => null, replace with protected $_options = array( ‘cache_dir’ => …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.