Please or Register to create posts and topics.

Asgaros Forum v1.14.13: Maintenance Release

Page 1 of 2Next

I am happy to announce version 1.14.13 of the Asgaros Forum plugin for WordPress which comes with the following improvements:

  • Fixed problems when saving ads
  • Fixed fatal PHP error when processing mentionings
  • Changed default editor-buttons
  • Removed option for minimalistic editor

Version 1.14.13 of Asgaros Forum will be available in the next 6 hours via the WordPress Updater!

N3k0, RUSev and Guillaume have reacted to this post.
N3k0RUSevGuillaume
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

I think I do not like that to set the editor to only minimalist. Some plugins for the editor, for example that of the emojis, does not appear there 🙁

cheers!

Hello @n3k0

Actually its the same non-minimalistic editor as before, but I moved the buttons all into the first row to reduce space. It should not have any negative effect for other plugins but it can be possible that the emoji-plugin is using the same priority to add the button. Which one are you using?

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

Im using the Super Emoji Plus+, is the only one who works “fine” adding a emoji search in the bar editor.

https://es.wordpress.org/plugins/super-emoji-plus/

The only thing is they have some emojis lost and the popup window only appears in the center :p

 

Uploaded files:
  • Clipboard02.jpg

ALSO

Instead of using plugins for emojis, I think Asgaros should have its own emojis system, just like it does with the spoiler tag.

An example would be to implement something like this in the editor:

https://github.com/needim/wdt-emoji-bundle 

Also, for the reaction, I found this: https://emoji.rodeo/     Nevermind lol

Cheers!

After updating the buttons in the editor, the emoticons disappeared again.

Hello @n3k0

It seems that the plugin is using a lower priority-value. Please add the following code to your themes functions.php file:

function my_sep_mce_buttons( $buttons ) {
  $buttons[] = 'sep_emoji';
  return $buttons;
}
add_filter( 'mce_buttons', 'my_sep_mce_buttons', 20);

@rusev

Which extension are you using for emoticons?

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

@asgaros

https://es.wordpress.org/plugins/tinymce-smiley-button/

@rusev

Please try to add the following code to your themes functions.php file:

function my_mce_smiley_button($buttons) {
  array_push($buttons, 'smiley');
  return $buttons;
}
add_filter('mce_buttons', 'my_mce_smiley_button', 20);

 

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

@asgaros Thank! Works!

Page 1 of 2Next