A AE_2020 Member Jan 14, 2020 #1 I want to change the creation step “Template” to “Content,” without it getting overwritten every upgrade. Is there a way to do this?
I want to change the creation step “Template” to “Content,” without it getting overwritten every upgrade. Is there a way to do this?
twisted1919 Administrator Staff member Jan 15, 2020 #2 @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...
@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...
A AE_2020 Member Jan 16, 2020 #3 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!
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!
twisted1919 Administrator Staff member Jan 17, 2020 #4 I dunno, i tested and it works in all of them, maybe it's some caching issue?