Link names displayed on web page

5 posts by 3 authors in: Forums > CMS Builder
Last Post: November 17, 2009   (RSS)

By Kristamk - November 17, 2009

Hi,
I'd like to know how to change the generated link names to something like "read more."

For instance, here's the link that generated from CMS Builder as I add to my list,
"http://www.litwillersimonsen.com/memorials_detail.php?Name-2-4"

How can I make it display as "Read More" instead?

Is this possible?

Site sample reference, http://www.litwillersimonsen.com/memorials_detail.php?Name-2-4

Thanks!

Krista


Re: [Kristamk] Link names displayed on web page

By Dave - November 17, 2009

Hi Krista,

Try replacing this:
<a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/>

With this:
<a href="<?php echo $record['_link'] ?>">Read more...</a><br/>

Let me know if that works for you.
Dave Edis - Senior Developer
interactivetools.com

Re: [Damon] Link names displayed on web page

By Kristamk - November 17, 2009

Thanks! It worked.

Re: [Dave] Link names displayed on web page

By Kristamk - November 17, 2009

Thank you for seeing the extra "<?php echo $record['_link'] ?>"

That worked!