Please or Register to create posts and topics.

Asgaros Forum v1.6.2: Maintenance Release

Version 1.6.2 of the Asgaros Forum plugin for WordPress is a maintenance release. It includes the following changes:

  • Added options to hide the login/logout/register buttons
  • Added asgarosforum_custom_header_menu hook
  • Fixed broken search when using plain permalink structure
  • Fixed styling issues with highlighted usernames
  • Fixed display issues with some themes
  • Prevent indexing of the following views: addtopic, movetopic, addpost, editpost, search
  • Show the page number in meta title
  • Minor design changes

Version 1.6.2 of the Asgaros Forum will be available in the next 24 hours via the WordPress Updater!

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

in part of
login button
And
logout button
And
register button

Add a custom link to add

 

 

And add a link to the links in the forum in the new window to open or not

 

thank you

Quote from majidi on November 3, 2017, 12:43 am

in part of
login button
And
logout button
And
register button

Add a custom link to add

 

 

And add a link to the links in the forum in the new window to open or not

 

thank you

I think you can change ideas, such as the use of native js to solve.

<script type="text/javascript">
var topiclink = document.getElementsByClassName("topic").getElementsByTagName("a");
for (var i = 0; i < topiclink.length; i++) {
  topiclink[i].target = "_blank";
}
</script>

 

You can already add custom links to the menu with the asgarosforum_custom_header_menu hook.

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