Drupal帮助...如何编辑特定页面?

时间:2013-09-09 17:12:27

标签: drupal drupal-modules drupal-views drupal-theming

疯狂地试图找到drupal系统中我可以编辑此页面的位置:

http://www.luxewinecellars.com/products/wine-cooling-units-0

我拥有对drupal的完全管理员权限,但无法通过网络界面编辑此页面,并且无法在后端/下拉管理系统中的任何位置找到以便能够访问以编辑此页面。

令我感到困惑的是,当我使用管理员顶部栏时,我会想要编辑这个页面的完全不同的版本,我可以从中获取:

商店管理 - >产品 - >产品类别 (然后我点击“葡萄酒冷却装置”链接,我得到以下页面)

http://www.luxewinecellars.com/products/wine-cooling-units

有人可以帮我查找/了解如何修改此页面:http://www.luxewinecellars.com/products/wine-cooling-units-0

感谢!!!

1 个答案:

答案 0 :(得分:1)

这是一个目录页面,如果您创建名为 uc_catalog_browse.tpl.php的文件

,您可以这样做

您在页面的参数1中有目录I​​D(在葡萄酒冷却装置页面中,目录ID为26:http://www.luxewinecellars.com/catalog/26

然后,您可以使用以下代码加载整个目录:

$tid = arg(1);
if($tid){
    $catalog = uc_catalog_get_page((int)$tid); //Catalog
    drupal_set_title(check_plain($catalog->name));  //Title of the page
    drupal_set_breadcrumb(uc_catalog_set_breadcrumb($catalog->tid));   //Breadcrums

    //Do something
}

我希望它有用。

问候。