Forum Replies Created

Viewing 15 posts - 421 through 435 (of 2,039 total)
  • Author
    Posts
  • in reply to: Fetching a single thumbnail for all Google RSS Feed.
    Aakash
    Keymaster

    Hi Marty,

    Happy that it works! Cheers!

    Thanks,
    Aakash

    in reply to: Fetching a single thumbnail for all Google RSS Feed.
    Aakash
    Keymaster

    Hi 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

    Best methods to Insert Custom PHP code in WordPress?

    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,
    Aakash

    in reply to: Feature Request
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: Reached limit on maximum allowed domains for the license.
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: Remove assigned domains
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: LOCATION PROBLEMS
    Aakash
    Keymaster

    Hi @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,
    Aakash

    in reply to: The reader has stopped updating the feed in the widget.
    Aakash
    Keymaster

    Hi,

    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,
    Aakash

    in reply to: Fetching a single thumbnail for all Google RSS Feed.
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: Shortcoder with Goodlayer Page Builder
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: Fixed height and Scroll bar or pagination
    Aakash
    Keymaster

    Hi Giovanni,

    In Super RSS Reader v4.9 there is a new feature to display all RSS feeds in a fixed height with scrollbar.

    Super RSS Reader – Add attractive RSS Feed Widget

    In the PRO version, you can select the “paginated” type where you can display RSS feeds with page numbers and next/prev navigation buttons.

    Super RSS Reader

    Thanks,
    Aakash

    in reply to: Pagination or Search for Super RSS Reader?
    Aakash
    Keymaster

    Hi @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,
    Aakash

    in reply to: How to use filters in posts only
    Aakash
    Keymaster

    Hi,

    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.

    Filter by Keyword

    Please do upgrade to check it out.

    Thanks,
    Aakash

    in reply to: The reader has stopped updating the feed in the widget.
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: LOCATION PROBLEMS
    Aakash
    Keymaster

    Hi 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,
    Aakash

    in reply to: The reader has stopped updating the feed in the widget.
    Aakash
    Keymaster

    Hi Pete,

    Thanks for using Super RSS Reader.

    RSS Reader caches the feed for 12 hours.

    FAQ

    It seems the RSS feed was updated very recently which is less than 12 hours.

    The latest one with title TJ Marketing is added on Thu, 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

Viewing 15 posts - 421 through 435 (of 2,039 total)

Subscribe to our Newsletter

Get updates on the WordPress plugins, tips and tricks to enhance your WordPress experience. No spam. View newsletter

By using this website, you agree to our Terms