- Posts: 8
- Thank you received: 0
Mobility support for joomla 3.0
-
ken12
Inactive member - Topic Author
- New Member
Less
More
12 years 2 months ago #22890
by ken12
Mobility support for joomla 3.0 was created by ken12
When will there be support with Joomla 3.0 on mobility template?
After creating content on mobility template I am getting the following error.
Fatal error: Call to undefined method JHtml::core() in /home/**/public_html/**/templates/hot_mobility/html/com_content/category/blog_item.php on line 18
How can i fix this error.
After creating content on mobility template I am getting the following error.
Fatal error: Call to undefined method JHtml::core() in /home/**/public_html/**/templates/hot_mobility/html/com_content/category/blog_item.php on line 18
How can i fix this error.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 2 months ago #22893
by ivan.milic
Replied by ivan.milic on topic Mobility support for joomla 3.0
Did you upgraded existing site / installed 2.x.x template or you downloaded 3.0 version from our site?
Please Log in to join the conversation.
-
ken12
Inactive member - Topic Author
- New Member
Less
More
- Posts: 8
- Thank you received: 0
12 years 2 months ago #22897
by ken12
Replied by ken12 on topic Mobility support for joomla 3.0
I downloaded 3.0 from your site with Mobility Hot Start.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 2 months ago #22899
by ivan.milic
Replied by ivan.milic on topic Mobility support for joomla 3.0
open:
templates/hot_mobility/html/com_content/category/blog_item.php
change:
to
templates/hot_mobility/html/com_content/category/blog_item.php
change:
Code:
// Create a shortcut for params.
$params = &$this->item->params;
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.tooltip');
JHtml::core();
to
Code:
$params = &$this->item->params;
$images = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
$info = $this->item->params->get('info_block_position', 0);
JHtml::_('behavior.tooltip');
JHtml::_('behavior.framework');
The following user(s) said Thank You: ken12
Please Log in to join the conversation.
Time to create page: 0.159 seconds