I have a asset listing that’s nested under a standard page.
In the type format of the listing I’m using a conditional keyword to test against some metadata.
%begin_asset_metadata_site_key^eq:[whatever-site]%
I’m trying to pass the [whatever-site] as a variable defined by additional get parameters of the nested content container.
However when I try to modify the conditional keyword to contain the variable it barfs!
I’ve tried…
%begin_asset_metadata_site_key^eq:%nested_get_[thevariable]%%
%begin_asset_metadata_site_key^eq:%nested_get_[thevariable]%
%begin_asset_metadata_site_key^eq:{nested_get_[thevariable]}%
%begin_asset_metadata_site_key^eq:\{nested_get_[thevariable]\}% (as according to https://matrix.squiz.net/manuals/keyword-replacements/chapters/keyword-modifiers#Using-Keyword-Replacements-as-Argument-Values)
Is this possible? Am I missing something?
TIA