Overview
AndanDo’s tour creation system uses a multi-step wizard that guides you through building a complete tour package. The system handles everything from basic information to advanced pricing configurations.All tours start in draft mode and must pass validation before going live on the marketplace.
Creating Your First Tour
Access the Tour Creation Form
Navigate to
/tours/new in your dashboard. The system will check your authentication status and load the multi-step wizard.Complete the 5-Step Process
The tour creation wizard consists of five main steps:
- Step 1: General Information
- Step 2: Location & Hero Details
- Step 3: Itinerary & FAQs
- Step 4: Ticket Types & Extras
- Step 5: Review & Publish
Step 1: General Information
The first step collects core tour details that will be stored in theTour table.
Required Fields
Tour Title
The main display name for your tour. Should be descriptive and engaging.Example: “Amazing Paris Experience”
Location Label
Where your tour takes place. Used for filtering and display.Example: “Paris, France”
Start Date
When your tour begins. This is mandatory for marketplace visibility.Uses
datetime-local input for precise scheduling.End Date
When your tour ends. Also mandatory for proper date range filtering.Stored in the
TourFechas table.Tour Description
Short Description
Short Description
A brief summary (2-3 sentences) that appears in tour cards on the marketplace.
Full Description (HTML)
Full Description (HTML)
The complete tour overview that supports HTML formatting for rich content.Supported HTML tags:
<p>, <h3>, <ul>, <li>, <strong>, <em>, <br>Image Upload
Tours require high-quality images in horizontal aspect ratio (~1920x1080).Validation
The system validates:
- File formats: JPG, JPEG, PNG
- Aspect ratio warnings for non-horizontal images
- File size limits
Tour Activation Settings
Toggle Options
Tour Active
Controls whether the tour appears on the marketplace.Default:
false (inactive/draft)Instant Preview
Shows a snapshot view on the homepage slider.Use case: Featured/promotional tours
AI-Assisted Content Generation
AndanDo includes AI integration to help generate professional tour content.How to Use AI Assistance
How to Use AI Assistance
Click the AI chip button (⚡ IA) next to any text field:Available for:
- Tour titles
- Short descriptions
- Full HTML descriptions
- Itinerary step content
Creating a Tour via API
The tour creation process calls theTourService.CreateTourAsync method:
The stored procedure
sp_Tour_Insert returns the new TourId which is used to link all subsequent tour details (ticket types, itinerary, FAQs, etc.).Data Structure
Tour creation uses theTourRegistrationRequest record:
Next Steps
Tour Details
Add itinerary, FAQs, and inclusions to your tour
Ticket Types
Configure ticket types and capacity management
Pricing
Set up pricing strategies and payment options
Extras & Add-ons
Create optional extras to increase revenue
Common Issues
Tour not appearing on marketplace
Tour not appearing on marketplace
Ensure:
IsActiveis set totrue- Start and end dates are configured
- At least one ticket type is created
- All required fields are filled
Image upload fails
Image upload fails
Check:
- File format is JPG, JPEG, or PNG
- File size is under the limit (typically 5MB)
- Upload directory has write permissions
- Image dimensions are reasonable (< 4K resolution)
Cannot save tour
Cannot save tour
Verify:
- You’re authenticated as a host
- Network connection is stable
- All mandatory fields are completed
- No validation errors in the form