Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mustardBees
Created February 26, 2020 09:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mustardBees/5ae4b8cc32a96b1d30f1a72fabb97a49 to your computer and use it in GitHub Desktop.
Save mustardBees/5ae4b8cc32a96b1d30f1a72fabb97a49 to your computer and use it in GitHub Desktop.
Prevent LearnDash certificates from being edited.
<?php
/**
* Prevent LearnDash certificates from being edited.
*
* @param $pdf
*/
function iweb_learndash_certification_created( $pdf ) {
$pdf->SetProtection( array( 'modify' ), '', '#:EcjN7P(sGjF*6L', 0, null );
}
add_action( 'learndash_certification_created', 'iweb_learndash_certification_created' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment