In order to clarify my problem I briefly describe the steps I have taken:
1. Using the modify dialogue in WB, I added 5 posts and 2 groups to my homepage. I have two types of posts/news that I would like to display in different blocks of my homepage
2. I downloaded the code snippet, packed it as .zip-file and uploaded the module
3. I copied the following code in the appropriate content area in my index.php file:
<?php
if (function_exists('displayNewsItems')) {
displayNewsItems();
}
?>
The news are displayed as intended. I have not bothered with the details yet(I understand that I must specify the query first to call news from a particular group). However, at the moment I cannot figure out why the full news are not being displayed when I test the link >read more<. When using the build-in WB news module, the 'long' news/post version would pop up on a child page called "news" (which I did not have to specify) when I prompted the >read more< link. What steps am I missing here? Can I still specify posts using WB and call upon them via the displayNewsItems function?