可以在joomla 2.5上使用joomla 3模块吗?

时间:2014-03-28 19:12:48

标签: joomla joomla2.5 joomla-extensions joomla3.0

有没有办法使用Joomla! J!2.5上有3个扩展名?

我需要在Joomla上使用Noo Timeline! 2.5但没有版本。

http://extensions.joomla.org/extensions/calendars-a-events/time/content-date-a-time/25732

致以最诚挚的问候,

1 个答案:

答案 0 :(得分:0)

更改以下文件中的以下代码

在modules / mod_noo_timeline / elements / nootimeline.php中行号:25

更改

JHtml::_('jquery.ui', array('core','sortable')); 

要:

$document = JFactory::getDocument();
$document->addScript("//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js");
$document->addScript("//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js");
$document->addStyleSheet("//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css"); 

在modules / mod_noo_timeline / mod_noo_timeline.php中行号:16

添加以下代码:

$document->addScript("//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js");

第24行

更改以下代码:

jQuery(document).ready(function($){

要:

$(document).ready(function($){

在modules / mod_noo_timeline / assets / css / style.css 行号:45

替换类的css(.noo-tl-item.left):

.noo-tl-item.left {
float: left;
width:50%;
}

它对我有用。