So I've just updated to EE 2.4.0 and Matrix 2.2.4
it seems some of the new file fieldtype tags aren't working (or I'm doing something wrong). Are the new file tag options and variable supported?
eg:
- {filetag:small} to get the url to the "small" version
- {filetag}{url}{/filetag} or {filetag}{url:small}{/filetag}
- the wrap parameter {filetag wrap="image"}
http://expressionengine.com/user_guid...
Thanks for your help.
Are the new EE 2.4 File fieldtype tags and Image manipulations supported
-
Matrix’s File celltype is actually completely different from EE’s built-in File fieldtype. It’s meant to mimic the built-in one though, including tags. I actually wasn't aware that those new tags existed though, so I’ll have to check it out and add them in :)
-
-
Ok, thanks for the info.
btw. for anyone else trying to display a specific version of an image, the following workaround works ok.
{filetag}
<img src="{path}_small/{filename}.{extension}" />
{/filetag}
-
-
-
-
nice indeed, but width and height seem not to work ...
anyone got that working? -
-
I used CE Image to workaround this until the Matrix file field gets updated. This will output height and width automatically.
Either single tag:
{exp:ce_img:single src="{filetag}"}
or tag pair:
{exp:ce_img:pair src="{filetag}"}
<img src="{made}" alt="" width="{width}" height="{height}" />
{/exp:ce_img:pair}
-
-
-
Loading Profile...


Twitter,
Facebook, or email.

EMPLOYEE



Can I output an image manipulation from Matrix without using any other image resize add-on yet?
Thanks