Simple News Block
Permalink
http://www.concrete5.org/marketplace/addons/simple-news/
Is there a way of having just the news list? without the click through links? So, each news item is displayed in its entirety on the news page without the need to click the title to see the rest of the article?
Is there a way of having just the news list? without the click through links? So, each news item is displayed in its entirety on the news page without the need to click the title to see the rest of the article?
you may have to make a custom template
You can make a new template from the view.php file then remove the a link from the title. You'll end up with something like this:
<div class="title"> <h3><?php echo $row['title'] ; ?></h3> </div>
Sorry, I totally missed this. You can post in the request area for SimpleNews any time and I see those immediately.
in answer to your question, yes, this is easy.
Mike is correct, create your own custom block view
(http://www.concrete5.org/community/forums/customizing_c5/custom-block-view-tutorial/)
uncheck "truncate summaries" in the list block dialog, and then just remove the "<a href="...">" from line 40 of the view.php file.
Chad
in answer to your question, yes, this is easy.
Mike is correct, create your own custom block view
(http://www.concrete5.org/community/forums/customizing_c5/custom-block-view-tutorial/)
uncheck "truncate summaries" in the list block dialog, and then just remove the "<a href="...">" from line 40 of the view.php file.
Chad