Thanks mate, I was able to solve both of my problems.
For anyone trying to add something beside the share icons,
I used this plugin: https://ww.wp.xz.cn/plugins/code-snippets/ (I was already using this for some other scripts).
And added this code provided by Dimitris,
add_action( ‘wp_head’, function () { ?>
<script>
(function ($) {
$(document).ready(function () {
var message = ‘Share on:’;
$(‘.hustle-social’).before(message);
});
})(jQuery);
</script>
<?php } );
That’s it.
At last, thank you again Dimitris! Really appreciate it.