DisplayBuddy
From IThemes Codex
(Difference between revisions)
(→Menu Item Missing) |
|||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
==Menu Item Missing== | ==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. | 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. | ||
Line 15: | Line 13: | ||
==Additional Resources== | ==Additional Resources== | ||
− | # [http:// | + | # [http://ithemes.com/free-wordpress-plugins/ Free Plugins by iThemes] |
− | # [http:// | + | # [http://ithemes.com/tutorials/ PluginBuddy Tutorials] |
− | # [http:// | + | # [http://ithemes.com/ iThemes.com] |
− | # [http:// | + | # [http://http://ithemes.com/forum/ Support Forums] |
[[Category:PluginBuddy]] | [[Category:PluginBuddy]] |
Latest revision as of 11:44, July 15, 2013
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 ) ) {