Skip to content

Instantly share code, notes, and snippets.

@lscoates
Created September 12, 2016 16:01
Show Gist options
  • Save lscoates/5ef4b3bed2cc1cb92e49d2f276f91696 to your computer and use it in GitHub Desktop.
Save lscoates/5ef4b3bed2cc1cb92e49d2f276f91696 to your computer and use it in GitHub Desktop.
// Just put what you want the setup fee text to be in the PLACE TEXT HERE placeholder
function changeSetupFee() {
var setupfee = $("#summary-setup-fee .plan__summary-table-row-label");
var text = setupfee.text().replace('Setup Fee', 'PLACE TEXT HERE');
setupfee.text(text);
};
$(document).bind("afterSummaryRefresh", changeSetupFee);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment