Last active
January 3, 2016 15:19
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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