The footer on my site seems to not display the {exp:channel:entries} tag/content when i have the forum embeded but ONLY when i go to the /member/ segment of the forum? e.g:
https://www.website.co.uk/index.php/forum/member/messages/view_message/34/
Doesn’t display the footer, but:
https://www.website.co.uk/index.php/forum/viewthread/86/
Does.
My forum template code looks like this:
{preload_replace:channels="preferences"}
{exp:channel:entries channel="{channels}" orderby="date" disable="{sn_disable_default}" limit="1" dynamic="off"}
{embed="inc/head"
{cf_pref_forum_meta}
meta_page_title="{forum_meta_page_title}"
meta_title="{forum_meta_title}"
meta_description="{forum_meta_description}"
meta_keywords="{forum_meta_keywords}"
{/cf_pref_forum_meta}
}
{/exp:channel:entries}
{embed="inc/header"}
<div id="main" class="colour-pink">
{embed="forum/users-online"}
{embed="forum/forum"}
</div>
{embed="inc/footer"}and my Footer embed looks like this:
</div>
<footer id="main-footer">
<div class="container">
<div class="container-content" id="footer-top">
{exp:channel:entries channel="preferences" orderby="date" limit="1" dynamic="off"}
<ul class="list-stack">
{cf_pref_footer}
<li><h2 class="alternate">Information</h2></li>
{footer_links}
<li class="pl10"><a href="http://{page_url}" title="{title}">{title}</a></li>
{/footer_links}
{/cf_pref_footer}
</ul>
<ul class="list-stack">
<li><h2 class="alternate">Get involved</h2></li>
{cf_share_footer}
<li class="pl10">
<a href="http://{share_footer_url}" title="{share_footer_title}" target="_blank" rel="noopener">_ {share_footer_icon}_ {share_footer_title}</a>
</li>
{/cf_share_footer}
</ul>
<ul class="list-stack">
{exp:mailinglist:form list="default"}
<li><h2 class="alternate">Stay up to date</h2></li>
<li class="pl10"><input type="text" placeholder="Email Address" name="email"></li>
<li class="pl10"><input type="submit" value="Subscribe"></li>
{/exp:mailinglist:form}
</ul>
<ul class="list-stack">
<li><h2 class="alternate">Share with others</h2></li>
<li class="pl10"><a href="http://www.madebyshape.co.uk%22class=%22addthis_button_facebook" title="MadeByShape" class="addthis_button_facebook" target="_blank" rel="noopener">MadeByShape</a></li>
</ul>
<ul class="list-stack">
<li>Copyright {current_time format="%Y"} Nail Angel</li>
</ul>
</div>
</div>
</footer>
{!--{if group_id == "1"}{exp:cartthrob:debug_info}{/if}--}
<!--[if lt IE 7 ]>
[removed][removed]
[removed]DD_belatedPNG.fix("img, .png_bg");[removed]
<![endif]-->
<!-- Analytics -->
[removed]
var _gaq=[["_setAccount","UA-{sn_global_google_analytics}"],["_trackPageview"]];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s[removed].insertBefore(g,s)}(document,"script"));
[removed]
</body>
</html>Usually in the inc/footer template i can just add dynamic=“off” but this isn’t working.
Any ideas?