Forum Replies Created

Viewing 15 posts - 526 through 540 (of 1,956 total)
  • Author
    Posts
  • in reply to: RSs feed has BR code in the description

    Hi Robert,

    Thanks for using Super RSS Reader.

    I see that
    tags are removed while displaying the feed description.

    I’ll fix this in the next version.

    Meantime you can make a small change in the plugin to get it working.

    Go to Plugin editor > select Super RSS Reader/includes/feed.php

    At line number 199 insert <br> after <i>. Save the file.
    It should work now.

    Thanks,
    Aakash

    in reply to: 2 Different Banners for two languages

    Hi,

    As of now, we cannot change text based on language.

    But if the language plugin you use supports creating “shortcodes”, then you can insert the shortcode which will change based on the language.

    Something like below – https://wpml.org/documentation/support/wpml-coding-api/shortcodes/#wpml-string

    Thanks,
    Aakash

    in reply to: Disappear when element ID is in viewport?

    Hi Jen,

    Looks like you have already figured it out.
    I see it working on your site.

    One optimization I give is below. You can try replacing the below code

    jQuery(window).on('DOMContentLoaded load resize scroll', function() {
      var isi= document.getElementById('isi'); 
      if (isi) {
        onVisibilityChange(isi, function(visible) {
          var my_ancr = document.getElementById('ancr-1641');
    
          if (visible) {   
            my_ancr.announcer.hide();
          }
          else {
            my_ancr.announcer.show();
          }
        })();
      }
    });

    with this

    jQuery( document ).ready(function() {
        
        var isi= document.getElementById('isi');
        
        jQuery(window).on('DOMContentLoaded load resize scroll', function() {
          
          if (isi) {
            onVisibilityChange(isi, function(visible) {
              var my_ancr = document.getElementById('ancr-1641');
    
              if(typeof my_ancr.announcer === 'undefined'){
                  return;
              }
    
              if (visible) {
                my_ancr.announcer.hide();
              }else {
                my_ancr.announcer.show();
              }
            })();
          }
          
        });
        
    });

    Hi Diana,

    Great that you were able to configure the number of items in the RSS feed.

    Regarding the cache, WordPress will store the cache for 12 hours by default. That is sitewide for any plugin trying to display an RSS feed.

    There is however a code snippet which you can paste your theme’s function.php file.

    The code is available in the FAQ section below.
    https://www.aakashweb.com/docs/super-rss-reader/faq/#q-rss-feed-is-not-refreshing.

    Using this code, you can change how long the RSS feed cache should be stored.

    Thanks,
    Aakash

    in reply to: Disappear when element ID is in viewport?

    Hi Jen,

    I’ll get back to you tomorrow on this.

    Thanks,
    Aakash

    in reply to: Turn Gutenberg Block Into Shortcode

    Hi @guymc,

    Sorry for the late reply. Right now it is not possible since it requires special integration with the Block editor. I’m planning for it in the future.

    I can suggest a workaround for now.

    You can build the blocks in a normal post, switch to the code editor, copy the HTML and paste it as shortcode content.

    The challenge with this approach is that if you need to edit the code, then you need to do the same in reverse.

    I’ll update once I’m able to add this feature to the plugin.

    Thanks,
    Aakash

    in reply to: Disappear when element ID is in viewport?

    Hi Jen,

    Thanks for using Announcer.

    It might require some JS to get it done.

    Can you please share your website URL? I might need to look at the site to see the possibility.

    Thanks,
    Aakash

    in reply to: Use tag for image, and not thumbnail

    Hi @charlemagne,

    Sorry for the late reply.

    Super RSS Reader already fetches the thumbnail from <media:content>.

    Please ensure Content > “Show thumbnail if present” is checked.

    http://rss.cnn.com/rss/edition.rss is an example. It has <media:content> tag and the plugin is fetching the images.

    Thanks,
    Aakash

    Hi Suzuki,

    Please paste the below CSS into your theme’s additional CSS settings.
    This would help you.

    .srr-item .srr-clearfix {
        display: flex;
        flex-wrap: nowrap;
    }
    .srr-title {
        margin-left: 15px
    }

    Thanks,
    Aakash

    Hi Diana,

    Thanks for using Super RSS Reader.

    Could you please confirm how many items are there in the RSS feed URL?

    You can open the RSS feed URL and search for <item>. This number tells you the total count the RSS feed has.

    Super RSS Reader does not restrict items based on license.

    Regarding the text, WordPress caches RSS feed for 12 hours. Since it adds load to the server and RSS feeds usually refresh every day.

    You can wait and check it tomorrow (or) add a ?1 to the RSS feed URL to consider it as a new URL and override the cache.

    Thanks,
    Aakash

    Hi Suzuki,

    Sorry for the super late reply. I missed replying after opening the topic. Could you please share your website URL?

    I’ll look at the website and share CSS to align in the same line.

    Thanks,
    Aakash

    in reply to: Embedding Plugin Content Using Shortcode/Shortcoder

    Hi,

    With Shortcoder plugin, you can create “shortcodes” for frequently used HTML/CSS/JS so that you can reuse.

    Instead of copy pasting the a huge code you can instead use the shortcode.

    If you can set any HTML/CSS/JS as “shortcode content” then shortcoder plugin will work for you.

    Thanks,
    Aakash

    in reply to: taking code from ACF to use in shortcoder

    Hi Gregory,

    With shortcoder plugin, we can create shortcode HTML, CSS, JS. We cannot pull ACF data using Shortcoder.

    Thanks,
    Aakash

    in reply to: trouble with using a shortcode inside a shortcode

    The way I suggested is the best way to get it done.

    Since shortcodes are set as attribute values parsing is not working as expected. This is not only shortcoder but for any shortcode. They will be printed as is.

    Another approach I can think is, create city and state shortcode like you have now.
    And for the maps shortcode follow the method I told.

    Now when you want to edit the city and state names, you must edit two shortcodes (maps & city/state). This will be the trade-off.

    in reply to: trouble with using a shortcode inside a shortcode

    Instead of creating separate shortcodes for city and state. Any reason for this? it is better to use parameters like I mentioned. It works exactly like you want.

    It does not make sense to create shortcodes for simple words.

    WordPress is failing to parse like mentioned earlier. This is for any shortcode not only shortcoder.

Viewing 15 posts - 526 through 540 (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