DisplayBuddy
(Difference between revisions)
| Line 6: | Line 6: | ||
===All plugins except Billboard & Rotating Images=== | ===All plugins except Billboard & Rotating Images=== | ||
# Upgrade the plugin that is missing from the menu. | # 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-' . $this->_series ) {</pre> | + | # 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> |
===Billboard & Rotating Images=== | ===Billboard & Rotating Images=== | ||
# Upgrade the plugin that is missing from the menu. | # 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-' . $this->_series ) {</pre> | + | # 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> |
Revision as of 18:02, 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.
All plugins except Billboard & Rotating Images
- 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 ) ) {
Billboard & Rotating Images
- 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 ) ) {