This guide provides detailed instructions on how to customize LearnPress templates to match your website’s design without modifying the core plugin files.
Understanding Template Structure
LearnPress uses a template system similar to WordPress, allowing you to override the default templates by copying them to your theme.
Template Locations
LearnPress templates are located in the /learnpress/templates/
directory of the plugin. The main template folders include:
content-course
– Templates for displaying course contentcontent-lesson
– Templates for displaying lesson contentcontent-quiz
– Templates for displaying quiz contentprofile
– Templates for user profilescheckout
– Templates for the checkout processsingle-course
– Templates for single course pagesarchive-course
– Templates for course archive pagesloop
– Templates for course loops in archives and shortcodes
How to Override Templates
To override a LearnPress template:
- Create a folder called
learnpress
in your theme directory - Copy the template file you want to modify from
/wp-content/plugins/learnpress/templates/
to/wp-content/themes/your-theme/learnpress/
- Maintain the same folder structure as in the original plugin
- Modify the copied template file as needed
Example: Overriding the Course Content Template
If you want to customize how course content is displayed:
- Copy
/wp-content/plugins/learnpress/templates/content-course.php
- Paste it to
/wp-content/themes/your-theme/learnpress/content-course.php
- Edit the file to make your changes
Note: When updating LearnPress, your customized templates in the theme directory will not be overwritten. However, you should review the original templates after updates to incorporate any new features or improvements.
Template Hierarchy
LearnPress follows a template hierarchy similar to WordPress:
- First, it looks for a template in
/wp-content/themes/your-child-theme/learnpress/
(if using a child theme) - Then, it looks in
/wp-content/themes/your-theme/learnpress/
- Finally, it uses the default template from
/wp-content/plugins/learnpress/templates/
Common Templates to Override
Course Archive Templates
To customize how courses are displayed in archive pages:
archive-course.php
– Main template for course archivesloop/course/loop-begin.php
– Beginning of course looploop/course/loop-end.php
– End of course looploop/course/content.php
– Content of each course in the loop
Single Course Templates
To customize how a single course is displayed:
single-course.php
– Main template for single coursesingle-course/title.php
– Course titlesingle-course/content.php
– Course contentsingle-course/tabs/tabs.php
– Course tabssingle-course/tabs/overview.php
– Course overview tabsingle-course/tabs/curriculum.php
– Course curriculum tabsingle-course/tabs/instructor.php
– Course instructor tabsingle-course/price.php
– Course pricesingle-course/buttons.php
– Course action buttons
Profile Templates
To customize user profile pages:
profile/profile.php
– Main profile templateprofile/tabs/courses.php
– User’s courses tabprofile/tabs/quizzes.php
– User’s quizzes tabprofile/tabs/orders.php
– User’s orders tab
Practical Examples
Example 1: Customizing Course Grid Layout
To change how courses are displayed in a grid:
- Copy
/wp-content/plugins/learnpress/templates/loop/course/content.php
to/wp-content/themes/your-theme/learnpress/loop/course/content.php
- Edit the file to modify the HTML structure
Modified content.php Example
<?php
/**
* Template for displaying course content within the loop.
*
* @author ThimPress
* @package LearnPress/Templates
* @version 4.0.0
*/
defined( 'ABSPATH' ) || exit();
$course = learn_press_get_course();
if ( ! $course ) {
return;
}
?>
<div class="custom-course-card">
<div class="course-thumbnail">
<a href="<?php echo esc_url( get_the_permalink() ); ?>">
<?php echo $course->get_image( 'large' ); ?>
</a>
<div class="course-price">
<?php echo $course->get_price_html(); ?>
</div>
</div>
<div class="course-content">
<h3 class="course-title">
<a href="<?php echo esc_url( get_the_permalink() ); ?>">
<?php echo $course->get_title(); ?>
</a>
</h3>
<div class="course-meta">
<span class="course-instructor">
<i class="fas fa-user"></i>
<?php echo $course->get_instructor_name(); ?>
</span>
<span class="course-students">
<i class="fas fa-user-graduate"></i>
<?php echo $course->get_users_enrolled(); ?> students
</span>
</div>
<div class="course-excerpt">
<?php echo $course->get_short_description(); ?>
</div>
<div class="course-footer">
<a class="course-detail-link" href="<?php echo esc_url( get_the_permalink() ); ?>">
View Course
</a>
</div>
</div>
</div>
Example 2: Customizing the Course Curriculum
To change how the course curriculum is displayed:
- Copy
/wp-content/plugins/learnpress/templates/single-course/tabs/curriculum.php
to/wp-content/themes/your-theme/learnpress/single-course/tabs/curriculum.php
- Edit the file to modify the curriculum display
Example 3: Customizing the Profile Page
To change the layout of the profile page:
- Copy
/wp-content/plugins/learnpress/templates/profile/profile.php
to/wp-content/themes/your-theme/learnpress/profile/profile.php
- Edit the file to modify the profile layout
Using Custom CSS with Templates
In addition to modifying template files, you can use custom CSS to style LearnPress elements:
Example: Adding Custom CSS
// Add to functions.php
function add_learnpress_custom_css() {
wp_enqueue_style('learnpress-custom', get_stylesheet_directory_uri() . '/css/learnpress-custom.css');
}
add_action('wp_enqueue_scripts', 'add_learnpress_custom_css');
Then create a file at /wp-content/themes/your-theme/css/learnpress-custom.css
with your custom styles:
/* Custom LearnPress Styles */
.course-curriculum ul.curriculum-sections .section-content .course-item {
padding: 15px;
border-bottom: 1px solid #f0f0f0;
}
.learn-press-courses .course {
box-shadow: 0 0 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.learn-press-courses .course:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
Best Practices
- Use a child theme for your customizations to prevent losing changes during theme updates
- Only override the templates you need to change, not all templates
- Keep track of your changes so you can reapply them after LearnPress updates
- Check for template changes after updating LearnPress
- Use version control (like Git) to manage your template customizations
Warning: Always use a child theme for template overrides. Avoid editing the parent theme directly, as your changes will be lost when the theme is updated.
Conclusion
By overriding templates, you can extensively customize the appearance of LearnPress without modifying the core plugin files. This approach ensures that your customizations will not be lost when updating the plugin.
Need more help? Refer to the LearnPress Hooks and Filters documentation for information about programmatically customizing LearnPress functionality.