Forum Replies Created

Viewing 15 posts - 406 through 420 (of 2,039 total)
  • Author
    Posts
  • in reply to: Feed is showing different results
    Aakash
    Keymaster

    Hi Kevin,

    Are you using the same RSS feed url?

    Can you please confirm that?

    Can you also share the RSS feed url?

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title
    Aakash
    Keymaster

    Hi Kevin,

    I’ll add this option in the next version.

    For now add below PHP code to your website’s function.php file or using a custom plugin – https://www.aakashweb.com/articles/create-site-specific-wordpress-plugin-custom-code/

    function my_srr_modifier( $html, $feed_url, $feed_item ){
        $url = $feed_item->get_link();
        $html[ 'description' ] = '<a href="' . esc_attr( $url ) . '" target="_blank">' . $html[ 'description' ] . '</a>';
        return $html;
    }
    
    add_filter( 'srr_mod_item_html', 'my_srr_modifier', 10, 3 );

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title
    Aakash
    Keymaster

    Hi Kevin,

    To make any advanced changes like this, the plugin provides helper functions to play manipulate the output as needed.

    You might need to use PHP code to do that like in the example below.

    Actions and Filters

    If you are comfortable with that, you can use that hook and wrap the description with an “a” tag. Otherwise let me know, I will write that for you. I can share you the code by tomorrow after testing.

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title
    Aakash
    Keymaster

    Hi Kevin,

    Do you mean, you want to make the feed description as a link so that it is clickable?

    Thanks,
    Aakash

    in reply to: Widget não funciona corretamente em dispositivos moveis
    Aakash
    Keymaster

    Hi Marlon,

    It seems you have the widget content with html tag which is not a valid syntax.

     <h2 class="widgettitle">Meu bilhete</h2><html>  <----- HTML tag
    <script type="text/javascript" src="scripts.js"></script>
    
    <style>
     #content aside h2 {
        background: white;
        padding: 10px 20px 10px 20px;
    .
    .
    .
    //#stake-input {
        padding-left: 10px;
        color: black;
    }
    </style>
    
    </html><--- here
    

    Can you please remove that and ensure the code pasted in the widget is valid.

    Thanks,
    Aakash

    in reply to: Please provide me with the download link
    Aakash
    Keymaster

    Thanks for confirming. Marking this as resolved.

    in reply to: Please provide me with the download link
    Aakash
    Keymaster

    Hi,

    Thanks for purchasing Super RSS Reader PRO.

    Yes, when you click the link in the email a zip file will be downloaded.

    Go ahead and upload it to your WordPress site.

    The email already has the link on how to get started.

    Please follow the link below to get started.

    Installation

    Thanks,
    Aakash

    in reply to: Issues with grid settings in Super RSS
    Aakash
    Keymaster

    Hi Michael,

    #1 – I’ll include option in the next version for more than 4 columns. For now please set grid_columns="5" in the shortcode.

    Paste the CSS below n your theme settings page.

    .srr-grid.srr-g-col-5 .srr-item {
        flex-basis: calc(20%);
    }

    #2 – The images are small because, they are picked from the RSS feed. If you own the RSS feed then you can configure it to set URLs of bigger images.

    Otherwise, in the PRO version you can configure to fetch the image directly from the website. To do that, set thumbnail_force="always" in the shortcode.

    Thanks,
    Aakash

    in reply to: Color design by default
    Aakash
    Keymaster

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

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

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

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

Viewing 15 posts - 406 through 420 (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