Hello
1. in
Komento / Settings / Intergations / FLEXIcontent
you had configured "Selected categories"
but you have selected none
i changed it to "All categories" and it is working
2. Also i created an item type that is not redirecting Joomla article view
https://yourtest_domain/j-article-view-test
but submit button is not working
because as you can see in the browser console that you have a JS error in Joomla article view
same error occurs in FLEXIcontent item view
TypeError: q is undefined in site-3.0.12-basic.min.js:375:17
i think JS compression code in your website is failing
3. Also in
Komento / Settings / Intergations / FLEXIcontent
the categories do not appear as TREE
please report this to Komento author
components/com_komento/komento_plugins/com_flexicontent.php
Code:
public function getCategories()
{
$db = KT::getDBO();
$query = 'SELECT c.id, c.title, c.parent_id, c.title AS name, c.parent_id AS parent'
should have
, c.level
so it should be
Code:
public function getCategories()
{
$db = KT::getDBO();
$query = 'SELECT c.id, c.title, c.parent_id, c.title AS name, c.parent_id AS parent, c.level'