_link corrupted

3 posts by 2 authors in: Forums > CMS Builder
Last Post: April 9, 2008   (RSS)

Re: [douglasbraun] _link corrupted

By Dave - April 9, 2008

Hi Douglas,

The option called 'titleField' in the list viewers is used to add content to the url. It looks like this:

$options['titleField'] = 'title';

And gets added to the url like this: services_subpage2.php?content_of_title_field-1/

You could just blank out that field and no extra content would be used in the url: $options['titleField'] = ''; Or you could use another fieldname. Some users create a "filename" field for that purpose. Would either of those work for you?

Hope that helps, if you have any other questions or if I can provide more detail just let me know!
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] _link corrupted

By douglasbraun - April 9, 2008

That'll do. Makes sense.

Thanks You Dave