Forum Replies Created
-
AuthorPosts
-
Aakash ChakravarthyKeymaster
Hi,
Please use the code below.
<script> document.addEventListener( 'wpcf7submit', function( event ) { UFW.close(1); }, false ); </script>
Aakash ChakravarthyKeymasterHi Mak,
The default RSS feed refresh time is 12hours. It is not updated continuously. The plugin loads the cached RSS feed until it expires.
Thanks,
AakashAakash ChakravarthyKeymasterHi,
Was the code working previously?
I looked at your website source code but couldn’t find the above code snippet.
Can you please confirm if the code is inserted?
Thanks
Aakash ChakravarthyKeymasterHi Fox,
The plugin caches all the RSS feed for 12 hours automatically.
You can however decrease this time using special code.The page being slow is highly unlikely unless you have
1) decreased the cache duration
2) load thumbnail from the rss feed link directly.Let me know more details on where and how the slowness is derived.
Thanks,
AakashAakash ChakravarthyKeymasterHi, 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 ChakravarthyKeymasterHi, 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 ChakravarthyKeymasterHi,
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 ChakravarthyKeymasterHi 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 ChakravarthyKeymasterHi 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 ChakravarthyKeymasterHi there,
Glad you figured it out 🙂Thanks,
AakashAakash ChakravarthyKeymasterHi 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 ChakravarthyKeymasterGlad 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 ChakravarthyKeymasterHi 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 ChakravarthyKeymasterHi 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 ChakravarthyKeymasterHi 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,
Aakash -
AuthorPosts