Quote from
Asgaros on February 12, 2018, 6:44 pm
Hello @mrfresh
You can add custom output to certain views with a code like this:
function custom_content() {
if (!is_user_logged_in()) {
echo 'My custom content ...';
} else {
echo 'Welcome!';
}
}
add_action('asgarosforum_overview_custom_content_top', 'custom_content');
Just add it to your themes functions.php-file.
Hello @mrfresh
You can add custom output to certain views with a code like this:
function custom_content() {
if (!is_user_logged_in()) {
echo 'My custom content ...';
} else {
echo 'Welcome!';
}
}
add_action('asgarosforum_overview_custom_content_top', 'custom_content');
Just add it to your themes functions.php-file.