-
AuthorPosts
-
March 6, 2019 at 11:44 am #1075459
Hello!
I own several licenses from Enfold. A typical feature of this site is that the Dashboard always displays the number 1 under Updates and Plugins. There are none. What is the reason? The customers could be irritated.
Best regards
Morcy
- This topic was modified 5 years, 8 months ago by Morcy.
March 6, 2019 at 12:10 pm #1075471Hi,
That’s the bundled LayerSlider Plugin. You can disable (if you don’t use it) it via:
Dashboard > Theme name > Layout Builder > Integrated (Bundled) LayerSlider Plugin > Remove theme plugin files and slides.
You can also use this bit of code in your functions.php file which will show Pending updates in Dashboard > Updates
/** * Debug Pending Updates * * Displays hidden plugin and theme updates on update-core screen. */ function debug_pending_updates() { // Rough safety nets if ( ! is_user_logged_in() || ! current_user_can( 'update_plugins' ) || ! current_user_can( 'update_themes' ) ) return; $output = ""; // Check plugins $plugin_updates = get_site_transient( 'update_plugins' ); if ( $plugin_updates && ! empty( $plugin_updates->response ) ) { foreach ( $plugin_updates->response as $plugin => $details ) { $output .= "<p><strong>Plugin</strong> <u>$plugin</u> is reporting an available update.</p>"; } } // Check themes wp_update_themes(); $theme_updates = get_site_transient( 'update_themes' ); if ( $theme_updates && ! empty( $theme_updates->response ) ) { foreach ( $theme_updates->response as $theme => $details ) { $output .= "<p><strong>Theme</strong> <u>$theme</u> is reporting an available update.</p>"; } } if ( empty( $output ) ) $output = "No pending updates found in the database."; echo "<h2>Pending updates</h2>" . $output; } add_action( 'core_upgrade_preamble', 'debug_pending_updates' );
March 7, 2019 at 7:52 am #1075828Hi Morcy,
Thanks @digitalessence for helping out, did you try that out? If not then please post admin login details in private so that we can have a closer look.
Best regards,
RikardMarch 7, 2019 at 11:39 am #1075929Hello!
Thanks @digitalessence.
Strange, Layer Slider plugin is not installed. But the Dashboard menu lists Layer Slider.See PM!
Best regards
Morcy
March 9, 2019 at 12:02 pm #1076714@digitalessence, your solution is not working.
An existing update is still displayed, although all plugins are up to date. Also, the Dashboard Menu displays Layer Slider, even though the plugin is not installed. Can someone check that? PM was sent.
Best regards
Morcy
March 11, 2019 at 5:58 pm #1077437Hello!
No Answer? Not relevant? Or what?
Regards
Morcy
March 12, 2019 at 7:33 am #1077681Hi,
Have you manually updated the plugin? Do you own your own version
Best regards,
BasilisMarch 12, 2019 at 10:31 am #1077763Hi!
Although I have a separate version, but this is not installed on this site. The plugin is not included in the Enfold Church demo, as far as I know (I imported the demo files). I can not explain why the plugin is still displayed in the Dashboard Menu.
Best regards
Morcy
March 13, 2019 at 8:02 pm #1078366Hi Morcy,
The plugin comes with the theme not with the demo.
You can disable the Layer Slider. Here is how to do it:
Best regards,
VictoriaMarch 14, 2019 at 11:30 am #1078647Hallo Victoria!
Finally! That is the solution. Many Thanks!
Best regards
Morcy
March 16, 2019 at 7:11 am #1079368 -
AuthorPosts
- You must be logged in to reply to this topic.