Adding Custom Schema Markup to home page

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
matthew.l.jones
 
 
Posts: 11
Joined: Mon Mar 30, 2026 9:22 pm

Adding Custom Schema Markup to home page

Post by matthew.l.jones »

Hello, I am going to page >page HTML and tried to add my Custom Schema Markup. But, it just appears as normal text on my website. Can anyone please tell me how to add my markup to my homepage
User avatar
BaconFries
 
 
Posts: 6271
Joined: Thu Aug 16, 2007 7:32 pm

Re: Adding Custom Schema Markup to home page

Post by BaconFries »

That will depend how it looks is markup valid? but generally you insert it between the <head></head> tags*
Have you read the following
https://www.wysiwygwebbuilder.com/structured_data.html
matthew.l.jones
 
 
Posts: 11
Joined: Mon Mar 30, 2026 9:22 pm

Re: Adding Custom Schema Markup to home page

Post by matthew.l.jones »

Thank you for your response. I have read that article.

I'm a bridal shop. So I don't understand even if I just use the native markup, because none of the options are a retail store.

But besides that. I've tried inserting the markup in page HTML and also putting the HTML from the toolbox in.

I either get that the schema shows up in my regular website or it doesn't allow the website page to load properly. It just gives a blank white page.

And I have no idea what I'm doing wrong?
User avatar
BaconFries
 
 
Posts: 6271
Joined: Thu Aug 16, 2007 7:32 pm

Re: Adding Custom Schema Markup to home page

Post by BaconFries »

Ok understood that is for your bridal business so the following is a general markup for it.
You can test it and check its validation at the following below which I did with 0 errors and 0 warnings by copying and paste or once added to your site use the url.
For testing.
https://developers.google.com/search/do ... tured-data

Insert by going to Page HTML Between the <head></head> tags*

Code: Select all

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "Ann Matthews Bridal",
  "image": "https://www.annmatthews.com/logo.png",
  "url": "https://www.annmatthews.com/",
  "telephone": "+1-505-883-4500",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Menaul Blvd NE",
    "addressLocality": "Albuquerque",
    "addressRegion": "NM",
    "postalCode": "87110",
    "addressCountry": "US"
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
      "opens": "11:00",
      "closes": "19:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Saturday",
      "opens": "10:00",
      "closes": "19:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Sunday",
      "opens": "12:00",
      "closes": "17:00"
    }
  ],
  "sameAs": [
    "https://www.facebook.com/annmatthewsbridal",
    "https://www.instagram.com/annmatthewsbridal"
  ]
}
</script>
Post Reply