DisplayBuddy
From IThemes Codex
(Difference between revisions)
(Created page with 'Plugins currently in the DisplayBuddy series: * RotatingText * FeaturedPosts ==Additional Resources== # [http://pluginbuddy.com/free-wordpress-plugins/ Free Plugins b...') |
(→Menu Item Missing) |
||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | See [[PluginBuddy]] for plugins currently in this series. | |
| + | ==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: <pre>if ( $item[0] == $this->_parent->_series ) {</pre> and replace it with <pre>if ( $item[2] == 'pluginbuddy-' . strtolower( $this->_parent->_series ) ) {</pre> | ||
| + | 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: <pre>if ( $item[0] == $this->_series ) {</pre> and replace it with <pre>if ( $item[2] == 'pluginbuddy-' . strtolower( $this->_series ) ) {</pre> | ||
==Additional Resources== | ==Additional Resources== | ||
Latest revision as of 18:04, February 10, 2012
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 ) ) {