There is a filter for the plugin which determines whether or not the buttons can be output. You can combine that with the WordPress function wp_is_mobile
to prevent the buttons showing on mobile devices. Something like this is working in brief testing for me:
add_filter( 'scriptlesssocialsharing_can_do_buttons', 'prefix_scriptless_remove_on_mobile' );
/**
* Use the built in wp_is_mobile function and do not output buttons on mobile.
*
* @param boolean $cando
* @return boolean
*/
function prefix_scriptless_remove_on_mobile( $cando ) {
if ( wp_is_mobile() ) {
return false;
}
return $cando;
}
You would need to add this to your theme’s functions.php file or a place where you can safely store code snippets. Practice safe coding and please make sure your files are backed up.