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

Unread topics plug in

Thomas,

Some time ago you had a plug in that moved Unread Topics to the menu bar.  I can’t find it now.  I thought it was rolled into a previous release but I seem to be missing the setting.  Can you point me in the right direction?

Thanks!

Hello @gespanne

You can add the following code to your themes functions.php file to show the unread-link in the main-menu:

add_action('asgarosforum_custom_header_menu', 'custom_header_menu');
function custom_header_menu() {
  global $asgarosforum;
  echo '<a href="'.$asgarosforum->get_link('unread').'">Unread Topics</a>';
}

 

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

My apologies for not asking the question the right way.  I have a plug in from you that moves the “Unread Topics” button up to the forum’s menu bar [not the theme’s menu bar].  It is described as follows…

Asgaros Unread Topics

Add unread topics to Asgaros forum menu

Version 1.0.0 | By Asgaros/Thomas

Is that still available and where can I find it?

Thanks!

Hello @gespanne

Yes, thats exactly the code I have posted – and I meant the main-menu of the forum of course.

I checked it on your site and the content of the file looks like the following:

<?php
/**
 * Plugin Name:       Asgaros Unread Topics
 * Description:       Add unread topics to Asgaros forum menu
 * Version:           1.0.0
 * Author:            Asgaros/Thomas
 * Author URI:        https://asgaros.com
 */

add_action('asgarosforum_custom_header_menu', 'custom_header_menu');
function custom_header_menu() {
  global $asgarosforum;

  echo '<a href="'.$asgarosforum->get_link('unread').'">Unread Topics</a>';
}

It is inside a file in the following location:

wp-content/plugins/asgaros-unread-topics/asgaros-unread-topics.php

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