Issue: Click and Drag make Edit Post lists unscrollable on mobile
-
Hi,
Many thanks for this plugin!
I have a issue, not a bug, but may need enhancement.
When the (awesome) click and drag order feature is activated, we cannot scroll vertically on post list pages on mobile, because the sorting feature as the priority over the scrolling. There should be some quite of button to be able to be in “scrolling” mode or something like that.
My workaround: A simple code snippet to deactivate the click and drag script if I’m on mobile. It’s ok for my case, but maybe other users need sorting on mobile.
// Prevent CPT Order plugin to force click and drag on mobile while scrolling the post list add_action( 'wp_print_scripts', 'xr_deregister_admin_script'); function xr_deregister_admin_script() { if( is_admin() && wp_is_mobile() ) { wp_deregister_script( "cpto" ); } }
I don’t know what would be the best way to handle this. Anyway, you know the issue!
Thx for your support!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Issue: Click and Drag make Edit Post lists unscrollable on mobile’ is closed to new replies.