Embark on a spiritual journey in our Church Building Design at Apete Area, Ibadan. This project embodies architectural excellence, creating a sacred space that harmonizes beauty with functionality. Located in the vibrant Apete Area, it offers a sanctuary for worship and community gatherings, designed to inspire and uplift.
WhatsApp us
jQuery(function($) {
// Store which presentation the visitor selected
$(document).on('click', '[data-presentation]', function() {
const presentation = $(this).attr('data-presentation');
sessionStorage.setItem(
'vicon_selected_presentation',
presentation
);
});
// Run after the Elementor form has been successfully submitted
$(document).on('submit_success', function(event, response) {
const presentation =
sessionStorage.getItem('vicon_selected_presentation');
if (!presentation) {
return;
}
// Match presentation IDs to their PDF files
const presentations = {
residential:
'https://vicondesign.com/wp-content/uploads/2026/08/1ST-Lere-Adigun-Duplex-Architectural-Presentation.pdf',
commercial:
'https://YOURDOMAIN.com/wp-content/uploads/2026/08/modern-commercial.pdf',
luxury:
'https://YOURDOMAIN.com/wp-content/uploads/2026/08/luxury-residential.pdf'
};
const pdfUrl = presentations[presentation];
if (!pdfUrl) {
return;
}
// Give Elementor a moment to finish processing the form
setTimeout(function() {
const downloadLink = document.createElement('a');
downloadLink.href = pdfUrl;
downloadLink.download = '';
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);
// Remove stored presentation
sessionStorage.removeItem(
'vicon_selected_presentation'
);
}, 500);
});
});