-
Notifications
You must be signed in to change notification settings - Fork 9
Installation
The PHP extension mbstring
must be installed in order to use this plugin.
Installation of this plugin is basic:
- Copy all the files in the
upload
directory to the root directory of your forum - 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.
Unless otherwise specified, all upgrades will consist of the following steps:
- Deactivate the plugin in ACP.
- Overwrite the existing files
- Activate the plugin in ACP
Uninstall the plugin in ACP and remove all of the files from your server.
As of MentionMe 3.2.12, you can now perform slight adjustments to the popup menu's position.
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.
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.