Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi, Can you please use the CSS below and see if it helps?
.srr-wrap .srr-thumb { display: none; } .srr-wrap > div > .srr-item:first-child .srr-thumb { display: block; }
Aakash
KeymasterHi, You can set the data format under content -> “date format” option.
Refer format codes here – https://wordpress.org/support/article/formatting-date-and-time/If using shortcode, use the
date_format
parameter.
Complete list of supported parameters here – https://www.aakashweb.com/docs/super-rss-reader/pro/shortcodes/Aakash
KeymasterHi,
The reader displays images out of the box. Videos are not supported because the source video could be anything and one integration won’t help all users.
The plugin however supports extensiblity via code.
By using the hook below, we can customize the output as required, insert custom code etc.
Let me know if you need ay clarification on this.
Thanks,
AakashAakash
KeymasterHi Fox,
Please find the FAQ below regarding the feed refresh behavior.
Note that increasing the feed refresh behavior to a very short time can impact page load when RSS feed is big otherwise we should be good.
You can add the above code using a method like below.
How to Add Custom Code in WordPress with Site-Specific Plugin?
Thanks,
AakashAakash
KeymasterHi Fox,
I’m not sure if inserting CSS is related to SRR plugin itself.
But there will always be one active theme.Also, any CSS you paste in WordPress will work on the active theme.
I believe below doc will help you in some way.
How to Edit CSS in WordPress (Edit, Add, and Customize How Your Site Looks)
Thanks,
AakashAakash
KeymasterHi there,
Glad you figured it out 🙂Thanks,
AakashAakash
KeymasterHi there,
Thanks for using Announcer. The horizontal ticker works that way by default.
It is not possible to loop the ticker without a empty space.
This is a challenging implementaion since the plugin needs to consider a variety of conditions, styles, message content etc.Except repeating the texts like you have done there is no idea I can suggest for this requirement now. Hope you understand 🙂
Thanks,
AakashAakash
KeymasterGlad this helped! I’m marking this topic as resolved.
May 23, 2024 at 11:40 pm in reply to: Shortcode on excerpt is not rendering when i paste the link into whatsapp #14714Aakash
KeymasterHi Raul,
Exactly, I was planning to suggest that. Glad that you figured it out.
Thanks,
AakashMay 23, 2024 at 12:03 am in reply to: Shortcode on excerpt is not rendering when i paste the link into whatsapp #14705Aakash
KeymasterHi Raul,
Thanks for using Shortcoder.
Social media sites, pull that text from HTML “metadata”.
When you view the page source, you can see the tag below.
view-source:https://threeestate.com.br/imoveis/residencia-6213/
<meta name="twitter:description" content="[sc name="detalhes_excerpt"][/sc]" />
This is added by yoast SEO and yoast SEO is NOT executing shortcodes. This is not only for shortcoder, any shortcode you insert in post excerpts it won’t work.
Solution is to check with Yoast SEO team and see if they can execute shortcodes in “opengraph” meta twitter descriptions or try pasting the code below in functions.php file of your theme.
https://stackoverflow.com/questions/73485852/wordpress-shortcode-not-rendering-in-yoast-ogtitle
add_filter( 'wpseo_opengraph_desc', 'do_shortcode' ); add_filter( 'wpseo_twitter_description', 'do_shortcode' );
Hope this helps.
Let me know how it goes.Thanks,
AakashAakash
KeymasterHi Jeffrey,
Just saw your website. There is some javascript on your site which is opening all links in new tab.
Please find that code and make changes as required.
//<![CDATA[ jQuery(document).ready(function($) { $('a').each(function() { var a = new RegExp('/' + window.location.host + '/'); if (!a.test(this.href)) { $(this).click(function(event) { var f_class = $(this).attr('class'); if (f_class == 'xoo-el-lostpw-tgr' || f_class == 'xoo-el-login-tgr') { return true; } else { event.preventDefault(); event.stopPropagation(); window.open(this.href, '_blank'); <--- this line is opening in new tab } }); } });
Thanks,
AakashMay 20, 2024 at 11:43 am in reply to: Floating Widget Pro couldn’t be activated triggered a fatal error #14691Aakash
KeymasterHi Doha,
Thanks for using UFW plugin. You have a nice website!
Looking at the screenshot shared, the “widget box” will be shown only on the page with ID 2053.
I’m not sure why it is not placed. There could be multiple reasons.
Could you please create a temporary admin account and share it’s username and password with me in the contact form below?
Apologize for the inconvenience.
Thanks,
AakashAakash
KeymasterHi,
One way to execute the shortcode is analyze the theme and execute the shortcode where the description is printed.
Other way would be to look for functions like below.
https://wordpress.stackexchange.com/questions/367511/adding-shortcode-to-product-short-descriptionCan you please paste the code as in the link above in theme functions.php file and see if it works?
Thanks,
AakashAakash
KeymasterHi pptech,
Shortcodes are executed by WordPress themes on the specific area as required.
Looks like the area you have mentioned is not executed for shortcodes.
This applies to any shortcode.
Can you please add a different shortcode like[gallery]
and see if it executes?I tried inserting shortcodes in content in “twenty-twenty” theme and it got executed. The child theme which you developed seems to be missing that.
Please confirm the same as requested above. I’ll suggest next steps as per that.
Thanks,
AakashAakash
KeymasterHi Decsites,
Super RSS Reader follows the same process like any other widget in WordPress. There is no intention to be cryptic here.
Widgets have UI to config the settings and shortcodes must be written since they can be inserted anywhere on your website (even in places where UI can’t come in)
Regarding shortcodes, I already mentioned it in my reply.
If shortcode, then you must build the shortcode using the example as mentioned in “Settings > super rss reader” page. It is quite simple and intuitive.
Regarding ” i STILL no way to change the appearance/view eg Grid”
Can you please share more details on what appearance you want to change? I can help with CSS if required. Also, can you please share your website URL where the reader is inserted.
Thanks,
Aakash -
AuthorPosts