Forum Replies Created
-
AuthorPosts
-
November 6, 2022 at 10:25 pm in reply to: Button flashes on page load even when initial state is hidden #11961
AakashKeymasterHi Vince,
Can you please try the CSS below and see if it helps?
#ufw_1 { animation: ufw_hide 0s 1s forwards; visibility: hidden; } @keyframes ufw_hide { to { visibility: visible; } }Thanks,
Aakash
AakashKeymasterHi Vince,
Thanks for using UFW.
Please use the CSS below..ufw_wb_inner .widget .postlist { margin-top: 0 !important; } .ufw_wb_inner .widget .widget-title { display: none; }
AakashKeymasterHi Albert,
Sorry for the late reply.
Adding the dynamic load feature was not widely requested since most general use feeds are small.
In your case, there are 60 items. Without “full content” enabled this number is not very huge.
The final output HTML from SRR is crisp and not bloated.
What I can suggest for you is, display all the 60 items and use CSS to add a scroll bar to the container.
Is that fine? If yes, please share me the page URL. I’ll suggest CSS as needed.
This way you can have all the items displayed and users can use scroll bar.Thanks,
Aakash
AakashKeymasterHi Justin,
Sorry for the delay. Please use the CSS below to position the button on the bottom left corner above the button on the bottom right.
#ufw_2 .ufw_btn { right: 1.5em; left: auto; bottom: 6em; }You can use the same CSS like above and change the ID of the widget box (
2) as needed.
Here the button is moved to the bottom right side.Thanks,
Aakash
AakashKeymasterHi Justin,
Sure, I can help. Can you please share the page URL where the button is added?
I need to write CSS to reposition the button.Thanks,
Aakash
AakashKeymasterHi there,
Please type “transparent” as value for “icon background color” and set empty value for “icon color”.
Thanks,
Aakash
AakashKeymasterHi there,
I can understand your question now.
Unfortunately the current implementation is that tabs and the RSS feed are bound together. That is tabs cannot be removed and placed elsewhere. It is to make a connection between the tabs and tab content.
This is because a page can have multiple RSS feed with tabs and implementation will get complicated. Plus, there were no requirements for the same.
However, using some CSS we can align the tabs to the left of the RSS feed like in the image but not have totally different position.
What you can do is, you can use some external tab plugin, visual builder or something like that and create the tabs on the sidebar then insert the shortcode for each RSS feed in each tab content.
Thanks,
Aakash
AakashKeymasterHi,
Thanks for using Super RSS Reader.
I would like to know the context when you say “tabs”.
When you add multiple RSS feeds, then Super RSS Reader shows them in separate tabs.
Sometime, themes show sidebar widgets as tabs i.e popular, latest comments, tags etc. Do you mean this?
Could you please share your website URL and point me?
Thanks,
Aakash
AakashKeymasterHi Alexandar,
Yes you can change the RSS feed caching duration.
Please follow the instructions in the FAQ below.
Thanks,
AakashOctober 13, 2022 at 6:20 pm in reply to: Shortcode Not Displaying Buttons That’s Inside The Block #11862
AakashKeymasterHi there,
Sorry for that delay. I was travelling. I couldn’t get back on this.
I’ll update you tomorrow.
October 10, 2022 at 12:35 pm in reply to: Shortcode Not Displaying Buttons That’s Inside The Block #11832
AakashKeymasterHi @guy-coffi,
I believe this is same as this topic in wordpress forum – https://wordpress.org/support/topic/html-block-not-displaying-buttons/
I’ll check and get back to you with a code for this.
Thanks,
Aakash
AakashKeymasterHi Tiziano,
Thanks for using Shortcoder. The placeholder picks the value directly from the custom field. There is no option to modify it. However you can use CSS to print the text in lower case like
<span style="text-transform: lowercase;">$$custom_field:animal$$</span>.Thanks,
Aakash
AakashKeymasterHi Ryan,
Sorry for the late reply.
Super RSS Reader fetches thumbnail directly from the website by checking the “open graph image tags” which is the standard across.
The RSS feed page you are trying does not have an og:image meta tags.
This is the only way any application knows what image to pick from the page. Otherwise it is clueless to parse the entire HTML for an image.
Below is a open graph checker which says the same – https://www.opengraph.xyz/url/https%3A%2F%2Fwww.jalopyjournal.com%2F%3Fp%3D53445
If you own that website, please use a plugin to insert open graph tags or you may request the owner to do the same. https://yoast.com/help/getting-open-graph-for-your-articles/
Thanks,
Aakash
AakashKeymasterHi @dengeral,
Thanks for reporting. But I was unable to reproduce the issue with the examples you shared. Please see image below.

Can you please check if the user has “unfiltered_html” capability?
My guess is there is some plugin related to security or formatting tapping the content inbetween and making the modification like this. If you can try after disabling a potential plugin then that would be helpful.
I looked at the code and there are no clue. In v6.0 changes were done to filter out dangerous HTML if user does not have unfiltered_html capability.
Any clue on this would be helpful.
Thanks,
Aakash
AakashKeymasterHi Chris,
The plugin you are using seems to be blocking everything like scripts, styles, hooks etc. These are essential for other plugins to inject custom HTML.
The only way to get the plugin showing is by including the below HTML and calling the PHP function somehow. You must get help from the plugin dev incase how to get it included.
Paste below HTML in the header or footer of the page
<link rel='stylesheet' id='ufw-style-css' href='https://<YOUR_WEBSITE_URL>/wp-content/plugins/ultimate-floating-widgets-pro/public/css/style.css?ver=5.8.5' media='all' /> <link rel='stylesheet' id='ufw-anim-css' href='https://<YOUR_WEBSITE_URL>/wp-content/plugins/ultimate-floating-widgets-pro/public/css/animate.min.css?ver=5.8.5' media='all' /> <link rel='stylesheet' id='fontawesome-css-css' href='https://use.fontawesome.com/releases/v5.15.1/css/all.css?ver=5.8.5' media='all' />Call below function in the bottom of the page
UFW_Display::add_widget_box();Thanks,
Aakash -
AuthorPosts
