<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="https://www.davidhboggs.com/blog/templates/default/rss.css" ?>
<rss version="2.0"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:media="http://search.yahoo.com/mrss/"
 xmlns:atom="http://www.w3.org/2005/Atom"
 xmlns:georss="http://www.georss.org/georss"> 
<channel>
<title>David H Boggs, MS Search Marketing </title>


<link>https://www.davidhboggs.com/blog</link>

<description>
David H Boggs, MS provides expert search marketing, SEO and Google Ads services to Maine businesses.
</description>

<language>en-us</language>
<atom:link href="https://www.davidhboggs.com/blog/rssfeed.php?catid=3" rel="self" type="application/rss+xml" />

<item>
<title>How to use structured data markup to enhance appearance in Google search results</title>


<description></description>

<link>https://www.davidhboggs.com/blog/online-marketing/how-to-use-structured-data-markup-to-enhance-appearance-in-google-search-results-2370-thread.html</link>
<pubDate>Sat, 20 Dec 2025 00:00:00 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/online-marketing/how-to-use-structured-data-markup-to-enhance-appearance-in-google-search-results-2370-thread.html</guid>
<content:encoded><![CDATA[<p><span style="font-size:16px">Correctly using structured data markup in your articles and blog posts can make your content stand out in Google Search results by including it in enhanced displays like top-stories carousels and rich results with headline text and large images, like this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U0NDM2OC5wbmc=" /></span></p>  <p><span style="font-size:16px">Google encourages us to use structured data to help it understand what our pages are about, by providing clues in a structured format that it can easily interpret.</span></p>  <p><span style="font-size:16px">Structured data is coded using in-page JavaScript markup that describes the content of the page.</span></p>  <p><span style="font-size:16px">Google provides the following suggestions/warnings for using structured data markup for SEO purposes:</span></p>  <ul> 	<li><span style="font-size:16px">Although most structured data for search uses <strong><a target="_blank" rel="nofollow" href="https://schema.org/">schema.org</a></strong> vocabulary, follow the documentation on <a target="_blank" rel="nofollow" href="https://developers.google.com/"><u><strong>developers.google.com</strong></u></a> as definitive for Google Search behavior, rather than the schema.org documentation. </span> 	<li><span style="font-size:16px">Always test your structured data markup using the <strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool">Structured Data Testing tool</a></strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool"><strong> </strong></a>before it goes live.</span> 	<li><span style="font-size:16px">For your content to be eligible for enhanced display on Google, you must include all the required properties for an object. </span> 	<li><span style="font-size:16px">Defining more recommended features can make it more likely that your information can appear in Search results with enhanced display, but it&#39;s better to supply fewer but complete and accurate properties vs. more properties that are less complete or accurate. </span> </ul>  <p><span style="font-size:16px">Although a number of different structured-data markup systems exist, and Google recognizes several of them, the simplest and most-used is JSON-LD (JavaScript Object Notation for Linked Data) - say "Jason LD" - which uses <strong>arrays of attribute-value pairs</strong> (like "@type NewsArticle").</span></p>  <p><span style="font-size:16px">Google recognizes a number of applications for structured data - AMP and non-AMP pages, articles, videos, recipes, etc. For simplicity, in the following example I&#39;m going to demonstrate the easiest case: how to do structured-data markup for a <strong>non-AMP article or blog post</strong>.</span></p>  <p><span style="font-size:16px">To begin, I created a simple webpage containing an article, here:<a target="_blank" rel="nofollow" href="http://www.davidhboggs.com/article.htm"><u><strong> </strong></u></a><u><strong><a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/demos/article.htm">https://www.davidhboggs.com/demos/article.htm</a></strong></u> which looks like this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U2YmQ3Yi5wbmc=" /></span></p>  <p><span style="font-size:16px">Then using the example here <u><strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool">https://search.google.com/structured-data/testing-tool</a> </strong></u> I created the following JSON-LD script and pasted it into the &#60;HEAD&#62; of <strong>article.htm</strong>:</span></p>  <p><span style="font-size:16px">---------------------------------------------------------------------------------</span></p>  <p><span style="font-size:16px">&#60;script type="application/ld+json"&#62;<br /> &#123;<br /> "@context": "http://schema.org",<br /> "@type": "NewsArticle",<br /> "mainEntityOfPage": &#123;<br /> "@type": "WebPage",<br /> "@id": "https://www.davidhboggs.com/article.htm"<br /> },<br /> "headline": "Transformation of Search Summit scheduled for 19 October 2018 in NYC",<br /> "image": [<br /> "https://www.davidhboggs.com/images/david_round_150.jpg",<br /> "https://www.davidhboggs.com/images/newsletter.png",<br /> "https://www.davidhboggs.com/images/transformation-of-search.png"<br /> ],<br /> "datePublished": "2018-08-08T12:51:51+00:00",<br /> "dateModified": "2018-08-08T12:51:51+00:00",<br /> "author": &#123;<br /> "@type": "Person",<br /> "name": "David Boggs"<br /> },<br /> "publisher": &#123;<br /> "@type": "Organization",<br /> "name": "ACRO Global",<br /> "logo": &#123;<br /> "@type": "ImageObject",<br /> "url": "https://www.acroglobal.com/images/header2017_300.png"<br /> }<br /> },<br /> "description": "Conference organized by ClickZ with Search Engine Watch and Catalyst will be addressing latest trends in search: platforms and technologies, organic and paid."<br /> }<br /> &#60;/script&#62;</span></p>  <p><span style="font-size:16px">---------------------------------------------------------------------------</span></p>  <p><span style="font-size:16px">Here&#39;s where all that came from, line by line:</span></p>  <p><span style="font-size:16px">"http://schema.org" is used in every script.</span></p>  <p><span style="font-size:16px">The various <strong>@types</strong> for non-AMP pages are here: <u><strong><a target="_blank" rel="nofollow" href="https://developers.google.com/search/docs/data-types/article#non-amp">developers.google.com/sear...data-types/article#non-amp</a></strong></u></span></p>  <p><span style="font-size:16px">"NewsArticle" and "WebPage" were obvious fits for my content.</span></p>  <p><span style="font-size:16px">"@id" is the URL of the page: <em>https://www.davidhboggs.com/article.htm </em></span></p>  <p><span style="font-size:16px">"headline" comes from the &#60;h1&#62; tag of the page.</span></p>  <p><span style="font-size:16px">Then come the "image" URLs, one for each image on the page: head shot, Newsletter icon, conference icon. Include all your important images.</span></p>  <p><span style="font-size:16px">Next are "datePublished" and &#39;dateModified" in <strong>iso 8601</strong> format, which you can get here: <a target="_blank" rel="nofollow" href="http://www.timestampgenerator.com/"><u><strong> </strong></u></a><u><strong><a target="_blank" rel="nofollow" href="http://www.timestampgenerator.com/">http://www.timestampgenerator.com/</a></strong></u></span></p>  <p><span style="font-size:16px">Then come "author" data, with @type=person, name=David Boggs</span></p>  <p><span style="font-size:16px">Followed by "publisher" data: @type=Organization, name=ACRO Global</span></p>  <p><span style="font-size:16px">Then "logo" with the data pair @type: "Image Object" and the URL of the ACRO Global logo</span></p>  <p><span style="font-size:16px">Finally "description" from the &#60;META description&#62; tag of the page</span></p>  <p><span style="font-size:16px">Saved the page, uploaded it to DavidHBoggs.com and ran the Google Structured Data Testing Tool on the page URL from here: <u><strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool">https://search.google.com/structured-data/testing-tool</a></strong></u></span></p>  <p><span style="font-size:16px">which produced this result:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U5OGJkZS5wbmc=" /></span></p>  <p><span style="font-size:16px">No errors, no warnings. Great!</span></p>  <p><span style="font-size:16px">But had I messed up, Google would have given me a (more or less) helpful error message.</span></p>  <p><span style="font-size:16px">If this were a "serious" page - not an example - I&#39;d next add it to my XML sitemap, upload that ad run it by Google Search Console for re-indexing.</span></p>  <p><span style="font-size:18px">And go here for more on <u><strong><a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/seo/">Maine search engine optimization</a>.</strong></u></span></p>]]></content:encoded>
</item>

<item>
<title>Google Expanding AI Mode Bookings to Hotels and Flights</title>


<description>AI Mode bookings for restaurants, events, beauty/doctor appointments are live now.</description>

<link>https://www.davidhboggs.com/blog/online-marketing/google-expanding-ai-mode-bookings-to-hotels-and-flights-4043-thread.html</link>
<pubDate>Wed, 19 Nov 2025 18:50:38 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/online-marketing/google-expanding-ai-mode-bookings-to-hotels-and-flights-4043-thread.html</guid>
<content:encoded><![CDATA[<h1><strong><span style="color:#000099">Google Expanding AI Mode Bookings to Hotels and Flights</span></strong></h1>  <h1><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=Z29vZ2xlYWlib29raW5nOTIxNy5wbmc=" style="height:100%; width:100%" /></h1>  <h3><span style="color:#990000"><strong><span style="font-size:20px">Google Expanding AI Mode Bookings to Hotels and Flights</span></strong></span></h3>  <p><span style="font-size:18px">After launching AI Mode bookings for restaurants, events and beauty and doctor appointments in October, Google has announced plans to add agentic bookings for hotels and flights.</span></p>  <p><span style="font-size:18px">The new booking experience is first being enabled for <strong>US Google AI Ultra subscribers</strong></span></p>  <p><span style="font-size:18px">This new rollout will add Booking.com, Choice Hotels International, Expedia, IHG Hotels &amp; Resorts, Marriott International and Wyndham Hotels &amp; Resorts to Google&#39;s list of travel booking partners that already includes OpenTable, Resy, Ticketmaster, StubHub, SeatGeek and Booksy.</span></p>  <p><span style="font-size:18px">Also last month Google announced launch of a new <strong>agentic commerce solution</strong> with with PayPal, which followed the initiation  of an <strong>Agent Payment Protocol</strong> in September.</span></p>  <p><span style="font-size:18px">Although Google hasn&#39;t yet announced full details of its new booking ecosystem, it&#39;s been announced that users will be able to choose booking partners, and that those partners will manage all transactions and bookings without Google itself being in the loop.</span></p>  <p> </p>]]></content:encoded>
</item>

<item>
<title>Massachusetts 2026 Governor&#039;s Conference on Tourism to be held 24-25 March in Danvers</title>


<description>Early Bird tickets $275 until 6 November 2025</description>

<link>https://www.davidhboggs.com/blog/online-marketing/massachusetts-governors-conference-on-tourism-to-be-held-march-in-danvers-4038-thread.html</link>
<pubDate>Wed, 22 Oct 2025 13:00:59 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/online-marketing/massachusetts-governors-conference-on-tourism-to-be-held-march-in-danvers-4038-thread.html</guid>
<content:encoded><![CDATA[<h1><span style="color:#990000"><strong>Massachusetts 2026 Governor&#39;s Conference on Tourism</strong></span></h1>  <p><span style="color:#990000"><strong><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=bWFzc2FjaHVzZXR0czg2OGYucG5n" style="height:100%; width:100%" /></strong></span></p>  <p><span style="font-size:18px"><span style="color:#000000"><strong>Venue for this annual event</strong> will be the Doubletree by Hilton Hotel Boston North Shore in Danvers, MA.</span></span></p>  <p><span style="font-size:18px"><span style="color:#000000">More than 500 tourism industry professionals will be joining MA Gov. Maura Healey for this conference which will spotlight the state&#39;s 16 Regional Tourism Councils as well as the upcoming 250th anniversary of the American Revolution celebration <a target="_blank" rel="nofollow" href="https://massachusetts250.org/"><u><strong>MA250</strong></u></a><u><strong>.</strong></u></span></span></p>  <p><span style="font-size:18px">Early Bird individual attendee ticket rate is $275 through 5 November, regular rate $350 after that.</span></p>  <p><span style="font-size:18px"><a target="_blank" rel="nofollow" href="https://massgovernorsconference.com/"><u><strong>Register here</strong></u></a>.</span></p>  <p><span style="font-size:18px">Go here for <a target="_blank" rel="nofollow" href="https://eventhub.net/events/2026-Massachusetts-Governor-s-Conference-on-Travel---Tourism_7032"><u><strong>exhibitor and sponsor information</strong></u></a>.</span></p>  <p><span style="font-size:18px">Email this address for <a target="_blank" rel="nofollow" href="http://massgovernorsconference@conventures.com"><u><strong>more information</strong></u></a>.</span></p>  <p><span style="font-size:18px">And go here for more on <a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/tourism-search-marketing.htm"><u><strong>how Google Ads and SEO will up your tourism game</strong></u></a>.</span></p>]]></content:encoded>
</item>

<item>
<title>MarTech Conference Online Free 17 September 2025</title>


<description>&#34;One day. One track. Zero fluff.&#34;</description>

<link>https://www.davidhboggs.com/blog/online-marketing/martech-conference-online-free-september-4031-thread.html</link>
<pubDate>Wed, 10 Sep 2025 15:34:01 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/online-marketing/martech-conference-online-free-september-4031-thread.html</guid>
<content:encoded><![CDATA[<p><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=bWFydGVjaDA5MjV0cGI1ZmYucG5n" style="height:100%; width:100%" /></p>  <h1><span style="color:#990000"><strong>MarTech Conference Online Free 17 September 2025</strong></span></h1>  <p><span style="font-size:18px"><span style="color:#000000">The Third Door Media unit of Boston-based digital marketing platform Semrush has opened <strong>free registration for a MarTech Conference </strong>to be offered online on 17 September 2025.</span></span></p>  <p><span style="font-size:18px"><span style="color:#000000"><strong>Speakers</strong> will include:</span></span></p>  <ul> 	<li><span style="font-size:18px"><strong>Alex Cash</strong>, OneTrust</span> 	<li><span style="font-size:18px"><strong>Florian Delval</strong>, Snowflake</span> 	<li><span style="font-size:18px"><strong>Adam Eisler</strong>, IAB</span> 	<li><span style="font-size:18px"><strong>Jessica Kao</strong>, Adobe</span> 	<li><span style="font-size:18px"><strong>Sav Khetan</strong>, Tealium</span> 	<li><span style="font-size:18px"><strong>AJ Sedlak</strong>, Ford Motor Company</span> 	<li><span style="font-size:18px"><strong>Jiaxi Zhu</strong>, Google</span> 	<li><span style="font-size:18px">More...</span> </ul>  <p><span style="font-size:18px"><strong>Agenda</strong></span></p>  <ul> 	<li><span style="font-size:18px">1100: How to get your organization aligned for the AI age</span> 	<li><span style="font-size:18px">1145: Navigating the chaos of consent, compliance and customer trust in an AI world</span> 	<li><span style="font-size:18px">1230: How AI and data activation deliver unforgettable customer experiences</span> 	<li><span style="font-size:18px">1315: Unlock the power of the underutilized data hiding right in front of your team</span> 	<li><span style="font-size:18px">1400: Martech reimagined: Building a stack for the dominant forces of data  and AI</span> 	<li><span style="font-size:18px">1445: How AI decisioning will change your marketing</span> </ul>  <p><span style="font-size:18px"><span style="color:#000000">Go here to <a target="_blank" rel="nofollow" href="https://events.martech.org/september-2025/"><u><strong>register</strong></u></a><u><strong> . </strong></u></span></span></p>  <p><span style="font-size:18px"><span style="color:#000000">Conference is short, but looks like it will get right to the point. If you&#39;re involved with digital marketing, you should participate. I&#39;m going to.</span></span></p>  <p> </p>]]></content:encoded>
</item>

<item>
<title>SMX Advanced 2025 Conference 11-13 June in Boston</title>


<description>Lowest ticket price $1295 ends 29 March</description>

<link>https://www.davidhboggs.com/blog/online-marketing/smx-advanced-conference-june-in-boston-3985-thread.html</link>
<pubDate>Mon, 24 Feb 2025 14:47:04 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/online-marketing/smx-advanced-conference-june-in-boston-3985-thread.html</guid>
<content:encoded><![CDATA[<p><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=c214YWR2YW5jZWQyNWRjZWEuanBn" style="height:100%; width:100%" /></p>  <h1><span style="color:#990000"><strong>SMX Advanced Conference 11-13 June in Boston</strong></span></h1>  <p><span style="font-size:18px"><strong>This search marketing conference organized by Semrush </strong>is back live in Boston after a 4-year COVID-related hiatus.</span></p>  <p><span style="font-size:18px">Agenda and speakers are not yet set, but members of the <strong>Programming Committee</strong> include:</span></p>  <ul> 	<li><span style="font-size:18px">Andrew Goodman</span> 	<li><span style="font-size:18px">Barry Schwartz</span> 	<li><span style="font-size:18px">Brad Geddes</span> 	<li><span style="font-size:18px">Danny Goodwin</span> 	<li><span style="font-size:18px">Eric Enge</span> 	<li><span style="font-size:18px">Navah Hopkins</span> 	<li><span style="font-size:18px">More...</span> </ul>  <p><span style="font-size:18px"><strong>All access pass</strong> for which you can <a target="_blank" rel="nofollow" href="https://events.searchengineland.com/smx-advanced-2025"><u><strong>register here</strong></u></a> includes:</span></p>  <ul> 	<li><span style="font-size:18px">All keynotes, sessions, Q&amp;As, clinics</span> 	<li><span style="font-size:18px">Expo hall</span> 	<li><span style="font-size:18px">Networking</span> 	<li><span style="font-size:18px">Hot breakfasts and lunches</span> </ul>  <p><span style="font-size:18px"><strong>FREE Expo+ pass</strong> includes:</span></p>  <ul> 	<li><span style="font-size:18px">Keynotes, clinics, Solutions/Theater sessions</span> 	<li><span style="font-size:18px">Expo hall</span> 	<li><span style="font-size:18px">Select networking events</span> 	<li><span style="font-size:18px">Refreshments during breaks</span> </ul>  <p><span style="font-size:18px"><strong>All access pass pricing</strong>:</span></p>  <ul> 	<li><span style="font-size:18px">$1295 through 29 March</span> 	<li><span style="font-size:18px">$1445 through 10 May</span> 	<li><span style="font-size:18px">$1595 through 10 June</span> 	<li><span style="font-size:18px">$1795 on-site</span> 	<li><span style="font-size:18px">Group rates are available at up to 20% off.</span> </ul>  <p><span style="font-size:18px"><strong>Expo+ pass</strong> is advertised as FREE but I can find no working registration link. <strong>Registration help</strong> is supposed to be available here:</span></p>  <p style="margin-left:40px"><span style="font-size:18px"><a target="_blank" rel="nofollow" href="mailto:registration@thirddoormedia.com"><u><strong>registration@thirddoormedia.com</strong></u></a></span></p>  <p><span style="font-size:18px"><strong>Conference venue</strong> will be the Westin Boston Seaport District at 425 Summer Street. But this is another thing to which I could find no working link. Hotel phone is 617-532-4600.</span></p>  <p><span style="font-size:18px">Go here for <a target="_blank" rel="nofollow" href="https://searchengineland.com/smx/advanced"><u><strong>sponsorship opportunities</strong></u></a>.</span></p>  <p><span style="font-size:18px"><strong>Comment</strong>: Expo+ pass as advertised should be a great deal, especially for anyone in the Boston area who doesn&#39;t need a hotel room.. </span></p>]]></content:encoded>
</item>

</channel>
</rss>