Is there a way to get the no_results tag to work when using conditionals and msm? The problem is that I cannot use the search: parameter to limit the results, because it seems the Multiple Site Manager does not recognize “search:”. MSM does work with conditionals, though, so I am forced to use them. But no_results does not recognize conditionals.
The following code does not work, because search is not functional with the “site=” tag.
<pre><code>{exp:channel:entries site="implications" channel="place" search:url_title="{embed:place}”}
{if url_title == "{embed:place}”}
{title}
{if no_results}No successes yet.{/if}
{/if}
{/exp:channel:entries}</code></pre>
The following code returns the correct results for “{title}”, but no_results is incorrect because it is not limited by the conditional.
{exp:channel:entries site="implications" channel="place"}
{if url_title == "{embed:place}"}
{title}
{if no_results}No successes yet.{/if}
{/if}
{/exp:channel:entries}How can I show no_results when using MSM and limiting the results with search: or conditional?
Any help would be appreciated!
Geoff