Viewing 9 replies - 1 through 9 (of 9 total)
  • Me too. I think I did the right thing.
    I created the CSS selector and the div around the iframe video.
    Please help.

    Plugin Author Kevin Dees

    (@kevindees)

    I’ll see if I cant find out what is going on

    Thread Starter Jamie Thingelstad

    (@thingles)

    Kevin, thanks for the post. Any news? Anything I can provide to help out?

    I change the capabilities from edit_themes to switch_themes and it works

    function menu() {
    	add_submenu_page('themes.php', 'FitVids for WordPress', 'FitVids', 'edit_themes', __FILE__,array($this, 'settings_page'), '', '');
    }

    to

    function menu() {
    	add_submenu_page('themes.php', 'FitVids for WordPress', 'FitVids', 'switch_themes', __FILE__,array($this, 'settings_page'), '', '');
    }

    The problem with edit_themes capabilities is that it require DISALLOW_FILE_EDIT value to be false in wp-config.php

    Thread Starter Jamie Thingelstad

    (@thingles)

    Thank you! I switched it from edit_themes to switch_themes and it works great for me.

    And, as you reference, I have define(‘DISALLOW_FILE_EDIT’,true); in my wp-config.php which is why it wasn’t working for me. Thanks.

    Kevin, would be great to have this changed in the distribution.

    Plugin Author Kevin Dees

    (@kevindees)

    I’ll make a patch this week.

    Plugin Author Kevin Dees

    (@kevindees)

    patched added

    Thread Starter Jamie Thingelstad

    (@thingles)

    Thanks Kevin — updated and all works fine after the update.

    Plugin Author Kevin Dees

    (@kevindees)

    np ?? only wish I had the chance to fix it sooner

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘[Plugin: FitVids for WordPress] No menu option in Appearance’ is closed to new replies.