Secondary Details page

3 posts by 2 authors in: Forums > CMS Builder
Last Post: January 6, 2017   (RSS)

By ross - January 5, 2017

Hi there

Thanks for posting.

I think you hit the nail on the head with this: 

My hope is that we can hardcode the paths to the new pages rather than using the links created by CMSB.

This is going to be the solution.

What you need to do is hardcode the links from your second list page to your second detail page.

Typically, your link would look like this:

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

What you'll be looking for on your second list page is something like this:

<a href="/secondDetailPage.php?<?php echo $record['num']; ?>">Read More</a>

You'll need to change the "secondDetailPage.php" part of course.

Does this all make sense?  

Give it a shot and let me know any questions.

Thanks.

-----------------------------------------------------------
Cheers,
Ross Fairbairn - Consulting
consulting@interactivetools.com

Hire me! Save time by getting our experts to help with your project.
Template changes, advanced features, full integration, whatever you
need. Whether you need one hour or fifty, get it done fast with
Priority Consulting: http://www.interactivetools.com/consulting/

By willydoit - January 6, 2017

Hi Ross,

That worked a treat thank you