Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,956 total)
  • Author
    Posts
  • in reply to: Color design by default

    Hi there,

    Thanks for usign Announcer. Currently it is not possible to create a template of color designs. I did think of this feature. But was waiting on user feedback. I’ll sure implement this when more users request the same.

    If you are using the PRO version, you can use the “duplicate announcement” feature where you can design the announcement bars of your choice and duplicate it whenever needed. This way you can create predefined designs.

    Thanks,
    Aakash

    in reply to: Keyword filter in PRO version – critical error

    Hi Jon,

    Yes, I agree but w.r.t date, there could be varied requirements from different users like “timerange”, dates greater than x, lesser than x, weekdays, weekends and the list goes.

    Hence I left it upto the users to decide how they want. It is easy to do programtically than providing complex options.

    It might be non-intutive, but most users won’t consume this filter.

    I’ll write and share the PHP code which you can use by this weekend?

    Please let me know the exact requirement, I can consider that before writing the logic.

    Thanks,
    Aakash

    in reply to: Keyword filter in PRO version – critical error

    Hi Jon,

    The filter designed window uses the function “iframe_header” which is modified by that plugin. Hence the error.

    Regarding filter by date, the requirements can get very complex. You can use PHP code to filter items based on any property of the feed item using “hooks”.

    Super RSS Reader PRO has hooks which you can tap into and modify. I’ll document this and update you.

    Thanks,
    Aakash

    in reply to: Keyword filter in PRO version – critical error

    Hi Jon,

    Thanks for using Super RSS Reader – PRO.

    The log indicates that the error is observed in the plugin “block-options”. You can find the exact source file and line number below.

    [03-Apr-2023 10:33:37 UTC] PHP Fatal error: Uncaught TypeError: method_exists(): Argument #1 ($object_or_class) must be of type object|string, null given in /home/XXXXXXX/public_html/WP-DIRECTORY/wp-content/plugins/block-options/includes/class-editorskit-block-assets.php:202

    To test this, you can temp deactivate this plugin and load the filter designer. It should work.
    I would suggest checking this issue with “block options” team regarding the issue at line 202 in class-editorskit-block-assets.php.

    Thanks,
    Aakash

    in reply to: Not showing on home page

    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

    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

    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.

    Hi Marty,

    Happy that it works! Cheers!

    Thanks,
    Aakash

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

    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

    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.

    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

    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

    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.

    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.

    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

Viewing 15 posts - 331 through 345 (of 1,956 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