Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi Ern,
Buttons do not overlap, but the widget boxes overlap when they are open.
This is the default behavior.It is expected that widget boxes lay on top when more than one is open.
Please let me know if you are seeing a different behavior.
Thanks,
AakashMay 2, 2022 at 1:57 am in reply to: How to use the Super RSS reader as a block when creating a post and not a widget #11040Aakash
KeymasterHi,
To display rss feed inside a post or page we must use the shortcode.
You can add the shortcode block and type the super rss reader shortcode.
You can find examples in the doc below.
https://www.aakashweb.com/docs/super-rss-reader/pro/shortcodes/
Not only inside posts, you can use this shortcode wherever a shortcode works.
Thanks,
AakashAakash
KeymasterHi @seds,
With Shortcoder plugin, we can create shortcodes for HTML/CSS/JS.
Here you are using PHP code which the plugin will not execute.
You might have to use “code snippets” to use PHP code.Please let me know if I misunderstood your query.
Thanks,
AakashAakash
KeymasterHi,
I’m unable to access your website. It is blocked.
Also, what is the RSS feed URL?
Thanks,
AakashApril 23, 2022 at 12:25 am in reply to: When I publish the bar, this bar covers the logo and the menu of the page #10959Aakash
KeymasterHi 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,
AakashAakash
KeymasterHi George,
Could you please share the RSS feed URL?
Let me check if the images are added to that.
Thanks,
AakashApril 21, 2022 at 9:36 pm in reply to: When I publish the bar, this bar covers the logo and the menu of the page #10953Aakash
KeymasterHi 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,
AakashAakash
KeymasterHi @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,
AakashAakash
KeymasterCan you please share your website URL?
Thanks,
AakashAakash
KeymasterThe 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,
AakashAakash
KeymasterHi 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,
AakashAakash
KeymasterHi 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,
AakashAakash
KeymasterHi 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,
AakashAakash
KeymasterHi,
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,
AakashAakash
KeymasterHi 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(); } })(); } }); });
-
AuthorPosts