Custom Additions Wordpress - LearnPress Plugin
Budget: $14 – $30 NZD
We require the following add actions to be removed from the free learnpress plugin (downloadable from wordpress)
add_action(
'learn-press/course-meta-secondary-left',
LP()->template( 'course' )->callback( 'single-course/meta/level' ),
20
);
AND
add_action(
'learn-press/course-meta-primary-left',
LP()->template( 'course' )->callback( 'single-course/meta/instructor' ),
10
);
You can find these actions in the following file: learnpress\inc\lp-template-hooks.php. These actions are displayed on the front end on the courses page.
This will need to be done using wordpress remove_action (Not using CSS). Please set this up in a separate php file as we will need to add this to a plugin that has already been created.
add_action(
'learn-press/course-meta-secondary-left',
LP()->template( 'course' )->callback( 'single-course/meta/level' ),
20
);
AND
add_action(
'learn-press/course-meta-primary-left',
LP()->template( 'course' )->callback( 'single-course/meta/instructor' ),
10
);
You can find these actions in the following file: learnpress\inc\lp-template-hooks.php. These actions are displayed on the front end on the courses page.
This will need to be done using wordpress remove_action (Not using CSS). Please set this up in a separate php file as we will need to add this to a plugin that has already been created.