In my template layout I have 2 section : Body and Sidebar.
In the Body I put this tag :
{exp:weblog:entries weblog="{my_section}" orderby="date" sort="desc" limit="1" disable="member_data|trackbacks" dynamic="off"}
{body}
{/exp:weblog:entries}In the Sidebar I put this code :
{exp:weblog:entries weblog="{my_section}" orderby="date" sort="desc" disable="member_data|trackbacks"}
<ul>
<li><a href="http://{path={my_template_group}/{title}}">{title}</a></li>
</ul>
{/exp:weblog:entries}
The template is populated with entries where all of the contents are videos coming from vimeo. However, every time the sidebar content is clicked, the content in the template is not changing. I made a test by changing all of content with a simple text and It is changed.
Is there any particular way to deal with content coming from outside (video from vimeo)?
Thank you