Kodi Community Forum
Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Other Skins (https://forum.kodi.tv/forumdisplay.php?fid=272)
+---- Thread: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) (/showthread.php?tid=355993)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - shkop - 2021-06-23

(2021-06-23, 11:14)redglory Wrote:
(2021-06-23, 11:10)shkop Wrote: hello, why I have nothing in the ALL categories?  Huh

Image

Image

Image
Can you put your debug log (wiki) ?

debug log


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - redglory - 2021-06-23

(2021-06-23, 12:03)shkop Wrote:
(2021-06-23, 11:14)redglory Wrote:
(2021-06-23, 11:10)shkop Wrote: hello, why I have nothing in the ALL categories?  Huh

Image

Image

Image
Can you put your debug log (wiki) ?

debug log

Code:
2021-06-23 11:42:25.144 T:7252  WARNING <general>: script.skin.helper.widgets --> Exception details: Type: AttributeError Value: 'Media' object has no attribute 'forgenre' Traceback: Traceback (most recent call last):
File "C:\Users\rital\AppData\Roaming\Kodi\addons\script.skin.helper.widgets\resources\lib\main.py", line 177, in show_widget_listing
  all_items = getattr(media_class, action)()
AttributeError: 'Media' object has no attribute 'forgenre'

The problem points to script.skin.helper.widgets module on the show_widget_listing method.

media_type "Media" doesn't have action "forgenre" implemented. This action is only present on the "movies" and "tvshows" media types.

Either you change your widget to define as movies or tvshows media types or this script must be updated.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - shkop - 2021-06-23

(2021-06-23, 12:31)redglory Wrote:
(2021-06-23, 12:03)shkop Wrote:
(2021-06-23, 11:14)redglory Wrote: Can you put your debug log (wiki) ?

debug log

Code:
2021-06-23 11:42:25.144 T:7252  WARNING <general>: script.skin.helper.widgets --> Exception details: Type: AttributeError Value: 'Media' object has no attribute 'forgenre' Traceback: Traceback (most recent call last):
File "C:\Users\rital\AppData\Roaming\Kodi\addons\script.skin.helper.widgets\resources\lib\main.py", line 177, in show_widget_listing
  all_items = getattr(media_class, action)()
AttributeError: 'Media' object has no attribute 'forgenre'

The problem points to script.skin.helper.widgets module on the show_widget_listing method.

media_type "Media" doesn't have action "forgenre" implemented. This action is only present on the "movies" and "tvshows" media types.

Either you change your widget to define as movies or tvshows media types or this script must be updated.
how do i change my widget as movie media type?

this script is already in last version


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - redglory - 2021-06-23

(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote:
(2020-07-24, 17:08)AchillesPunks Wrote: I will have to look into this. Generally would like to keep everything as light as possible. This is already a heavy skin. I may at sometime make some changes and create a smaller landscape, but no promises.

from first i tried, from BINGIE OG, this skin heavy is because addons script.skin.helper.service and script.module.cherrypy
but almost that make it heavy is script.skin.helper.service
i must downgrade it the version of those 2 addons to make the skin is light movement for scrolling and changing every menu that i press
did you download the skin from the github yet?
I suppose this only applies to Home widgets (where you have movies and tvshows mixed).

You can edit Custom_1117_Categories_Hub.xml and replace mediatype=media to mediatype=movies

Code:
<!-- GENRES -->
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),drama)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=drama&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),crime)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=crime&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),thriller)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=thriller&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),action)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=action&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),comedy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=comedy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),adventure)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=adventure&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),western)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=western&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),horror)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=horror&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),science fiction)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=science fiction&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),family)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=family&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),animation)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=animation&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),mystery)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=mystery&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),romance)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=romance&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),documentary)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=documentary&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),fantasy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=fantasy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>

and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

I would recommend for you to try or ask for changes on script.skin.helper.widgets to include forgenre for mediatype=media.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - AchillesPunks - 2021-06-23

(2021-06-23, 16:01)redglory Wrote:
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote: from first i tried, from BINGIE OG, this skin heavy is because addons script.skin.helper.service and script.module.cherrypy
but almost that make it heavy is script.skin.helper.service
i must downgrade it the version of those 2 addons to make the skin is light movement for scrolling and changing every menu that i press
did you download the skin from the github yet?
I suppose this only applies to Home widgets (where you have movies and tvshows mixed).

You can edit Custom_1117_Categories_Hub.xml and replace mediatype=media to mediatype=movies

Code:
<!-- GENRES -->
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),drama)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=drama&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),crime)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=crime&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),thriller)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=thriller&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),action)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=action&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),comedy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=comedy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),adventure)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=adventure&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),western)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=western&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),horror)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=horror&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),science fiction)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=science fiction&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),family)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=family&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),animation)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=animation&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),mystery)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=mystery&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),romance)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=romance&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),documentary)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=documentary&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),fantasy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=fantasy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>

and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

I would recommend for you to try or ask for changes on script.skin.helper.widgets to include forgenre for mediatype=media.
Just updated the GitHub with the changes to Custom_1117_Categories_Hub.xml. Not sure what needs to be changed for skin helper... I don't understand Py when I look at it...


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - AchillesPunks - 2021-06-23

(2021-06-23, 16:01)redglory Wrote: [quote="AchillesPunks" pid='2965459' dateline='1595612628']
[quote="3500" pid='2965458' dateline='1595612465']


and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

Why do you suggest I change mediatype=media to mediatype=movies in includesbingie?


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - AchillesPunks - 2021-06-23

(2021-06-23, 16:01)redglory Wrote:
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote: from first i tried, from BINGIE OG, this skin heavy is because addons script.skin.helper.service and script.module.cherrypy
but almost that make it heavy is script.skin.helper.service
i must downgrade it the version of those 2 addons to make the skin is light movement for scrolling and changing every menu that i press
did you download the skin from the github yet?


I would recommend for you to try or ask for changes on script.skin.helper.widgets to include forgenre for mediatype=media.

@Angelinas do you think you can look into this for us?


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - redglory - 2021-06-23

(2021-06-23, 16:26)AchillesPunks Wrote:
(2021-06-23, 16:01)redglory Wrote:
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote: and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

Why do you suggest I change mediatype=media to mediatype=movies in includesbingie?

Just because you'll never get any results based on the fact that there is no forgenre method for the media mediatype. that entry will return empty results.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - shkop - 2021-06-23

with the latest GitHub update it works, but I still don't have anything in the "critically aclamaid movies" categories; "popular"; "new release";


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - Angelinas - 2021-06-23

(2021-06-23, 16:31)AchillesPunks Wrote: @Angelinas do you think you can look into this for us?
I will try to add forgenre.... for media


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - Logs22 - 2021-06-23

Apologies if this has been requested and already turned down, but when using a custom home spotlight item, could there be the option to change the sorting on it like how widgets have? ie random?


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - AchillesPunks - 2021-06-23

(2021-06-23, 16:44)redglory Wrote:
(2021-06-23, 16:26)AchillesPunks Wrote:
(2021-06-23, 16:01)redglory Wrote:

Just because you'll never get any results based on the fact that there is no forgenre method for the media mediatype. that entry will return empty results.
Yes but changing only the Custom_1117_Categories_Hub.xml fixes the genre widget. Similar on home is already working. I'm not sure what that one is doing.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - AchillesPunks - 2021-06-23

(2021-06-23, 21:41)Angelinas Wrote:
(2021-06-23, 16:31)AchillesPunks Wrote: @Angelinas do you think you can look into this for us?
I will try to add forgenre.... for media
Thanks


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - AchillesPunks - 2021-06-23

(2021-06-23, 21:50)Logs22 Wrote: Apologies if this has been requested and already turned down, but when using a custom home spotlight item, could there be the option to change the sorting on it like how widgets have? ie random?
Not at this time.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - Blackysb - 2021-06-23

(2021-06-21, 18:52)fsurfer Wrote:
(2021-06-21, 17:42)Blackysb Wrote:
(2021-06-21, 14:43)matke Wrote: Wait, are you talking about episodes, seasons or a complete tv show? It only doesn’t work for episodes but in episodes it shows thumb images (landscape) not posters.
https://i.imgur.com/DekphxV.png
https://i.imgur.com/h00KGNS.png

First image, no artwork, second image you can see the season poster. I've checked and all named ok. Images show up in other skins.

This is an area I am having difficulty with
https://forum.kodi.tv/showthread.php?tid=355993&pid=3044712#pid3044712
Clearly im not the only one with the issue. Could someone tell me if this is a skin wide issue or a local one?