Forum breadcrumbs – You are here:Asgaros Support ForumSupportOverview
Please or Register to create posts and topics.

Overview

How do I add text in the “Overview” section?

Hello,

you can add the following code to your themes functions.php file to add custom content to the upper area of the overview:

function custom_content() {
  echo 'My custom content ...';
}
add_action('asgarosforum_overview_custom_content_top', 'custom_content');

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!