MyBB Community Forums

Full Version: jGrowl Notification Text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Using this plugin.

Essentially, it allows you to "equip" a newpoints shop item next to your username.

When you click the "equip" button, it does work, however the jGrowl notification that pops up is completely blank.

My question is, how can I change/add the text of this notification?
(2020-11-23, 10:03 PM)tomjay78 Wrote: [ -> ]Using this plugin.

Essentially, it allows you to "equip" a newpoints shop item next to your username.

When you click the "equip" button, it does work, however the jGrowl notification that pops up is completely blank.

My question is, how can I change/add the text of this notification?

Solved, here is the solution:

The plugin didn't have a language file, so I created one with the following contents:
<?php
/**
 * User Icons Language
 * 
 */

$l['user_icon_equipped'] = "User icon succesfully equipped.";

Then, make sure the function includes:
global $mybb, $db, $lang;
	$lang->load("usericons");

Finally, replace the redirect with this to also display the message:
		redirect(
		'newpoints.php?action=shop&shop_action=myitems',
		$lang->user_icon_equipped
		);