Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Wyvern Video Plugin

Status Resolved
Add-on / Version
Severity Trivial
EE Version 24

Hybrid

May 14, 2013

The Wyvern Video plugin is not showing up in the toolbar after we’ve installed the plugin in the correct folder and checked the “video” box in the toolbar.  The button in the toolbar settings also is missing it icon.  Any ideas?

#1

BoldMinded (Brian)

Did you check your javascript console for any errors on the publish page load? Don’t worry about the missing icon on the settings page, I know about that and it isn’t a big deal, it doesn’t affect if the icon shows in the toolbar.

Do me a favor, and on line 247 of helper.wyvern.php you’ll see this:

// Add our native plugins so they are loaded first, and make sure the directory exists.
        foreach ($this->native_plugins as $k => $plugin)
        {
            if( ! is_dir($this->_get_theme_folder_path().'wyvern/plugins/'.$plugin) OR
                // This check is mostly for my dev environment
                ! is_link($this->_get_theme_folder_path().'wyvern/plugins/'.$plugin))
            {
                unset($this->native_plugins[$k]);
            }
        }

Change it to this:

// Add our native plugins so they are loaded first, and make sure the directory exists.
        foreach ($this->native_plugins as $k => $plugin)
        {
            if( ! is_dir($this->_get_theme_folder_path().'wyvern/plugins/'.$plugin)
            {
                unset($this->native_plugins[$k]);
            }
        }

What happens then?

#2

Hybrid

That did it! FYI - your missing a closing ) on the if statement. Thanks Brian.

#3

BoldMinded (Brian)

Excellent. You’re the 2nd person who has had this issue so I’m going to remove that line in the next release.

Login to reply