Forum Replies Created

Viewing 15 posts - 436 through 450 (of 2,057 total)
  • Author
    Posts
  • in reply to: Not showing on home page
    Aakash
    Keymaster

    Hi,

    I visited your website and saw the announcer working on the homepage. Please do let me know if issue persists.

    Thanks,
    Aakash

    in reply to: Speed of execution on website
    Aakash
    Keymaster

    Hi Sanjay,

    Shortcoder is tested with 1000+ shortcodes and there is no issues/reports of slowness.

    In your case 85 shortcodes is not a lot and the content size is small. I don’t find any reason for the page to be stuck for 8 seconds.

    I created a shortcode for the JS you had shared and did not observe any slowness in my test site. The entire page loads instantly and the JS takes few seconds to load the “buy now” button. This is expected since thats how JS widgets asynchronously load content.

    You can expermient with a normal HTML text with JS and see if there is any difference. Please let me know if you want any other findings or information related to this.

    Thanks,
    Aakash

    in reply to: Speed of execution on website
    Aakash
    Keymaster

    Hi Sanjay,

    Thanks for using Shortcoder.

    Could you please share information on the following?

    1) Number of shortcodes you have created
    2) The size (word count) of the shortcode for which the execution takes place.
    3) What kind of shortcode is that? is that a Javascript code? can you please share it if true?

    Thanks,
    Aakash

    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

Viewing 15 posts - 436 through 450 (of 2,057 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