DisplayBuddy
From IThemes Codex
See PluginBuddy for plugins currently in this series.
Contents |
Menu Item Missing
If you have recently installed a recently released DisplayBuddy plugin and are running an old version of another DisplayBuddy plugin it is possible that the older plugin menu may disappear. If this happens simply upgrade to the latest version. If you are unable to upgrade for whatever reason editing one line of code will resolve the issue.
Most Plugins
- Upgrade the plugin that is missing from the menu.
- OR Edit one line of code. In the file /wp-content/plugins/PLUGINNAME/classes/admin.php:
if ( $item[0] == $this->_parent->_series ) {and replace it withif ( $item[2] == 'pluginbuddy-' . strtolower( $this->_parent->_series ) ) {
If the file above does not exist, see the instructions below:
Billboard, Rotating Images, Rotating Text
- Upgrade the plugin that is missing from the menu.
- OR Edit one line of code. In the file /wp-content/plugins/PLUGINNAME/PLUGINNAME.php:
if ( $item[0] == $this->_series ) {and replace it withif ( $item[2] == 'pluginbuddy-' . strtolower( $this->_series ) ) {