Learn a litte bit more about Allura Medical Aesthetics and Surgery
Our Clinic is located in the heart of Dieppe, New Brunswick, providing our services to the Atlantic Provinces. We offer surgical and non-surgical treatments. Dr. Ali Husain and his team work together to ensure you have the best experience.
Both men and women seek our services to restore and rejuvenate their aesthetic features. We are a full-service office with expertise in a variety of both surgical and non-surgical services. We take great pride in our office with your safety and satisfaction as our number one priority.
To request a consultation, we invite you to complete our online form or give us a call- we’d love to talk with you!
BOOK A CONSULTATION
Want to chat with our experts?
If you are wondering which surgical procedure would best meet your aesthetic goals, book in for a consultation with our board certified plastic surgeon. Please click below!
BOOK A CONSULTATION
jQuery(document).ready(function() {
// Check if we're on the /shop/ page and if there's a query string
if (window.location.pathname === '/shop/' && window.location.search) {
// Get the text after "?" in the URL
let queryText = window.location.search.substring(1);
// Check if 'vivier' or 'skinceuticals' exists in the query string
if (queryText.includes('vivier')) {
jQuery('.site-hero__title').text('Shop Vivier');
}
if (queryText.includes('skinceuticals')) {
jQuery('.site-hero__title').text('Shop SkinCeuticals');
}
}
});
document.addEventListener('DOMContentLoaded', function () {
const utmParams = [
'utm_source',
'utm_medium',
'utm_campaign',
'utm_content',
'utm_term'
];
// Save UTMs from URL
const urlParams = new URLSearchParams(window.location.search);
utmParams.forEach(param => {
const value = urlParams.get(param);
if (value) {
sessionStorage.setItem(param, value);
}
});
// Populate Gravity Forms fields
document.addEventListener('gform_post_render', function () {
utmParams.forEach(param => {
const field = document.querySelector(
'input[name="' + param + '"]'
);
if (field) {
field.value = sessionStorage.getItem(param) || '';
}
});
});
});
(function ($) {
if (typeof window.alcUtm === "undefined") {
return;
}
var config = window.alcUtm;
var prefix = config.cookiePrefix || "alc_";
function getCookie(name) {
var match = document.cookie.match(
new RegExp(
"(?:^|; )" + name.replace(/[.*+?^${}()|[\]\\]/g, "\\$&") + "=([^;]*)",
),
);
return match ? decodeURIComponent(match[1]) : "";
}
function getStored(param) {
return getCookie(prefix + param) || "";
}
function clearUtmCookies() {
(config.params || []).forEach(function (param) {
document.cookie =
prefix +
param +
"=; path=/; max-age=0; SameSite=Lax" +
(location.protocol === "https:" ? "; Secure" : "");
});
}
function populateForm(formId) {
var fields = (config.forms && config.forms[formId]) || [];
fields.forEach(function (field) {
var value = getStored(field.inputName);
if (!value) return;
var input = document.getElementById(field.inputId);
if (input) {
input.value = value;
}
});
var form = document.getElementById("gform_" + formId);
if (!form) return;
var fieldValuesInput = form.querySelector(
'input[name="gform_field_values"]',
);
if (!fieldValuesInput) return;
var values = new URLSearchParams(fieldValuesInput.value || "");
fields.forEach(function (field) {
var value = getStored(field.inputName);
if (value && !values.get(field.inputName)) {
values.set(field.inputName, value);
}
});
fieldValuesInput.value = values.toString();
}
$(document).on("gform_post_render", function (event, formId) {
populateForm(formId);
});
$(document).on("gform_confirmation_loaded", function () {
clearUtmCookies();
});
})(jQuery);