MyBB Community Forums

Full Version: MentionMe 3.2.12 (for MyAlerts 2.x)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2016-12-19, 12:49 PM)Dr_The_One Wrote: [ -> ]With ck editor, afrer making post it work properly BUT while making post it dosent show username suggestion.

(2016-12-19, 04:21 PM)Eldenroot Wrote: [ -> ]It is compatible only with the default MyBB SCEditor... for CKeditor you have to wait until v3.1 will be out Smile

Yes, Eldenroot is correct. We have marked CKEditor compatibility for version 3.1.

I can't give an ETA, but I will work as quickly as I can.
MentionMe 3.0.2 Released

Fixed an error that broke the name caching task.

To upgrade just overwrite the existing files.
Nice plugin, does this have any difference to dvz mentions?
This is all-in-one solution with advanced features (more will come in v3.1, stay tunned). DVZ mentions - it just tags users, nothing else.
(2016-12-16, 07:51 PM)Wildcard Wrote: [ -> ]
(2016-12-16, 07:32 PM)nollidnosnhoj Wrote: [ -> ]Does this plugin works for other editors like Rin Editor?

I think that is CK Editor?

If so, the answer is not yet. It is a planned feature for the next minor version.

Thanks for your quick update of the plugin 3.0.2 .

This plugin is excellent, I look forward to future updates.

The new Task file works perfectly. I just replace it.

For Rin Editor CK Editor, I confirm that MentionMe does not work with this editor. What is normal MyBB works under SCEditor.

I think it will be integrated in the next update. (If Dev likes itWink).

Best regards to Dev, Respect!
Yeah, it will be there in v3.1 - check the milestone here:
https://github.com/WildcardSearch/Mentio...lestone/16
Currently having trouble getting MentionMe autocomplete to work. In the showthread page, I get this error in the Inspect Element:

[Image: 3yfxkn.png]

I don't know what this means (im guessing something is conflicting with the scripts)

Here's the code in the headerinclude if that helps:

{$stylesheets}
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'/>
<link href="https://fonts.googleapis.com/css?family=Oswald:300,400,700" rel="stylesheet">
<!--load amimate.css from CDN-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.4.0/animate.min.css">
<link rel="stylesheet" href="{$mybb->asset_url}/fancybox/source/jquery.fancybox.css?v=2.1.5" type="text/css" media="screen" />
<link rel="stylesheet" href="{$mybb->asset_url}/fancybox/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" type="text/css" media="screen" />

<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1806"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1806"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1806"></script>
<script type="text/javascript" src="images/vienna/bootstrap.min.js"></script>
<script type="text/javascript" src="jscripts/theme-effects.js"></script>
<script src="images/vienna/main.js" type="text/javascript"></script>
<script src="https://use.fontawesome.com/e1801bd06b.js"></script>

<script type="text/javascript" src="{$mybb->asset_url}/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="{$mybb->asset_url}/fancybox/source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script>
<script type="text/javascript" src="{$mybb->asset_url}/fancybox/source/helpers/jquery.fancybox-media.js?v=1.0.6"></script>
<script type="text/javascript" src="{$mybb->asset_url}/fancybox/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script>
<script type="text/javascript">
$(document).ready(function() {
   $('.post_body img').each(function() {
       var currentImage = $(this);
       
       if (currentImage.parent().is('a') == false)
       {
           currentImage.wrap("<a target='_blank' class='fancybox' href='" + currentImage.attr("src") + "'</a>");
       }

   });

   $(".fancybox").fancybox();
});
</script>

<!--load WOW js from CDN-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<script> new WOW().init(); </script>

<script type="text/javascript">
$(function(){
    // ADD SLIDEDOWN ANIMATION TO DROPDOWN //
    $('.dropdown').on('show.bs.dropdown', function(e){
        $(this).find('.dropdown-menu').first().stop(true, true).slideDown();
    });

    // ADD SLIDEUP ANIMATION TO DROPDOWN //
    $('.dropdown').on('hide.bs.dropdown', function(e){
        e.preventDefault();
        $(this).find('.dropdown-menu').first().stop(true, true).slideUp(400, function(){
            //On Complete, we reset all active dropdown classes and attributes
            //This fixes the visual bug associated with the open class being removed too fast
            $('.dropdown').removeClass('open');
            $('.dropdown').find('.dropdown-toggle').attr('aria-expanded','false');
        });
    });
});
</script>

<script type="text/javascript">
jQuery(document).ready(function() {
    var offset = 100;
    var duration = 250;
    jQuery(window).scroll(function() {
        if (jQuery(this).scrollTop() > offset) {
            jQuery(".topforum").fadeIn(duration);
        } else {
            jQuery(".topforum").fadeOut(duration);
        	}
    });
    
    jQuery('.topforum').click(function(event) {
        event.preventDefault();
        jQuery('html, body').animate({scrollTop: 0}, 600);
        	return false;
    	})
});
</script>

<script type="text/javascript">
$(document).ready(function(){
    $(".tip-top").tooltip({
        placement : 'top'
    });
    $(".tip-right").tooltip({
        placement : 'right'
    });
    $(".tip-bottom").tooltip({
        placement : 'bottom'
    });
    $(".tip-left").tooltip({
        placement : 'left'
    });
});
</script>

<script type="text/javascript">
<!--
	lang.unknown_error = "{$lang->unknown_error}";

	lang.select2_match = "{$lang->select2_match}";
	lang.select2_matches = "{$lang->select2_matches}";
	lang.select2_nomatches = "{$lang->select2_nomatches}";
	lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
	lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
	lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
	lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
	lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
	lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
	lang.select2_loadmore = "{$lang->select2_loadmore}";
	lang.select2_searching = "{$lang->select2_searching}";

	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var rootpath = "{$mybb->settings['bburl']}";
	var imagepath = "{$theme['imgdir']}";
  	var yes_confirm = "{$lang->yes}";
	var no_confirm = "{$lang->no}";
	var MyBBEditor = null;
	var spinner_image = "{$theme['imgdir']}/spinner.gif";
	var spinner = "<img src='" + spinner_image +"' alt='' />";
// -->
</script>

{$myalerts_js}
{$mentionAutocomplete}
(2016-12-19, 09:56 PM)nollidnosnhoj Wrote: [ -> ]Currently having trouble getting MentionMe autocomplete to work. In the showthread page, I get this error in the Inspect Element:

[...]

Thank you so much for the report. Can you do something for me?

Go to ACP -> Configuration -> MentionMe Configuration and look for the setting for Minify JavaScript and set it to 'No'

Then refresh the page with problems and give me the error message again. (I can't track it down because it is giving me the line number for the minfied source)

Sorry you are having problems.
[Image: g0tqyr.png]
Thank you for the report.

I think I see the issue. I'll be able to try to get it patched in about 10 hours.