Forum Replies Created
-
AuthorPosts
-
Aakash ChakravarthyKeymaster
Hi 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,
AakashMay 20, 2024 at 11:43 am in reply to: Floating Widget Pro couldn’t be activated triggered a fatal error #14691Aakash ChakravarthyKeymasterHi 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 ChakravarthyKeymasterHi,
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 ChakravarthyKeymasterHi 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 ChakravarthyKeymasterHi 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,
AakashAakash ChakravarthyKeymasterHi Decsites,
No worries. I can guide you accordingly.
Please let me know where do you plan to insert the RSS reader?
1) On the sidebar/footer using “widgets”
2) Inline to any content using “shortcodes”if widgets, you can drag and drop the widget and configure the settings.
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.
Feel free to let me know how you would like to proceed, I can help further.
Thanks,
AakashAakash ChakravarthyKeymasterHi Romeo,
I would like to understand how you want to use the custom fields which are added to the shortcoder.
The option of custom fields for posts make sense since while displaying a post, users can include additional metadata to display in that post. I’m not sure if this will work for shortcoder. Could you please share any example usecase?
Thanks,
AakashAakash ChakravarthyKeymasterHi Athannor,
Thanks for using Announcer plugin. Happy that you like it.
I too thought that of that feature. The implementation was expensive as there would be demand for more granular configurations/selections. I’ll add this to my todo list and revist this in the future.
Meantime, you can use the “custom” display option to launch the announcement bar by writing your own logic in javascript – https://www.aakashweb.com/docs/announcer/js-api/ If you are comfortable with basic scripting you can look for resources and implement the same.
Thanks,
AakashAakash ChakravarthyKeymasterHi Steven,
Glad your figured it out. The content users insert their widget is untouched by UFW. So if it can work outside UFW, then it will work with UFW too.
Thanks,
AakashAakash ChakravarthyKeymasterHi Kaioliver,
Sorry for the late reply.
I hope you have configured the github username and authentication settings as in this link – https://www.aakashweb.com/docs/git-it-write/getting-started/#configuring-authentication-settings
In Github, can you please go to repository -> settings -> webhooks -> recent delieveries and see if the commit action was posted to your website?
You can also click to see the full details. Sometimes you would see timeout error which is fine.
Please let me know more on this further.
Thanks,
Aakash -
AuthorPosts