PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web.
A couple problems with the 'Refresh Feed Items' button on wp-admin/edit.php?post_type=pf_feed:
It uses non-breaking spaces in the string, presumably to avoid confusing line breaks. However, this makes it difficult to translate. See #1117. Instead, we should use CSS white-space: nowrap to avoid breaking.
The relevant JS file subscribed-feeds-actions is not, in fact, loaded on this edit.php page, due to an incorrect is_a_pf_page() check.
A couple problems with the 'Refresh Feed Items' button on wp-admin/edit.php?post_type=pf_feed:
white-space: nowrap
to avoid breaking.subscribed-feeds-actions
is not, in fact, loaded on this edit.php page, due to an incorrectis_a_pf_page()
check.