This section will explain how to create a certificate. Please see our other docs for associating them with a course, group, or quiz.
NOTE: An easier way to create certificates is using our Certificate Builder Add-on. You can easily build certificates using the Gutenberg Block Builder using the Add-on.
You’ll be directed to a new screen where you can start creating your certificate. Here’s an overview of each type of information that can be added to your certificate.
The certificate title is only for internal use. Your users will not see this title, but it will be the name that appears in dropdown menus when you go to apply it to a Course, group or quiz. Be sure to name it something you’ll recognize.
Adding a featured image is the way in which you apply a design, or style, to your certificate.
.jpg
images, no more than 1MB in size. This also keeps your loading time to a minimum.To add a featured image:
KNOWN ISSUES: Some image optimization plugins are known to cause issues with certificate images, especially the SG Optimizer plugin from SiteGround. If your images are distorted, or contain large areas of all black, please disable image optimization for the images you’re using for certificates.
You can use any image creation or editing program you’d like, hire a designer or use images from a graphics library (please check the license to make sure you have permission). Here are a few suggestions:
Your certificate content will mostly consist of dynamic fields that are generated for each individual user who is awarded a certificate. For example:
These types of dynamic fields are inserted via shortcodes. We have an entire article dedicated to certificate shortcodes here
When adding your certificate content, you’ll need to use some HTML & CSS to set up the overall layout, spacing, sizing, etc. We’ll walk you through some common layouts below, and how to achieve various designs.
If you know your way around CSS codes and styles, you can add your own custom CSS stylesheet to apply globally to all of your certificates.
You can find it here:
By adding your own custom CSS styles, you eliminate the need to constantly re-type and re-style all of the elements that you add to your certificates. You can easily assign classes and IDs to these elements (e.g. paragraphs, shapes, and headings) and then add the styles that will apply globally to all your certificates. This will help you stay on brand.
NOTE: The Certificate Custom Styles (CSS) is only applicable to legacy certificates, e.g., certificates created using the method stated above. These styles will not be applied to certificates created using the Certificate Builder Add-On.
You might want to insert the Course title at the top of a certificate, the user’s name in the middle, maybe at a completion date at the bottom, etc. One of the best ways to control vertical spacing, and move content up or down on your certificate, is to use the line-height
property.
Wherever you need to insert some blank vertical space, you can use the following code:
<p style="line-height:20px;"></p>
This would add 20 pixels of vertical space. You can adjust the 20px
to another value. Since our final certificate uses inches, not pixels, you’ll need to play around with this value to achieve your desired result. (see below for previewing certificates)
You can insert as many of these spacers as you need throughout the certificate.
There are a few ways to go about horizontal spacing.
If you need to center your text in the middle of the certificate, you can use text-align:center;
. Here’s an example of the user’s first name, centered horizontally:
<p style="text-align:center;">[usermeta field="first_name"]</p>
By default, all text will be aligned to the left edge of the certificate (right edge for RTL languages). If you need to indent something, you can use the text-indent
property. Here’s an example of the Course completion date being pushed vertically towards the bottom of the page, then indented to move it to the far-right corner.
<p style="line-height:150px;"></p>
<p style="text-indent:200px;">[courseinfo show="completed_on" format="F j, Y"]</p>
You’ll need to adjust the 150px
and 200px
values to match up with your certificate image.
You can also adjust the font size of any text. Let’s say you wanted your user’s first & last name to be quite large (30px
), then a small vertical space (10px
), and then the Course title not quite as large as the name (20px
), you could do this:
<p style="font-size:30px;">[usermeta field="first_name"] [usermeta field="last_name"]</p>
<p style="line-height:10px;"></p>
<p style="font-size:20px;">[courseinfo show="course_title"]</p>
Different computers come pre-installed with different fonts. Some users will have a font installed, and others might not. So there isn’t a ton of flexibility with using custom fonts in certificate creation. However, you can switch between serif and sans-serif fonts, as both should work for most of your users. Here’s an example using a generic serif font:
<p style="font-family:serif;"></p>
You can adjust the color of any text on your certificate. If your image has a dark background, you can use the color
property to make your text white.
<p style="color:#ffffff;"></p>
You can combine multiple properties at the same time. If you wanted to indent the user’s first and last name, adjust the font size, and change the color to red, it would look like this:
<p style="text-indent:20px;font-size:30px;color:red;">[usermeta field="first_name"] [usermeta field="last_name"]</p>
There are a few additional options you can set for your certificate.
Choose between the following options:
Choose between the following options:
When a user earns a certificate, either by completing a Course or passing the certificate threshold for a quiz, they’ll be able to download it in PDF format. All LearnDash certificates are provided as a .PDF
file.
When a user clicks a button to get their certificate, some web browsers will open the PDF file in the browser, and others might download the file to the user’s computer. Whatever the default behavior for that user’s browser is, that’s how LearnDash certificates will behave as well.
Before applying your certificate to a Course or quiz, you’ll want to preview it so you can see how it looks. You can create a quick test quiz that is only used for previewing your certificate.
Alternatively, you could create a test Course with only one Lesson. Then you’d mark that Lesson complete, and you’d be able to view your certificate that way.
This will open your certificate in a new tab so you can preview it. Keep this tab open, and each time you make a change to your certificate in the backend, simply refresh this page and the updated version of your certificate will be loaded.
NOTE: Don’t forget to delete this quiz (or Course) when you’re finished testing your certificate.
Users who have earned certificates from courses and quizzes can redownload them by visiting the courses that they took. Upon opening those courses and quizzes, they will see a message that says “You have earned a certificate” and a button to view or download the certificate.
This will also appear on the profile page when you use the shortcodeld-profile
.
In this webinar, we demonstrate how to create a certificate from beginning to end. Includes best practice advice and helpful tips for creating dynamic content.
NOTE: An easier way to create certificates is using our Certificate Builder Add-on. You can easily build certificates using the Gutenberg Block Builder using the Add-on.