reedock
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] 6.2 Doesn’t display slideshow Elementor containerTested 6.2.0.1 on 2 websites and everything looks in order. Thank you!
RESOLVEDForum: Plugins
In reply to: [LiteSpeed Cache] 6.2 Doesn’t display slideshow Elementor containerEmail sent.
Forum: Plugins
In reply to: [LiteSpeed Cache] 6.2 Doesn’t display slideshow Elementor containerReport number: ZWIAIIAB
Report date: 04/24/2024 08:38:04
On that website, 2 slideshows aren’t showing.Hi, Updraft team might want to reach out to Namecheap so they would avoid treating this as a malicious attempt.
Version 2.8.2 resolves this issue.
With all due respect, it hasn’t been resolved yet since there is no fix released from your side.
Reverting the status to “not resolved” until there is an official update.Thanks!
I’ve as well reported the issue on Github:
https://github.com/ultimatemember/ultimatemember/issues/1404Added the issue to Github hoping to be noticed by the support team.
https://github.com/ultimatemember/ultimatemember/issues/1404Same problem here!
The last update added a gap in every UM pages.
Temporary fix:
/* Remove gap in footer of UM pages */
body.um:not(.um-admin) {
margin-bottom: 0 !important;
}Need to add this code in the meantime while hoping for a fix in the next update of the plugin.
/* Remove gap in footer of UM pages */
body.um:not(.um-admin) {
margin-bottom: 0 !important;
}Additional info: There is no plugin conflict, cleared cache and rolling back to the previous version of the plugin solve the gap problem.
Same issue is happening when changing to another theme.
Can’t find the reason using browser source code…I actually like using Code Snippets as temporary fix hoping that plugins future updates fix conflicts hehehe!
Using this Code Snippet to temporarily disable Ultimate Member assets on specific pages due to plugin conflict.if ( ! defined( 'ABSPATH' ) ) exit; if ( ! class_exists( 'UM' ) ) return; add_action( 'wp_print_footer_scripts', 'um_remove_scripts_and_styles', 9 ); add_action( 'wp_print_scripts', 'um_remove_scripts_and_styles', 9 ); add_action( 'wp_print_styles', 'um_remove_scripts_and_styles', 9 ); add_action( 'dynamic_sidebar', 'um_remove_scripts_and_styles_widget' ); function um_remove_scripts_and_styles() { global $post, $um_load_assets, $wp_scripts, $wp_styles; $blocked_page_ids = array(10963, 22764); if ( is_admin() || is_ultimatemember() ) { return; } $current_page_id = isset($post->ID) ? $post->ID : 0; if (in_array($current_page_id, $blocked_page_ids)) { // Remove UM scripts and styles for the specified page IDs foreach ($wp_scripts->queue as $key => $script) { if (strpos($script, 'um_') === 0 || strpos($script, 'um-') === 0 || (isset($wp_scripts->registered[$script]->src) && strpos($wp_scripts->registered[$script]->src, '/ultimate-member/assets/') !== false)) { unset($wp_scripts->queue[$key]); } } foreach ($wp_styles->queue as $key => $style) { if (isset($wp_styles->registered[$style]->src) && (strpos($style, 'um_') === 0 || strpos($style, 'um-') === 0 || strpos($wp_styles->registered[$style]->src, '/ultimate-member/assets/') !== false)) { unset($wp_styles->queue[$key]); } } } } function um_remove_scripts_and_styles_widget($widget) { if (strpos($widget['id'], 'um_') === 0 || strpos($widget['id'], 'um-') === 0) { $GLOBALS['um_load_assets'] = true; } }Thank you for your suggestion @missveronicatv but do you have an alternative instead of the famous “add a plugin to fix a plugin”?
Shouldn’t the original plugin be fixed to not load assets everywhere since it’s not necessary?
Thinking of maybe converting your solution to a code snippet for ease of use while hoping that Ultimate Member find a fix..To see how the latest version of your plugin affect the styling of our booking calendars:
Version 2.6.11
https://snipboard.io/wQDs59.jpg
Version 2.7.0
https://snipboard.io/XvU05q.jpg
Rolling back to 2.6.11 for now.Forum: Plugins
In reply to: [LiteSpeed Cache] Plugin keep on reverting back to Version 5.5 after few daysWill monitor and post a message back here in case it is not resolved. Thanks again!