indiewave
Forum Replies Created
-
Forum: Plugins
In reply to: [Page-list] Shortcode broken with WP 4.4. upgrade4.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.
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.
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.