By Pete Westbury on Thursday, 15 October 2015
Replies 5
Likes 0
Views 1.4K
Votes 0
Hi,

I have just purchased Komento after testing the free version out .... and have purchased it purely for the ZOO integration which I can't seem to get to work!

Reading the documentation do I still have to create these 2 steps for it to work:

Step 3

Create folder named komento in JoomlaFolder/media/zoo/elements

Step 4

Create two files komento.php and komento.xml within the folder.


If so do I have to type out all the code that you have shown in the 2 images .... if I do, surely we should be supplied these in a download file somewhere!

Cheers
Pete
Hello Pete,

I am sorry. We are in the middle of updating our documentation. You can download the plugin here: http://stackideas.com/downloads/plugins - Komento Zoo's element plugin and install it via Joomla Extension Manager. This will automatically create those file in your media/zoo/element.
·
Thursday, 15 October 2015 18:07
·
0 Likes
·
0 Votes
·
0 Comments
·
I've downloaded and installed that file - however still nothing is appearing in ZOO!

I've checked the files which have been installed:

itemkomentolink.php
itemkomentolink.xml

Which are different in file names and content to what your documentation describes!

And checking the one file it states June2012 within the code!




itemkomentolink.xml

<?xml version="1.0" encoding="utf-8"?>
<element type="itemkomentolink" group="Comments">
<name>Item Komento Link</name>
<author>StackIdeas</author>
<creationDate>June 2012</creationDate>
<copyright>Copyright 2012 Stack Ideas. All rights reserved.</copyright>
<authorEmail>support@stackideas.com</authorEmail>
<authorUrl>http://stackideas.com</authorUrl>
<version>1.0</version>
<description>Item Comments Link to Komento</description>
</element>




itemkomentolink.php

<?php
/**
* @package Komento
* @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Komento is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

class ElementItemKomentoLink extends Element
{

public function hasValue($params = array())
{
return true;
}

public function edit()
{
return null;
}

public function render($params = array())
{
jimport( 'joomla.filesystem.file' );
jimport( 'joomla.html.parameter' );
$path = JPATH_ROOT . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_komento' . DIRECTORY_SEPARATOR . 'bootstrap.php';
$options = array( 'params' => new JRegistry(''), 'context' => 'com_zoo' );

// render html
if( JFile::exists($path) )
{
require_once($path);

$item = clone( $this->_item );
$html = Komento::commentify( 'com_zoo', $item, $options );

return $html;
}

return null;
}
}



These seem to be different to what you have asked us to make in your documentation for the ZOO integration!

Please can you confirm which I am supposed to use to get this to work as I have paid $45 for this extension and it seems that this will not work "out of the box" which I would have expected for such an extension!

Cheers
Pete
·
Thursday, 15 October 2015 18:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Pete,

We have missed one step before the 5th step. You need to click this link: http://screencast.com/t/hpDobWtWg99t and include Komento here: http://screencast.com/t/8dMlNtiHms . Then, you can proceed with the 5th step. Please give it a try. If it doesn't work, do provide us your backend and FTP access so I can help you configure it.
·
Thursday, 15 October 2015 19:08
·
0 Likes
·
0 Votes
·
0 Comments
·
I seem to have got this working!
·
Thursday, 15 October 2015 22:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Pete,

Great! Glad to hear that.
·
Friday, 16 October 2015 10:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post