Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <?php
  2. //* Please do NOT include the opening php tag, except of course if you're starting with a blank file
  3.  
  4. add_action( 'wp_enqueue_scripts', 'rc_ee_hide_custom_questions_convention', 99 );
  5. function rc_ee_hide_custom_questions_convention() {
  6. wp_add_inline_script(
  7. 'single_page_checkout',
  8. 'jQuery( document ).ready( function( $ ) {
  9. if($("#spco-attendee_information-dv").find(".spco-attendee-ticket-910").length !== 0) {
  10. $(".ee-reg-qstn-34-input-dv").hide();
  11. }
  12. });'
  13. );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement