Conversation
supportWe are using the news archive in the widget. When the dates are listed they work. However we would like it to be a dropdown, and there is an option to select this. So we have, but it does not work. Is there anything that can be done to get it working please? Thank you 🙂 The page I need help with: [ log in to see the link]
Might be a little too old to help @melissagw , but it looks like the author has pretty much abandoned this plug-in and I recently ran into the same problem. The drop-down style Archive Widget can be made functional by doing the following. Open the news-manager/js/front-widget.js file. Immediately after the jquery document ready statement, so starting on line 2, add the following: $(document).on(‘change’, ‘.widget_news_manager_archive_widget select’, function() { window.location.href = $(this).val(); }); There is a lot more that could be done here… but that will add simple redirecting functionality back in.
Might be a little too old to help @melissagw , but it looks like the author has pretty much abandoned this plug-in and I recently ran into the same problem. The drop-down style Archive Widget can be made functional by doing the following. Open the news-manager/js/front-widget.js file. Immediately after the jquery document ready statement, so starting on line 2, add the following: $(document).on(‘change’, ‘.widget_news_manager_archive_widget select’, function() { window.location.href = $(this).val(); }); There is a lot more that could be done here… but that will add simple redirecting functionality back in.