1

我正在使用 Joomla 2.5.8 和 Yootheme。我有 Widgetkit,它运行良好,直到我安装了 Page Peel 和 JO Social Networks Tabs。我一个一个禁用,它不起作用,只有 Page Peel 和 JO Social 一起工作。

我不知道在哪里添加这段代码:

// load jQuery, if not loaded before
if (!JFactory::getApplication()->get('jquery')) {
  JFactory::getApplication()->set('jquery', true);
  // add jQuery
  ...
}

谢谢。

4

1 回答 1

0

代码只是在你不知道的情况下检查是否已经在站点上加载了 jQuery。如果不是,它会加载它。

因此,您需要替换当前用于导入 jQuery 的代码并将其替换为 this。

$document = JFactory::getDocument(); //If this is already being used, remove it

if (!JFactory::getApplication()->get('jquery')) {
   JFactory::getApplication()->set('jquery', true);
   $document->addScript(JURI:root() . 'plugins/rest/of/path/jquery.js');
}
于 2012-12-04T13:39:35.453 回答