MyBB Hacks

Full Version: Popups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Zinga,

In which file do I change the textcolour which says "Item successfully bought etc."?
Hi,

If you're talking about the default Success message (ie, not a custom one generated by a module), search inc/myplaza/myplaza_general.php for:

PHP Code:
$buyRtnMsg = $lang->buy_success;

Replace with something like:

PHP Code:
$buyRtnMsg = '<span style="color: red;">'.$lang->buy_success.'</span>';


If you want to change the style used for ALL success messages, edit the plaza_buy_success template.

Reference URL's