• Resolved dwgnr

    (@dwgnr)


    Hi, is there a way to set dots instead of a comma as separator every 3 digits (e.g. for German formatting)?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeff Starr

    (@specialk)

    Not currently. But I like the idea and will add a filter that makes it possible in an upcoming version of the plugin. Thank you for the idea, @dwgnr.

    Thread Starter dwgnr

    (@dwgnr)

    Awesome! This is btw how I solved it for now. ??

    <script>
    	var arr = document.getElementsByClassName("sbs-count-posts");
    	for(i = 0; i < arr.length; i++){
        	arr[i].innerHTML = arr[i].innerHTML.replace(",",".");
    	}
    </script>
    • This reply was modified 4 years, 1 month ago by dwgnr.
    Plugin Author Jeff Starr

    (@specialk)

    Hehe yeh that’s one way of doing it ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Dots instead of comma?’ is closed to new replies.