Acajoom: Content items not showing |
![]() |
Acajoom: Articles not showing When you crate a new newsletter you should see a list of your articles in the content tab to the right. Acajoom: 3.2.7 Articles not showing in the content tab. When you create a newsletter you should see a list of your articles in the content tab to the right. Locate the file Joomla-root/mambots/acajoom/acajoombot.php On line 123 in acajoombot.php you will find this: $query = "SELECT a.id as id, a.title as title, b.title as section, c.title as category FROM jos_content as a LEFT JOIN jos_sections as b ON a.sectionid = b.id LEFT JOIN jos_categories AS c ON a.catid = c.id WHERE a.created > '".date('Y-m-d H:i:s',time()-30240000)."' ORDER BY a.sectionid, a.catid, a.created DESC LIMIT 5000"; Change the code above into the code below: $query = "SELECT a.id as id, a.title as title, b.title as section, c.title as category FROM jos_content as a LEFT JOIN jos_sections as b ON a.sectionid = b.id LEFT JOIN jos_categories AS c ON a.catid = c.id ORDER BY a.sectionid, a.catid, a.created DESC LIMIT 5000"; Now save the file, and upload it to the same directory. Make sure to overwrite the old file. read full article |