Documentation
Configuration - Front Pages - Helper Pages
This section only applies if the module Webbookings is active.

A detailed customer page with the information of a single individual activity.

A product detail page is used to provide more in-depth information about a product. This may include specific product characteristics or on which days a particular product is available.

From this product detail page, it is possible to make a reservation for a product.

URLs

Product detail page with selected product
DOMAINNAME/front.php?mod=objects&configid=#ID

From the product list (product detail page without selected product)
DOMAINNAME/front.php?mod=viewobject&object_id=[id]

Example

For motorcycle rentals, this page can be used to display the specifications of a motorcycle. This may include engine capacity, horsepower, and top speed. In addition to this information, a calendar can be added to allow direct reservation of this motorcycle.

Structured Data

On this page, you can provide information to search engines in the form of structured data.

Course structure

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "{event attribute=desc id=[ID]}",
"description": "{event attribute=desc id=[ID]}",
"provider": {
"@type": "Organization",
"name": "TEQA i-Reserve course demonstration",
"sameAs": "https://i-reserve.nl"
}
}
</script>

Event structure

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Jan Lieberman Concert Series: Journey in Jazz",
"startDate": "2017-04-24T19:30-08:00",
"location": {
"@type": "Place",
"name": "Santa Clara City Library, Central Park Library",
"address": {
"@type": "PostalAddress",
"streetAddress": "2635 Homestead Rd",
"addressLocality": "Santa Clara",
"postalCode": "95051",
"addressRegion": "CA",
"addressCountry": "US"
}
},
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"description": "Join us for an afternoon of Jazz with Santa Clara resident and pianist Andy Lagunoff. Complimentary food and beverages will be served.",
"endDate": "2017-04-24T23:00-08:00",
"offers": {
"@type": "Offer",
"url": "https://www.example.com/event_offer/12345_201803180430",
"price": "30",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"validFrom": "2017-01-20T16:20-08:00"
},
"performer": {
"@type": "PerformingGroup",
"name": "Andy Lagunoff"
}
}
</script>

See the Google developer page for more information

Knowledge of HTML is required to be able to use this plugin effectively.