Local business website tips

Do you want to share WYSIWYG Web Builder tips, tricks, tutorials or useful HTML code? You can post it here...
(no questions or problems please, this section is not monitored by support).
Forum rules
This section is to share tips, tricks and tutorials related to WYSIWYG Web Builder.
Please do not post questions or problems here. They will not be answered.

PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
Post Reply
filmphotog
 
 
Posts: 87
Joined: Sat Sep 05, 2015 7:20 am
Location: Sweden
Contact:

Local business website tips

Post by filmphotog »

I looked into useful tips for local business websites, here's what I've come up with so far. Please feel free to add more tips.


- Use the same business name, address, phone (NAP) in the website, social media, business catalogs etc.

- Register in Google My Business, tripadvisor.com, local catalogs etc.

- Add structured data in the website pages, this could be visible or in a script (see code below).



Useful structured data links:

https://developers.google.com/structure ... usinesses/

https://schema.org/LocalBusiness (see examples)

https://developers.google.com/structure ... ting-tool/ (testing code before adding to the website)



This code could be placed anywhere in the page html.

Code: Select all

<script type="application/ld+json">
{
  "@context":"http://schema.org",
  "@type":"LocalBusiness",
  "address":{
    "@type":"PostalAddress",
    "streetAddress":"MyStreet 3",
    "addressLocality":"MyCity",
    "addressRegion":"MyRegion",
    "postalCode":"111 11",
    "addressCountry":"SE"
  },
  "geo":{
    "@type":"GeoCoordinates",
    "latitude":11.111111,
    "longitude":11.111111
  },
  "url":"http://mywebsite.com",
  "description": "We do this, and this, and this too",
  "name":"My Company",
  "telephone":"+11111111"
}
</script>
User avatar
bburgess
 
 
Posts: 129
Joined: Mon May 13, 2013 5:05 am
Location: Australia

Re: Local business website tips

Post by bburgess »

Good stuff!!

Thanks!
KISS is the key!
Post Reply