Amplify aims to provide the best customer support throughout each stage of your journey, whether you are exploring our programs for the first time or are a long-term partner. At the start of every implementation, Amplify provides a single point of contact to help you get started.
Our Amplify help center is available 24/7 for you to find answers to your most pressing questions. Simply navigate to https://service.amplify.com/s/help and click a collection to view a list of related articles. Worried there’s a system outage? Click Amplify system status to check real-time information about your Amplify services and programs.
Need help fast? Try live chat!
—
Our chat agents are standing by to assist you! Simply login at learning.amplify.com and click the orange button in the bottom right corner to chat live with our support team. Our support hours are Monday through Friday, 7 a.m. to 7 p.m. ET.
Ready to submit an order or pay an invoice? We strive to provide a seamless purchasing experience. Visit our ordering support site to learn more about your payment options, or contact your dedicated account executive.
After your purchase has been processed, a member of our Customer Success team will guide you through your onboarding, including professional development, materials delivery, digital setup, and implementation launch.
Contact a representative
Thank you!
—
Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
');
$($form).find(`.first-col [id^="label-${checkboxClass}"]`).parents('fieldset').remove();
}
let list_items = $($form).find(`[id^="label-${checkboxClass}"]`).siblings('.input').find('ul.inputs-list li');
if($($form).hasClass('program_interest_two-row') && window.innerWidth > 1100 && list_items.length !== 0){
moveProgramInterest();
}
if ($($form).attr('id') === `hsForm_${formIDCode}`) {
$($form).find(`.hs_${checkboxClass} ul.inputs-list`)[0].setAttribute('aria-label', 'Program interests of checkboxes');
$($form).find(`.hs_${checkboxClass} ul.inputs-list`)[0].setAttribute('role', 'group');
$($form).find(`.hs_${checkboxClass} #label-${checkboxClass}-${formIDCode} span`)[0].setAttribute('aria-hidden', true);
}
// set aria-checked and click handler for all checkboxes in the form
$form.find('.hs-form-checkbox[role="checkbox"]').each(function(index, element){
$(element).removeAttr('role');
const checkboxElement = $(element).find('input[type="checkbox"]');
checkboxElement.attr('role', 'checkbox');
checkboxElement.attr('aria-checked', false);
$(element).on('click', (e) => {
const currentTarget = $(e.currentTarget);
const checkbox = currentTarget.find('input[type="checkbox"]');
const isChecked = checkbox.prop('checked');
checkbox.attr('aria-checked', isChecked);
});
});
var zipField = $($form).find('[name="zip"]');
zipField.attr('maxlength','12');
var manualSchoolSubmissionField = $($form).find('input[name="company"]');
// Hide "New School" field by default. Only show if selected from dropdown
var manualSchoolSubmissionGroup = manualSchoolSubmissionField.closest('fieldset');
manualSchoolSubmissionGroup.hide();
// Zip Code Field filled out
zipField.on('change, input', function() {
// Perform ajax only if 5 letters are typed
if (this.value.length > 4 && this.value.length < 20) {
$('body').addClass('is-loading');
// Avoid duplicating. Remove
$($form).find('.js-form-group__select.js-form-group__hs').remove();
manualSchoolSubmissionGroup.hide();
var zip_code = zipField.val();
var apiURL = window.location.origin + '/wp-json/amp/v1/schools/' + zip_code;
$.ajax({
type: 'GET',
url: apiURL,
success: function(data) {
// Avoid duplicating after ajax. Remove
$($form).find('.js-form-group__select.js-form-group__hs').remove();
manualSchoolSubmissionGroup.hide();
// Sometimes this returns an error if the zip code isn't valid. This is a secondary check
if (data.status == 'error') {
var html = '
'
} else {
var html_dropdown = data['html_schools'];
var html = '
'+html_dropdown+'
'
}
zipField.closest('fieldset').after(html);
// Dropdown on change
$($form).find('.js-hs-select-schools').change(function(){
var selectedSchoolId = $(this).val();
// If school isn't listed, fill/show in the new school field
if (selectedSchoolId == 'none') {
manualSchoolSubmissionGroup.show();
} else {
manualSchoolSubmissionGroup.hide();
manualSchoolSubmissionField.val('');
}
});
$('body').removeClass('is-loading');
},
error: function(xhr, status, text) {
console.log(xhr, status, text);
manualSchoolSubmissionGroup.show();
$('body').removeClass('is-loading');
}
});
}
});
$form.find('input[type=submit]').click((e) => {
if($form.find('#schools_by_zip').length){
if(!$form.find('#schools_by_zip').val()){
e.preventDefault();
$('#custom-select-school').find('.hs-error-msgs').remove();
$form.find('#custom-select-school').append('