编程语言
首页 > 编程语言> > php – 在drupal 7中安装superfish菜单

php – 在drupal 7中安装superfish菜单

作者:互联网

我需要在我的Drupal 7构建的站点中使用superfish,我安装了库和superfish模块并启用了它们.我也安装了superfish库,一切都很顺利.

另外,我在mytheme.info中添加了一个名为“superfish_menu”的新区域.

然后转到块并将superfish 1块分配给superfish_menu区域,然后将块配置为此块中指定的主菜单.

然后转到page.tpl.php并输入此代码

 <div style="border:3px solid red">
   <?php print render($page['superfish_menu']); ?>
 </div> 

最后,我清除了缓存.但不幸的是我看不到超级鱼的菜单.

我错过了什么?

解决方法:

确保父菜单项标记为已展开.您可以在菜单项编辑页面中找到,只需确保选中此复选框即可.

另请检查您是否已下载superFish库:https://github.com/mehrpadin/Superfish-for-Drupal/zipball/master

标签:php,drupal,drupal-7,drupal-modules,drupal-theming
来源: https://codeday.me/bug/20190529/1180104.html