Help with News Section

5 posts by 3 authors in: Forums > CMS Builder
Last Post: June 22, 2010   (RSS)

Re: [Guidian] Help with News Section

By Jason - June 21, 2010

Hi,

If you go to the code generator, you can select the "list page" option. This will produce a list of news articles instead of just one article at a time.

If this isn't working for you, please attach news.php to this thread and I can take a closer look at what's going on for you.

Hope this helps.
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Jason] Help with News Section

By Guidian - June 22, 2010

Jason,



Thanks a bunch. I was able to get it working. There is one more questions though. How do I change this: [url "/news/newsDetail.php?Eleventh-Annual-Student-Life-Achievement-Awards-5"]/news/newsDetail.php?Eleventh-Annual-Student-Life-Achievement-Awards-5[/#0066cc][/url]
to say Read More ? I can tell this is the code: <a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/> and I tried changing the ['_link'] to read like this ['Read More'] but that didn't work. I know this is probably a dumb fix but like I said before I am a php Noob!

Re: [Guidian] Help with News Section

By zip222 - June 22, 2010

Change your code to this...

<a href="<?php echo $record['_link'] ?>">Read More</a><br/>

Re: [zip222] Help with News Section

By Guidian - June 22, 2010

zip222,

[;)] Thank you very much! I was able to get that Read More working flawlessly!