• I’ve set up the main set of opening hours (monday through friday) and some holidays, but the schema.org shortcode ‘op-schema’ only seems to show the holidays and not the daily opening hours. See the output below. The set is found and used, but only holidays. I’m not using a child set, nor the irregular opening hours. The ‘op-is-open’ and ‘op-overview’ shortcodes work just fine. Is this happening for anyone else? Anything I can do or is this a bug?

    <script type="application/ld+json">
      {
        "@context": [
            "http://schema.org"
        ],
        "@type": "LocalBusiness",
        "name": "Be Green Techniek",
        "description": "Be Green Techniek is bereikbaar op deze datums en tijdstippen.",
        "openingHoursSpecification": [],
        "specialOpeningHoursSpecification": [
            {
                "@type": "OpeningHoursSpecification",
                "name": "Nieuwjaarsdag",
                "validFrom": "2021-01-01",
                "validThrough": "2021-01-01"
            },
            {
                "@type": "OpeningHoursSpecification",
                "name": "Koningsdag",
                "validFrom": "2021-04-27",
                "validThrough": "2021-04-27"
            },
            {
                "@type": "OpeningHoursSpecification",
                "name": "Bevrijdingsdag",
                "validFrom": "2021-05-05",
                "validThrough": "2021-05-05"
            },
            {
                "@type": "OpeningHoursSpecification",
                "name": "Kerstdagen",
                "validFrom": "2020-12-25",
                "validThrough": "2020-12-26"
            },
            {
                "@type": "OpeningHoursSpecification",
                "name": "Pasen",
                "validFrom": "2021-04-04",
                "validThrough": "2021-04-05"
            },
            {
                "@type": "OpeningHoursSpecification",
                "name": "Hemelvaartsdag",
                "validFrom": "2021-05-13",
                "validThrough": "2021-05-13"
            },
            {
                "@type": "OpeningHoursSpecification",
                "name": "Pinksteren",
                "validFrom": "2021-05-23",
                "validThrough": "2021-05-23"
            }
        ]
    }</script>

The topic ‘Schema.org missing regular opening hours?’ is closed to new replies.