Title: indiewave's Replies | WordPress.org

---

# indiewave

  [  ](https://wordpress.org/support/users/indiewave/)

 *   [Profile](https://wordpress.org/support/users/indiewave/)
 *   [Topics Started](https://wordpress.org/support/users/indiewave/topics/)
 *   [Replies Created](https://wordpress.org/support/users/indiewave/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/indiewave/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/indiewave/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/indiewave/engagements/)
 *   [Favorites](https://wordpress.org/support/users/indiewave/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page-list] Shortcode broken with WP 4.4. upgrade](https://wordpress.org/support/topic/shortcode-broken-with-wp-44-upgrade/)
 *  [indiewave](https://wordpress.org/support/users/indiewave/)
 * (@indiewave)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/shortcode-broken-with-wp-44-upgrade/page/2/#post-6827734)
 * 4.4 “broke” one of my shortcodes too. I tracked it down to the space character.
   Seems that when I originally copied and pasted the shortcode into my page, the
   space character following the shortcode (the delimiter space) was not ASCII 32.
   It was some other space. I fixed the problem by deleting the space following 
   my shortcode name and reinserting the space with the spacebar. Saved the page
   and my shortcode started working again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Allow RSS Feed access](https://wordpress.org/support/topic/allow-rss-feed-access/)
 *  [indiewave](https://wordpress.org/support/users/indiewave/)
 * (@indiewave)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/allow-rss-feed-access/#post-5837351)
 * Figured out what was still blocking the RSS feed even though I disabled the filter…
 *     ```
       $filterqueries = pmpro_getOption("filterqueries");
       if (!empty($filterqueries))
           add_filter('pre_get_posts', 'pmpro_search_filter');
       ```
   
 * Solution is to either not filter queries (advanced settings tab) or to add conditional
   code for feeds in the pmpro_search_filter() function, which I did.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Allow RSS Feed access](https://wordpress.org/support/topic/allow-rss-feed-access/)
 *  [indiewave](https://wordpress.org/support/users/indiewave/)
 * (@indiewave)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/allow-rss-feed-access/#post-5837350)
 * I too want the ability to allow SUMMARY RSS feed for protected content, as a 
   teaser of sorts. Looked at content.php and tried a couple of things but I could
   not get RSS feed to work for protected content. Also, according to WordPress 
   docs… “the_content_rss
    applied to the post content prior to including in an 
   RSS feed. **This filter hasn’t been functional since 2.7.**“
 * So, I looked at places in the code where is_feed() was being checked and tried
   to brute force enable RSS content, but no luck. I also tried enabling the show
   excepts feature of the plugin, but still no RSS feed for protected content.
 * I’m sure I’m missing something easy. Any more clues you can offer will be greatly
   appreciated. Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)