• Resolved Plugin Results

    (@plugin-results)


    Within the email that is sent with the certificate attached, there is a sentence “Your certificate is attached with this email.” that is generated automatically.
    This is a french only website, and I do not need this sentence. How can I remove it without it being overwritten by a plugin update?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Uncanny Owl

    (@uncannyowl)

    Hi @plugin-results ,

    We have filters you can use to remove that text from our emails. Depending on which email module you mean, you can add these respective snippets to the bottom of the functions.php file of your child theme:

    For quiz certificate emails:
    add_filter( ‘uo_quiz_completion_add_certificate_attached’, ‘__return_false’ );

    For course certificate emails:
    add_filter( ‘uo_course_completion_add_certificate_attached’, ‘__return_false’ );`

    Let us know if you still see any issues after these changes.

    Thread Starter Plugin Results

    (@plugin-results)

    Thank you! That did the trick.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove default sentence from certificate email’ is closed to new replies.