Suggest any new features you want in the Missing Recipes addon.
Regards,
Teta
|------ 159/212 - 75% ------| |
zanix wrote:What might be nice is a progress bar
Show total number of available recipes compared to what the player has and display as a progress bar
- Code: Select all
|------ 159/212 - 75% ------| |
For some reason I don't get the progress bar showing...Teta68 wrote:zanix wrote:What might be nice is a progress bar
Show total number of available recipes compared to what the player has and display as a progress bar
- Code: Select all
|------ 159/212 - 75% ------| |
Added in 2.0.1.2. Look for it in the downloads section.
Just put it in, if you know a better place for it on the page, make the suggestion
Regards,
Teta
Fixed it, for some reason it wouldn't add the config option for the progress bar to roster_addon_config, so I had to manually put it in using phpmyadmin.Wyren wrote:For some reason I don't get the progress bar showing...
http://roster.treehuggery.org/index.php ... ipes&a=c:9
insert into `roster_addon_config` values(7,2020,'mr_show_progressbar',1,'radio{Show^1|Hide^0','mr_display_conf')
Thanks for the update!
btw: the german users only see english tooltips.
The used Tooltip-Link is:
www.wowhead.com/?item=...ocale=deDE
but this one only leads to an english version if you try this link.
The DE-Link is
http://de.wowhead.com/?item=11151&locale=deDE
I changed the line below and then it works, but then fixed for DE:
- Code: Select all
$plink = "http://www.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
into
- Code: Select all
$plink = "http://de.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
Maybe this it the problem?
Holgi
I'm trying this:Teta68 wrote:Moved this post by Holgi here, for obvious reasons.Thanks for the update!
btw: the german users only see english tooltips.
The used Tooltip-Link is:
www.wowhead.com/?item=...ocale=deDE
but this one only leads to an english version if you try this link.
The DE-Link is
http://de.wowhead.com/?item=11151&locale=deDE
I changed the line below and then it works, but then fixed for DE:
- Code: Select all
$plink = "http://www.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
into
- Code: Select all
$plink = "http://de.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
Maybe this it the problem?
Holgi
switch ($roster->data['clientLocale']) {
case 'enUS':
$plink = "http://www.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
break;
case 'deDE':
$plink = "http://de.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
break;
case 'frFR':
$plink = "http://fr.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
break;
case 'esES':
$plink = "http://es.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
break;
/* case 'ruRU':
$plink = "http://ru.wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
break;
*/ }
case 'enUS':
$wowhead_subdomain = "www";
break;
$plink = "http://".$wowhead_subdomain."wowhead.com/?item=".get_icon_link($parsedrecipes[$sindex][$dindex]['pat_link']);
Users browsing this forum: No registered users and 0 guests