Skip to content

Instantly share code, notes, and snippets.

@johnbocook
Last active January 3, 2016 15:19
Show Gist options
  • Select an option

  • Save johnbocook/8482270 to your computer and use it in GitHub Desktop.

Select an option

Save johnbocook/8482270 to your computer and use it in GitHub Desktop.
Hides Brown Paper Tickets Donation text - Placed in the event's custom header section, it searches for the donation text on the checkout page and hides it.
<script type="text/javascript">
$(document).ready(function() {
var url = window.location.href;
if (url.search("checkout.html") >= 0) {
$('td:contains("A portion of Brown Paper Tickets profits"):last').hide();
$('td:contains("This sale should benefit "):last').parent().hide();
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment