Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created August 7, 2017 16:39
Show Gist options
  • Save thomasplevy/f17f12986a459d397c7082bfa96aab72 to your computer and use it in GitHub Desktop.
Save thomasplevy/f17f12986a459d397c7082bfa96aab72 to your computer and use it in GitHub Desktop.
<?php
/**
* Output a custom message before / after LLMS reviews
*/
function my_custom_reviews_message() {
?>
<!-- put custom html below this line -->
<p>My custom message goes here</p>
<!-- put custom html above this line -->
<?php
}
add_action( 'lifterlms_single_course_after_summary', 'my_custom_reviews_message', 99 ); // change "99" to "101" to but the message below the reviews content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment