Thread subject: Official Home of the PHPFusion CMS :: News on Startpage

Posted by Michel_Angelo on 26-02-2022 16:56
#1

Hy Guys. What do I have to do to only have the latest articles displayed on the start page and not the latest downloads, latest blogs, etc.?
Thanks in advance.

Posted by RobiNN on 26-02-2022 17:07
#2

Since v9.10 it's very easy to do this. Simply add this fusion_remove_hook() function to /themes/YOUR_CURRENT_THEME/theme.php.
This is what you need to add
Code
fusion_remove_hook('home_modules', 'blog_home_module'wink;
fusion_remove_hook('home_modules', 'downloads_home_module'wink;
fusion_remove_hook('home_modules', 'news_home_module'wink;


For articles is this hook fusion_remove_hook('home_modules', 'articles_home_module'wink;

I assume this will be next question.. So if you add also this PHPFusion\HomePage::setLimit(3);, you can set number of items displayed on homepage. Default is 3. In Magazine theme this code is already added in Magazine/templates/homepage.php.

Edited by RobiNN on 11-07-2026 14:07

Posted by Michel_Angelo on 26-02-2022 17:16
#3

Fantastic. Thank you very much,RobiNN.

Posted by Rickisani on 21-03-2023 16:38
#4

at which point in themes.php should this code be inserted?

Posted by Zbigniew on 22-02-2026 11:45
#5

test