Forum Replies Created

Viewing 15 posts - 676 through 690 (of 2,115 total)
  • Author
    Posts
  • in reply to: Fatal error: RSS links don’t work
    Aakash
    Keymaster

    Hi,

    I’m unable to access your website. It is blocked.

    Also, what is the RSS feed URL?

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Alain,

    The theme uses javascript to position the header at the top of the page. So it might vary depending on the elements computed at that time. There could be timing conditions. I’m not aware of the logic behind that.

    The above CSS will force push the header down. Good that it worked for you.

    Thanks,
    Aakash

    in reply to: No post image
    Aakash
    Keymaster

    Hi George,

    Could you please share the RSS feed URL?

    Let me check if the images are added to that.

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Alain,

    Announcer already has the feature to push the header down.

    In your case, the theme takes an unusual way to position the header.

    It forces the header to stick on top of anything.
    Announcer cannot detect such elements sticking to the top.
    It already adds a padding/spacer to the top of the page. Despite adding that the header dynamically sticks over on top of that.

    Even if you choose another plugin, you will see the same issue.

    I can suggest the following:

    1) Check your theme settings and see if there is any kind of option to position the header in static mode instead of “absolute or fixed or floating” mode.

    2) You can try the below CSS. This should force the header to not stick to the top. I didn’t try all sizes and scenarios. But it should help in some way. You can get help from your theme dev to extend this CSS If required.

    @media all and (max-width: 980px) {
        #main-header{
            position: static !important;
            padding-top: 0 !important;
        }
        #page-container{
            padding-top: 55px !important;
        }
    }

    Thanks,
    Aakash

    in reply to: Location Rules Woo Commerce Shop Page
    Aakash
    Keymaster

    Hi @mwautin,

    Do you want to display UFW only on woocommerce product pages?
    If yes, then select “show in selected pages” then add a rule. Select “post type” as criteria and set “product” as the value.

    If you want to display only on the woocommerce shop page, then select “page” as criteria and pick the “shop” page from the list.

    You can also try selecting “front page” or “home page” as criteria if above suggestion didn’t help.

    If I misunderstood the issue, please do correct me and share more details.

    Hope it works and solves your query.

    Thanks,
    Aakash

    in reply to: Close on click
    Aakash
    Keymaster

    Can you please share your website URL?

    Thanks,
    Aakash

    in reply to: Super RSS Reader Confliction
    Aakash
    Keymaster

    The issue is caused by wp-rss-retriever plugin.

    Can you please disable that?

    [19-Apr-2022 18:00:26 UTC] PHP Fatal error: Uncaught TypeError: implode(): Argument #2 ($array) must be of type ?array, string given in /var/www/wp-content/plugins/<strong>wp-rss-retriever</strong>/inc/lib/simplepie/library/SimplePie/Parse/Date.php:544
    Stack trace:
    #0 /var/www/wp-content/plugins/wp-rss-retriever/inc/lib/simplepie/library/SimplePie/Parse/Date.php(544): implode(Array, ‘|’)

    Thanks,
    Aakash

    in reply to: Super RSS Reader Confliction
    Aakash
    Keymaster

    Hi Amin,

    As mentioned in the article, can you please enable wp_debug and share the logs debug.log under wp-content folder?

    This would help me locate if there is any issue.

    Thanks,
    Aakash

    in reply to: Super RSS Reader Confliction
    Aakash
    Keymaster

    Hi Amin,

    There are no issues reported of the same. May be something specific to your website.

    Can you please rename “super RSS reader” plugin folder wp-content\plugins\super-rss-reader ?

    https://www.webhostinghub.com/help/learn/wordpress/rename-plugin-to-disable

    If super RSS reader is causing the issue, then your website should not throw 500 error.
    If not then there is some other plugin causing the issue.

    You can also enable WordPress debugging to trace the issue.
    https://www.makeuseof.com/tag/the-ultimate-guide-to-solving-500-internal-server-errors-and-blank-white-pages-in-wordpress/

    Thanks,
    Aakash

    in reply to: RSs feed has BR code in the description
    Aakash
    Keymaster

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

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

    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();
              }
            })();
          }
          
        });
        
    });
    Aakash
    Keymaster

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

    Hi Jen,

    I’ll get back to you tomorrow on this.

    Thanks,
    Aakash

    in reply to: Turn Gutenberg Block Into Shortcode
    Aakash
    Keymaster

    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

Viewing 15 posts - 676 through 690 (of 2,115 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