Fixed Widgets

Venthas

Member
Affected version
2.2
Hello,

We have 2 widgets targeting the Media application, one for Images and video, one for Music. Moving an item out of the Music category and into the Images category did not remove it from the Music widget, or add it to the Images widget. Not sure why not, so help is appreciated.

Regards,
Ven
 
The widgets can only display the media that they are configured to show so what you’ve said doesn’t seem to be possible.

My hunch is that the widget configuration somehow isn’t correct but we’d need more information about how they are configured in order to try and reproduce that.
 
Hello Chris! I've checked the widgets more than once, confirming the settings and saving them again. This is on our alpha site where we are doing testing before a conversion. I can open up a ticket in the client area to provide access if that helps?
 
Anyone else having this issue can run the following SQL query:

UPDATE xf_mg_media_item AS mi
INNER JOIN xf_mg_album AS a ON
(mi.album_id = a.album_id)
SET mi.category_id = a.category_id
WHERE mi.album_id > 0
 
Top Bottom