- Thank you received: 62
I am running K2 and would like to use Tools JX as well. My problem is that the WHERE expressions defined in Tools JX ('@article_id', '@category_id' in particular) look to the Joomla Core article and category ids that have been replaced by the K2 core.
The following script allows me to return the article id for K2 articles...
echo JRequest::getInt('id');
Please Log in or Create an account to join the conversation.
Hi,
In plugin/content/displaygrid.php on line 99
$session->set($id, $row);
$this->parentCont = $session->get($id);
$whereCond = str_replace('@article_id', $contentId, $whereCond);
Please Log in or Create an account to join the conversation.