Skip to content
Mark Vincent edited this page Sep 14, 2019 · 15 revisions

Requirements

The PHP extension mbstring must be installed in order to use this plugin.

Installation

Installation of this plugin is basic:

  1. Copy all the files in the upload directory to the root directory of your forum
  2. Install & Activate the plugin in Admin CP

If MyAlerts isn't installed on the forum before installation of this plugin, alerts will not work until you have installed MyAlerts and integrated MentionMe using the link provided in ACP Plugin Info.

Upgrade

Unless otherwise specified, all upgrades will consist of the following steps:

  1. Deactivate the plugin in ACP.
  2. Overwrite the existing files
  3. Activate the plugin in ACP

Removal

Uninstall the plugin in ACP and remove all of the files from your server.

Popup Adjustments

As of MentionMe 3.2.12, you can now perform slight adjustments to the popup menu's position.

SCEditor

Use the following script to adjust the top and left position:

<script type="text/javascript">
var MentionMe = (function(m) {
	m.customSCEditorContainerOffset = {
		left: -3,
		top: 2,
	};

	return m;
})(MentionMe || {});
</script>

{$mentionAutocomplete}

NOTE: {$mentionAutocomplete} shown to illustrate positioning and should not be included.

Text Area (Quick Reply)

Use the following script to adjust the top and left position:

<script type="text/javascript">
var MentionMe = (function(m) {
	m.customTextAreaContainerOffset = {
		left: -3,
		top: 2,
	};

	return m;
})(MentionMe || {});
</script>

{$mentionAutocomplete}

NOTE: {$mentionAutocomplete} shown to illustrate positioning and should not be included.