XF 1.4 How to make Feeder pull only 1 post instead of 5?

Or you can edit /library/XenForo/Model/Feed.php and change

Code:
        /**
         * Maximum number of entries to be fetched per-feed per-import.
         *
         * @var integer
         */
        protected static $_maxEntriesPerImport = 5;
to
Code:
        /**
         * Maximum number of entries to be fetched per-feed per-import.
         *
         * @var integer
         */
        protected static $_maxEntriesPerImport = 1;

Or at least that is what we did on another site that he was wanting less than 5 pulled in (he was wanting 3).

Of course, this must be redone each time you upgrade the XenForo script.
 
Top Bottom