Forum Replies Created
-
AuthorPosts
-
January 4, 2023 at 10:34 pm in reply to: Keyword Filter not working for me … thanks for your assistance :) #12299
Aakash
KeymasterHi Steve,
I have requested the following information in my previous reply.
Keyword Filter not working for me … thanks for your assistance 🙂
Can you please share the following information?
1) The RSS feed URL(s)
2) A screenshot of the filter rules you have created for “opinion”I’ll recreate the same on my local setup and see if issue is reproduced.
Can you please share this information?
Thanks,
AakashJanuary 4, 2023 at 12:51 am in reply to: Keyword Filter not working for me … thanks for your assistance :) #12290Aakash
KeymasterHi Steve,
Thanks for using Super RSS Reader PRO.
Can you please share the following information?
1) The RSS feed URL(s)
2) A screenshot of the filter rules you have created for “opinion”I’ll recreate the same on my local setup and see if issue is reproduced.
Thanks,
AakashAakash
KeymasterHi,
Super RSS Reader displays contents by parsing the RSS feed directly. The RSS feed is however cached by WordPress in DB for 12 hours. Everytime the reader is displayed, it tries to get the feed contents from the cache or it fetches the rss feed directly.
It does not access database except the widget settings.
Rgarding your 2nd question, it depends on the RSS feed contents. If your RSS feed has lots of text and if you are displaying full contents of the feed then the page may get heavier. Otherwise it shouldn’t cause an impact.
Thanks,
AakashAakash
KeymasterHi Bay,
Please follow along the code hint below.
function my_srr_modifier( $html, $feed_url, $feed_item ){ if ( is_single() && 'post' == get_post_type() ) { $html[ 'title' ] = $html[ 'title' ] . 'extra text'; } return $html; } add_filter( 'srr_mod_item_html', 'my_srr_modifier', 10, 3 );
Thanks,
AakashAakash
KeymasterHi Dan,
Thanks for using Announcer plugin.
Yes, this is a known issue. Can you please click “edit announcement” and “save the settings”?
This should remove the warning.Thanks,
AakashAakash
KeymasterHi,
Thanks for using Super RSS Reader. I’ll check this issue on my local setup and update.
Thanks,
AakashAakash
KeymasterHi there,
Thanks for using Announcer. There is no option to schedule announcements in that way.
But your suggestion is a good idea. I’ll add this feature soon in the upcoming releases.
I’ll update this thread when the feature is added.
Thanks,
AakashAakash
KeymasterHi Gregg,
I’ll check this issue on my test site and update you.
Thanks,
AakashAakash
KeymasterHi there,
Sorry for the late reply. I haven’t tested the plugin with PHP 8.1
The plugin uses the RSS reader API from WordPress itself. There shouldn’t be any issue with PHP 8.1.
You can go ahead and install the plugin on PHP 8.1.Thanks,
AakashAakash
KeymasterHi David,
Sorry for the super late reply.
Do you still need a help on this topic?
Thanks,
AakashAakash
KeymasterExcellent! Thanks for using Super RSS Reader!
Please do rate the plugin 5 stars if you like it.
https://wordpress.org/support/plugin/super-rss-reader/reviews/#new-postMarking this thread as resolved.
Thanks,
AakashAakash
KeymasterHi Brent,
Please paste the CSS below.
.ancr-btn-primary { border-bottom: none !important; }
Thanks,
AakashDecember 21, 2022 at 7:15 pm in reply to: Custom Parameters Get truncated on replacement [part 2] #12216Aakash
KeymasterHi Dennis,
I tried the same code you tried and I’m not able to reproduce the issue.
It works fine in my case. Please find the screenshots below.
Please double check if there are no synstax issues and no nested double/single quotes. Also try switching themes or try the same on a different site without any plugins. That can help you check if any other plugin/theme is manipulating the output.
Thanks,
AakashAakash
KeymasterJeff,
WordPress caches the RSS feed for 12 hours by default. You can override the cache during testing by adding dummy characters like
?1
.
Example:http://mysitecom/rss.xml?1
Change the number and save the settings everytime you want to override the cache.You can also change the refresh duration permanently by placing the code below.
Thanks,
AakashAakash
KeymasterHi Jeff,
Yes, the issue with the space. I get the below error.
RSS Error: https://www.rfidjournal.com/category/news/feed is invalid XML, likely due to invalid characters. XML error: Reserved XML Name at line 5, column 39
I can suggest the following,
1) Inform the website owner and fix the RSS output.
2) Copy and paste the RSS feed content to your website as a.xml
file which is valid. Provide this file as RSS feed URL. Note: you migtht have to do this manually (or) do some kind of automation.
3) Write some PHP script which will act as proxy, clean the RSS feed (remove blank lines) and return a valid feed.I understand the suggestions are quite difficult, but just like any application the plugin accepts a valid RSS feed URL. The plugin cannot tweak and make the feed valid automatically. RSS feed parsers expect a valid one.
Thanks,
Aakash -
AuthorPosts