Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi Marty,
Happy that it works! Cheers!
Thanks,
AakashAakash
KeymasterHi Marty,
Please paste the code below in your theme’s
function.php
file.You can follow any method like in the below, if you are new to this
Since in your case the problem is with the RSS feed URL, I have written this personalized code to help you. Feel free to modify this as per your requirement.
(updated recently)
function srr_google_feed_meta( $meta, $feed_item ){ $url = $feed_item->get_link(); $cache_name = 'srr_gfou_' . md5( $url ); $original_url = get_transient( $cache_name ); if( $original_url === false ){ $page_html = SRR_URL_Metadata::fetch_page_html( $url ); $pattern = '/<a\s+[^>]*href="([^"]*)"[^>]*>/i'; if ( preg_match( $pattern, $page_html, $matches ) ) { $original_url = $matches[1]; if( get_option( 'srr_debug' ) ){ SRR_Admin::log( $original_url ); } set_transient( $cache_name, $original_url, WEEK_IN_SECONDS ); } } return SRR_URL_Metadata::get_meta_data( $original_url ); } add_filter( 'srr_mod_metadata_image', 'srr_google_feed_meta', 10, 2 );
Thanks,
AakashAakash
KeymasterHi Alessandro,
Thanks for using Shortcoder PRO.
As of now the plugin does not support multisite and there are no plans either.
Since most users are single site owners, the plugin did not focus multisites.
Also, there are users with thousands of shortcodes. Since the preference is to keep the plugin lightweight, fast and simple features which are very specific/heavy are not implemented.w.r.t your requirement, I can include wordpress hooks wherever needed to introduce customization. You can later use those hooks for multisite features like above. Please do let me know further on this.
Thanks,
AakashMarch 21, 2023 at 1:59 am in reply to: Reached limit on maximum allowed domains for the license. #12675Aakash
KeymasterHi Rose,
Extremely sorry for the late reply. I was not working because of sickness.
Once a domain is registered, it cannot be unregistered by the user. It will allow unlimited
domain registrations.I have manually unregistered your existing site. Please activate the plugin on your new website.
Thanks,
AakashAakash
KeymasterHi Leon,
Extremely sorry for the delay. I was out on sick.
Once the license key is activated on a domain it will be registered with it. It will not be deregistered automatically unless manually requested with a valid reason.
The reason we do not allow user control on deregistration is that, it allows unlimited activation of the key.
I can sure help you deregister the domains the with license key.
Please let me know the list of domains, I will make the changes on the license server and update you.Thanks,
AakashAakash
KeymasterHi @densho,
I got the issue. Let me check the code and get back to you in a week or so with some workaround on this.
I’ll try to handle this scenario in the next version.
Thanks,
AakashFebruary 28, 2023 at 1:21 am in reply to: The reader has stopped updating the feed in the widget. #12601Aakash
KeymasterHi,
In the widget page under Super RSS Reader widget, select the “content” tab. Under the thumbnail section you can change the thumbnail size to “cover”.
Please use the CSS below to hide “the feed title”?
.srr-title { display: none !important; }
Thanks,
AakashFebruary 27, 2023 at 11:46 pm in reply to: Fetching a single thumbnail for all Google RSS Feed. #12598Aakash
KeymasterHi Zach,
Regarding the issue, the feature (fetching thumbnail from source website) itself works as expected without any issue.
It is that the URL in the feed item does not redirect to the original source article.
Super RSS Reader works with any RSS feed and not specific to Google news RSS feed.
Since Google RSS feed had changed the redirect logic, some specific logic must be added just for this Google news RSS feed. Other RSS feeds don’t need that.
This would be a custom requirement. I might need a week or so to think and work on this.
I’ll share a code once it is complete.
Thanks,
AakashAakash
KeymasterHi Mint,
Understood. That means the editor is not “executing” the shortcode. The editor has to use execute that shortcode using the
do_shortcode
function.Not only shortcoder’s shortcode any shortcode you insert it won’t work. You can try insert a shortcode like
[gallery]
it wouldn’t work.That is because, the editor sees it as a normal text. Goodlayer should have some kind of option/widget just to execute shortcodes.
Can you raise a ticket to goodlayer editor topic and enquire them of the same?
You can simply ask them how to execute shortcodes.
Let me know how it goes.Thanks,
AakashAakash
KeymasterHi Giovanni,
In Super RSS Reader v4.9 there is a new feature to display all RSS feeds in a fixed height with scrollbar.
In the PRO version, you can select the “paginated” type where you can display RSS feeds with page numbers and next/prev navigation buttons.
Thanks,
AakashAakash
KeymasterHi @c3po
This feature has been added in Super RSS Reader – PRO v4.9.
Please update the plugin to that version and change “Display type” to “Paginated”.
Thanks,
AakashAakash
KeymasterHi,
Super RSS Reader – PRO has been updated to v4.9.
In this version, you can create a filter with value set as ‘*’ to feed description. This way you can filter out feed items without a description.
Please do upgrade to check it out.
Thanks,
AakashFebruary 25, 2023 at 3:12 pm in reply to: The reader has stopped updating the feed in the widget. #12590Aakash
KeymasterHi Pete,
Regarding “full-size miniature image of the logo” can you please share more details? I did not understand this requirement. Any example would be helpful.
You can also select “Content” -> “Thumbnail position” = “Cover” and see if it helps.
Regarding “could there be a gap between the title and the contents, or not show the title with the contents”, yes we can hide the feed item’s title via CSS or add padding between title and content.
Let me know which way you would like, I’ll suggest CSS code which you can paste in your theme’s additional settings.
Thanks,
AakashAakash
KeymasterHi Anni,
Can you please go to Settings -> Reading and check if you have set a static page as home page?
If yes, then “hide in pages” and “hide in posts” will meet that criteria.Let me know if that is the case. I’ll try to exclude situations like this in the next version of the plugin.
Thanks,
AakashFebruary 23, 2023 at 11:32 pm in reply to: The reader has stopped updating the feed in the widget. #12581Aakash
KeymasterHi Pete,
Thanks for using Super RSS Reader.
RSS Reader caches the feed for 12 hours.
It seems the RSS feed was updated very recently which is less than 12 hours.
The latest one with title
TJ Marketing
is added onThu, 23 Feb 2023 10:02:51 +0000
. I would suggest wait for a day for the cache to expire and the reader would fetch the latest feed.Please let me know if you are expecting something else.
Thanks,
Aakash -
AuthorPosts