I would like that link to open in a new window. I know how to do that with basic html, but can’t seem to get it to work in EE.
As ExpressionEngine allows you to output your data in any way you like then you should be able to do this just as though you were doing it in your normal HTML method.
Perhaps you could show us what you have tried in your template so far?
This kind of thing will work :
{exp:weblog:entries weblog="default_site" disable="member_data|trackbacks|pagination|categories|category_fields"}
<a href="http://{film_link}" title="{title}" target="_blank" rel="noopener">{title}</a>
{/exp:weblog:entries}
Personally I would say don’t use this method any more as it is deprecated code, you’d be better off going with a javascript solution instead such as Blank Win as it’s very easy to set up and your pages will then still validate correctly.
The one main thing that you need to make sure is that the {film_link} custom field has its field formatting set to None and that you have the :
Admin->Wevblog Administration->Weblog Management->Edit Preferences (Your Weblog)->Weblog Posting Preferences->Automatically turn URLs and email addresses into links?
option set to No. This should then allow you to do what you need.
Without seeing what you have tried though it’s a bit difficult to say though.
Hope that helps a bit though.
Best wishes,
Mark