Actually there is no conflict between plugins. The problem is that PlolyLang defines the language for each Custom Post Type. In order to display entries, in the menu PlolyLang – Settings->Custom post types and Taxonomies, you must select Custom Post Type or Taxonomy.
The problem is that in WP RSS Aggregator feed item is not defined as Custom Post Type.
The only, though not correct, solution was to change the WP RSS Aggregator code. I registered action after the feed item entry line in the DB – $inserted_ID = wp_insert_post ($feed_item).
Next, in the functions.php file of the current theme using action in the callback function, I set the default language for the feed item using the PolyLang function – pll_set_post_language($post_id, $lang)
-
This reply was modified 5 years, 4 months ago by soandso.
-
This reply was modified 5 years, 4 months ago by soandso.