Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/apps/dashboard/src/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export const NEVE_PLUGIN_ICON_MAP = {
'wp-cloudflare-page-cache': LucideTimer,
'feedzy-rss-feeds': LucideRss,
'hyve-lite': LucideBotMessageSquare,
'learning-management-system': LucideGraduationCap,
// 'sparks'
};

Expand Down
4 changes: 4 additions & 0 deletions inc/admin/dashboard/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,10 @@ private function get_recommended_plugins() {
'title' => 'Feedzy',
'description' => __( 'RSS feeds aggregator and content curator', 'neve' ),
],
'learning-management-system' => [
'title' => 'Masteriyo',
'description' => __( 'LMS plugin to create and sell online courses', 'neve' ),
],
];

if ( is_php_version_compatible( '8.1' ) ) {
Expand Down
2 changes: 2 additions & 0 deletions inc/admin/dashboard/plugin_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ public function get_plugin_path( $slug ) {
return $slug . '/wp-cloudflare-super-page-cache.php';
case 'wp-full-stripe-free':
return $slug . '/wp-full-stripe.php';
case 'learning-management-system':
return $slug . '/lms.php';
default:
return $slug . '/' . $slug . '.php';
}
Expand Down
Loading