我是Magento的新手。我在Magento的后端创建了一个类别。关于如何将产品分配到类别的线程很少,但是我不知道应该使用哪个文件来使用该代码:
如果我理解正确,当您创建类别并为其分配产品时,Magento会自动生成该页面。我知道有一个view.phtml
文件,它是网页外观的模板。伙计们,先谢谢你们。等待你的回复。
答案 0 :(得分:0)
这样的代码示例是针对开发人员(我有点猜测你主要不是)将其放入他们自己的模块中,可能是作为在产品保存事件上运行的观察者。
对于您,我建议您在magento文件夹中的小型独立文件中测试这样的代码段。至少在你知道如何制作一个合适的模块之前,这是运行一些自定义代码的最简单方法,也许只需要运行一次。
在Magento根目录中创建文件triggerCustomAction.php
,使其可以从www.yourdomain.com/triggerCustomAction.php访问,以便运行一次。
以此为起点,您需要在文件底部运行代码:
<?php
require 'app/Mage.php';
if (!Mage::isInstalled()) {
echo "Application is not installed yet, please complete install wizard first.";
exit;
}
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
// this can be changed from to any store ID number like this:
// Mage::app()->setCurrentStore(xx);
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
//enter your code to run below here: