matweiss
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
You’re welcome. 😉
- This reply was modified 2 years, 9 months ago by matweiss.
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] PHP Error (Version: 3.8.1)Can’t say anything about that. I am only a plugin user.
You can change the line 232 from:
return number_format_i18n( floor( ($download_num / 1000) ) * 1000 ). '+';to:
return number_format_i18n( floor( (intval($download_num) / 1000) ) * 1000 ). '+';in my case, the above solution in function.php seems to work and get rid of the problem for now.
function my_function_name() {
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
}
add_action( 'pre_get_posts', 'my_function_name' );https://ww.wp.xz.cn/support/topic/wordpress-6-2-3/#post-16608684
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Break the site since WP 5.6Here I found the solution for me:
- This reply was modified 5 years, 5 months ago by matweiss.
Viewing 7 replies - 1 through 7 (of 7 total)