I’ve got a small problem where I’m displaying a list of directors and their videos. On each video however, I would like to have the something like “Dreams, directed by John Doe” However, since both John Doe and Dreams are both in {title} variables there’s a conflict because they’re nested. Can I store the Title for the main page in a temporary variable and use it later. Here’s what I’m trying at the moment and it’s not working. as intended.
I think this particular bit might be where I’m making the mistake:
{assign_variable:dir_name={title}}
and calling it as
{dir_name}
{exp:weblog:entries weblog="directors" dynamic="on" limit="1"}
{assign_variable:dir_name={title}}
<!-- Director Info -->
{title}
{biography}
<!-- Director's Videos -->
{reverse_related_entries weblog="videos"}
<a href="http://{video_upload">_ {title} DIRECTED BY: {dir_name} _ </a>
{/reverse_related_entries}
{/exp:weblog:entries}