是否可以对的Joomla 2.5使用的是Joomla 3个模块?(Is is possible to

2019-10-19 16:44发布

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

我需要在使用的Joomla时间轴野应! 2.5,但没有版本吧。

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

最好的祝福,

Answer 1:

下面更改下面的代码文件

在模块/ mod_noo_timeline /元件/ nootimeline.php线NO: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"); 

在模块/ mod_noo_timeline / mod_noo_timeline.php线NO:16

添加下面的代码:

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

线路上无24

更改下面的代码:

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

至:

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

在模块/ mod_noo_timeline /资产/ CSS / style.css中线上没有:45

更换类(.noo-TL-item.left)CSS:

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

它为我工作。



文章来源: Is is possible to use joomla 3 modules on joomla 2.5?