All,
Version: 1.6.8
Build: 20091002
I know that I don’t have the most recent build but I didn’t see anything in the change log that might point to this problem.
I may be doing something wrong but it just seems weird that this is happening. For my index page in my template group I have the following code:
{assign_variable:my_weblog="default_site"}
{assign_variable:my_template_group="vector"}
{embed={my_template_group}/header}
<div id="main">
{exp:weblog:entries weblog="{my_weblog}" category="not 4" orderby="date" sort="desc" limit="15" disable="member_data|trackbacks"}
<a href="http://{title_permalink={my_template_group}/index}%22name=%22{title}%22></a>">{title}</a></h2>
<p> <br />
Posted by <a href="http://{profile_path=member/index}">{author}</a> | Filed Under {categories}<a href="http://{path=%27SITE_INDEX%27}" title="{category_description}">{category_name}</a> {/categories}<br />
<br />
{summary}<br />
<br />
{if segment_2 != ''}<br />
{body}<br />
<br />
{summary}<br />
{/if}<br />
<br />
<br />
<a href="http://{title_permalink={my_template_group}/index}">Read More</a> |<br />
{if allow_comments}<br />
<a href="http://{url_title_path={my_template_group}/comments}">Comments ({comment_total})</a> |<br />
<span class="date">{entry_date format='%M %d, %Y'}</span><br />
{/if}<br />
<br />
{/exp:weblog:entries}<br />
</div><br />
<br />
{embed=sidebar/index}<br />
<br />
{embed={my_template_group}/footer}
Now, if I am just viewing the index page without clicking on an actual entry everything in the tag
{embed=sidebar/index}works without a problem. Here is the code:
{assign_variable:my_weblog="articles"}
{assign_variable:my_template_group="sidebar"}
<div id="sidebar">
<h3>Mission</h3>
<p> <br />
<br />
To serve the needs of deployed soldiers and their families through material and emotional means; and to create a community of caring among soldier supporters and adopters.<br />
<br />
<br />
</p><h3>Search</h3>
<p> <br />
{exp:search:simple_form id="qsearch" weblog={my_weblog}}<br />
<br />
<label for="qsearch">Search:</label><br />
<input class="tbox" type="text" name="qsearch" value="Search this site…" title="Start typing and hit ENTER" /><br />
<input class="btn" alt="Search" type="image" name="searchsubmit" title="Search" src="/aag/themes/site_themes/vector/images/search.gif" /><br />
<br />
{/exp:search:simple_form}<br />
<br />
</p><h3>In the News</h3>
<p> <br />
<ul class="sidemenu"><br />
{exp:weblog:entries weblog="articles" category="4" orderby="date" sort="desc" limit="15" disable="member_data|trackbacks"}<br />
<li><br />
<a href="http://{article_url}">{article_author}</a><br />
</p>
<p> <span>{title}</span><br />
</li><br />
{/exp:weblog:entries}<br />
</ul><br />
</div>When I click on an entry within the index page it will show the entire entry (i.e. summary, body, extended) as it was designed to do. However, the problem is that it won’t show the “articles” entries.