Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Add the sample code below to your child theme's functions.php file or in a site specific plugin.
  2.  
  3. ```
  4. <?php
  5. //* Do NOT include the opening php tag
  6.  
  7. //* Add CSS to hide All Registrations CSV Report for non-admins
  8. add_action('admin_head', 'ee_hide_all_registrations_csv_report_non_admins');
  9.  
  10. function ee_hide_all_registrations_csv_report_non_admins() {
  11. global $user_level;
  12. if ($user_level != '10' ) {
  13. echo '<style>a#all-registrations-csv-report.button-primary { display:none; }</style>';
  14. }}
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement