Changing text during campaign creation

AE_2020

Member
I want to change the creation step “Template” to “Content,” without it getting overwritten every upgrade. Is there a way to do this?
 
@Nick Thacke - The easiest solution is to create a file called app-custom.js in /customer/assets/js with following content:
Code:
jQuery(document).ready(function($){
    if ( $('.box-footer .wizard .steps').length ) {
       $('.box-footer .wizard .steps li:eq(2) a').text('Content');
    }
});
It should do the trick just fine...
 
Awesome, thanks! Works great except on the first step... when you first create a campaign, during the first step the Breadcrumbs still list "Template" as the third step. Everything else works!
 
Back
Top