We see the following error.
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Osm has a deprecated constructor in /home/vhosts/caminostones.com/httpdocs/wordpress/wp-content/plugins/osm/osm.php on line 206
Change
class Osm
{
function Osm() {
To
class Osm
{
function __construct() {
Also see the manual.
https://php.net/manual/en/language.oop5.decon.php