RSS Page List not Listing Pages

Permalink
I have a page list block I am using to list out reps but the rss feed link doesn't produce the same results? I traced the variables and everything appears correct. Is there something not working in the RSS for page lists I should know about?

Also I have page attributes set-up for filtering the returned pages from the page list, how do I go about filtering the results?

plant
 
plant replied on at Permalink Reply
plant
OK so I figured out how to filter a page list block by using filterByCollectionAttribute.

My RSS feed still isn't working, and I also noticed the state checkboxes I created for my page attribute does not keep the states I have sleected selected when editing. Not sure if this is because I have 50+ or what?

//check if searched for state
         if(isset($_GET['state'])) {
            $get_state = $_GET['state'];
            $pl->filterByCollectionAttribute('rep_state', "%$get_state%", 'like');
         }