MyBB Community Forums

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

I have a problem with this hack when I have more themes installed.. When I use the new theme the default thanks button appears. so when I add new thanks buttons for the new theme and put it in the images/theme_name/english dir, they won't appear. I figured I need to change the path but I don't know how, so I'd need to change the path to the new button from this:

Quote:images/hungarian/postbit_thx.gif

to this

Quote:images/Mitsy/hungarian/postbit_thx.gif


How can I do that? Is it possible to make this hack work with more than one theme installed?
dtommy79 Wrote:/.../
How can I do that? Is it possible to make this hack work with more than one theme installed?

Yes Smile

In thx.php find:

<img src=\"images/{$lang->language}

and change to

<img src=\"{$theme['imglangdir']}

You must add to every function where it is, to a "global" section, $theme, for example:

function thx($post) {
	global $db, $mybb, $lang , $altbg, $templates;
	if($mybb->settings['thx_active']=="off")

Change to:

function thx($post) {
	global $db, $mybb, $lang , $altbg, $templates, $theme;
	if($mybb->settings['thx_active']=="off")
Thank you. Works sweet.
hello,
i used mod thanks 3.03 at blue night themes but i cant watching the report of thanks under reputation only thanks button.

what is my problem?


thanks for help me...