Skip to content

Instantly share code, notes, and snippets.

@makfruit
Created October 1, 2012 08:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makfruit/3810429 to your computer and use it in GitHub Desktop.
Save makfruit/3810429 to your computer and use it in GitHub Desktop.
A drop-in script for Ecwid for populating the order comments section with custom text
if (typeof(Ecwid) == 'object') {
Ecwid.OnPageLoaded.add(function(page) {
if ('CHECKOUT_PAYMENT_DETAILS' == page.type) {
jQuery('.ecwid-PaymentCommentsBlock-textarea').val('here goes the text');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment