By selecting a shell scheme stand you will have everything you need ready when you arrive. Your shell scheme stand will include: • Stand build • Name board • Carpet • Spotlights • 500w power point • Entry in show app • Unlimited exhibitor admission tickets
Explore the show like never before with a interactive map!
Navigating a large event can sometimes be overwhelming, but we’ve made it easier than ever thanks to ConeX Portal! Who onsite this year at Advanced Engineering created a cutting-edge interactive map, designed just like Google Maps, that offers a detailed walk-through of the entire show.
This detailed map gives you a real-time, interactive preview of the show floor. Get ready to explore how Advanced Engineering 2025 will be laid out and start planning your experience in advance with this innovative tool!
Find out why professionals across the industry consider Advanced Engineering a must-attend
"Advanced Engineering is a must-attend for anyone in manufacturing. It’s the perfect place to understand the challenges, explore key themes, and discover the latest innovations. The event has a great buzz, giving a clear picture of the status of UK manufacturing while creating meaningful connections and offering the convenience of catching up with clients and contacts all in one space."
"I came to Advanced Engineering out of curiosity, its a great opportunity to explore what smaller companies are doing and have meaningful conversations in a relaxed, low-pressure environment."
"Advanced Engineering is where the best of the best come together. Unlike other shows, it brings together top industry leaders, truly the best in the business!"
"This will be my 10th year attending Advanced Engineering. It’s the best place to connect with suppliers and witness the constant advancements in composites. It’s always great to attend and see what everyone else is working on."
"This is my second year at Advanced Engineering, and I’m still amazed by the incredible innovations in the automotive industry showcased here. As someone with an automotive background, it’s especially exciting to see the F1 cars, it’s a real highlight of the event!"
"This is my first time at Advanced Engineering. The event feels incredibly vibrant and much busier than other exhibitions, which is great to see. There’s a strong focus on manufacturing and technology in the UK, and the high footfall sets it apart from other shows. I also love the mix of forums and stands, it offers a great balance."
document.addEventListener("DOMContentLoaded", function() {
const tab1 = document.getElementById('top-tab-1');
const tab2 = document.getElementById('top-tab-2');
// 1. Read the url parameter marker (?view=exhibitor) directly from the address bar
const urlParams = new URLSearchParams(window.location.search);
let currentView = urlParams.get('view');
// 2. If no URL parameter exists yet, check the page name to determine the default section
const currentPath = window.location.pathname;
// Auto-detect explicit Exhibitor pages (Add any explicit exhibitor slugs here)
if (!currentView) {
if (currentPath.includes('/advanced-engineering-exhibitors') ||
currentPath.includes('/exhibit') ||
currentPath.includes('/sponsorship')) {
currentView = 'exhibitor';
} else {
currentView = 'visitor'; // Default fallback
}
}
// 3. Highlight the correct top tab based on the final decision
if (currentView === 'exhibitor' && tab2) {
if (tab1) tab1.classList.remove('active-tab');
tab2.classList.add('active-tab');
} else if (tab1) {
if (tab2) tab2.classList.remove('active-tab');
tab1.classList.add('active-tab');
}
// 4. Force all navigation links to remember this view state across page reloads
// This dynamically appends ?view=exhibitor or ?view=visitor to links before they are clicked
if (currentView) {
document.querySelectorAll('a').forEach(link => {
const href = link.getAttribute('href');
// Avoid altering external domains, anchor tags, or javascript links
if (href && href.startsWith('http') && href.includes(window.location.hostname) && !href.includes('#')) {
try {
const linkUrl = new URL(href);
linkUrl.searchParams.set('view', currentView);
link.setAttribute('href', linkUrl.toString());
} catch (e) {
// Fail-safe for malformed URL strings
}
} else if (href && href.startsWith('/') && !href.includes('#')) {
// Handle relative root links (e.g., /our-vision/)
const separator = href.includes('?') ? '&' : '?';
link.setAttribute('href', href + separator + 'view=' + currentView);
}
});
}
});