Browse: Home / Snippets /

Hide Open course option from Course Access metabox

Contents


Snippet #

Important: All snippets are provided as-is without support or guarantees. These snippets are provided as guidelines for advanced users looking to customize LearnDash. For any additional help or support with these snippets, we recommend reaching out to a LearnDash Expert.

add_action('admin_head', 'my_custom_css');

function my_custom_css() {
  echo '<style>
    #learndash-course-access-settings_course_price_type_field > span:nth-child(2) > div:nth-child(1) > fieldset:nth-child(1) > p:nth-child(2) {
      display: none;
    } 
	#learndash-course-access-settings_course_price_type_field > span:nth-child(2) > div:nth-child(1) > fieldset:nth-child(1) > p:nth-child(3) {
	display: none;
	}
  </style>';
}