Hello,
Unfortunately your amazing module works only in English, I can not get it to work with French.
I have a multilingual site, and on both English and French version, module is outputting the English language only.
I have tried to edit the Select statement below, however even if I choose the _fr_fr table, the module will output English...
Please help me with this issue.
SELECT
c.virtuemart_category_id AS id,
vmlang.category_name AS title,
cx.category_parent_id AS parent
FROM #__virtuemart_categories_$lang AS vmlang
JOIN #__virtuemart_categories AS c USING (virtuemart_category_id)
LEFT JOIN #__virtuemart_category_categories AS cx ON cx.category_child_id=vmlang.virtuemart_category_id
ORDER BY c.ordering
";