I fix the problem where you only see the tag.
Plugin System -> Plugin Manager -> Create AnyMedia BBCode
Replace this:
Code:
if ($this->registry->options['anymediaenable'] && ($this->registry->userinfo['permissions']['anymediapermissions'] & $this->registry->bf_ugp_anymediapermissions['canuse']) )
For this:
Code:
if ($this->registry->options['anymediaenable'] && ($this->registry->userinfo['permissions']['anymediapermissions'] & 1) )
(I thinks that this is because the plugin is not reading from bitfield_anymedia.xml for something like that)