Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Add style to QRCode scanned url data
  5. */
  6. function woo_vou_allow_admin_to_bcc_func ( $style ) {
  7.  
  8. // Style to remove Email field
  9. return '<style>
  10. .woo_vou_product_details .woo_pdf_vou_main:nth-of-type(3) .woo_vou_padding:nth-of-type(2) {
  11. display: none;
  12. }
  13. </style>';
  14. }
  15.  
  16. // Add filter to add custom css
  17. add_filter ( 'woo_vou_check_qrcode_cstm_style', 'woo_vou_allow_admin_to_bcc_func' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement