The following code is in a template, mytemplate/subtemplate. The template can be accessed directly from mysite.com/index.php/mytemplate/subtemplate, but I want to take segment_3 and display a specific article such that mysite.com/index.php/mytemplate/subtemplate/myarticle will display the entry with url_title of ‘myarticle’.
This works fine, but I can’t figure out why other channel calls in the same template are then canceled out (don’t show). Am I missing some small nuance? Do I need to cancel out the direct url_title call somehow?
All help is greatly appreciated!
<!-- call one :: No show -->
{exp:channel:entries channel="mkting_msg" category="1" limit="1"}
<h4>{title}</h4>
<p> {body}<br />
{/exp:channel:entries}<br />
<!-- /call one --></p>
<p><!-- call two :: No show either --><br />
{exp:channel:entries url_title="about_average_billing"}<br />
{body}<br />
{/exp:channel:entries}<br />
<!-- /call two --></p>
<p><!-- call three :: Displays properly --><br />
{exp:channel:entries url_title="{segment_3}"}<br />
{body}<br />
{/exp:channel:entries}<br />
<!-- /call three -->Forgive me for guideline errors, first post.