Forum Replies Created
-
AuthorPosts
-
AakashKeymasterHi there,
Thanks for using Shortcoder plugin.
This feature is now available in the PRO version of the plugin.
Please do check if you are still interested in this.
Thanks,
Aakash
AakashKeymasterHi Leonide,
Thanks for using Shortcoder – PRO.
Right now there is no option to add that link to the menu.
But you can accesss the custom editors using the link below.<your_website>/wp-admin/edit.php?post_type=shortcoder_editorPlease bookmark this link for now.
I’ll add an option in the next version to add the custom editor list page in the menu.
Thanks,
Aakash
AakashKeymasterHi @swetinatasha,
Thanks for using Announcer.
The issue is that the “elementor sticky header” sticks to the top of the page at offset 0.
So it covers the announcement bar.It does not know that there is an announcement bar.
i.e it does not know to stack.
This is the common situation with any sticky header bars.I would suggest to stick the announcement bar to the bottom of the page.
We can set below CSS to move the header a bit down.
But when the announcement bar closes, the header will stay there floating. The behavior gets even complicated in mobile screens when the height of the announcement is dynamic.header[data-elementor-type="header"] .elementor-sticky--active { top: 40px !important; }Announcer also supports “shortcodes”. So please try if you can insert the shortcode inside the elementor header at the top of the menu.
Hope any of this suggestion helps.
Thanks,
Aakash
AakashKeymasterHi,
Thanks for using Shortcoder.
I see that you have used “visual editor” and pasted code on that.
Can you please switch to “code editor” and paste the HTML code?
Let me know if that helps.Thanks,
Aakash
AakashKeymasterHi Shrikrushna,
I visited your website and I was able to see the countdown timer on all pages.
Please see the screenshot below where the countdown timer is on the home page.
My guess is that you might have seen a cached page?
Can you please check again?Thanks,
Aakash
AakashKeymasterHi there,
Thanks for using shortcoder plugin.
This is not expected. It means the plugin is broken.
I haven’t heard any report similar to this.
Do you mean if I set the content as
<div class=”wrap1″>it is escaped on the output?1) Can you please share a screenshot of the shortcode edit page and the page URL where the shortcode is inserted?
2) can you please confirm if the user editing the the content has admin role?
Thanks,
Aakash
AakashKeymasterHi Rebecca,
Thanks for using Announcer.
I can see the announcement both on desktop and mobile.
I saw the banner on my mobile.Please check if you are looking at a cached page.
Thanks,
Aakash
AakashKeymasterHi David,
This issue is addressed in version 4.7.1.
Thanks,
Aakash
AakashKeymasterHi David,
Thanks for reporting the issue.
Can you please make the change below?1) Plugin editor -> super-rss-reader-pro\includes\widget-admin.php
2) At line number 57, changesanitize_textarea_fieldtowp_kses_post
3) Save the file.The changes should be saved now.
I’ll release the fix for this issue soon.Thanks,
Aakash
AakashKeymasterHi David,
Thanks for using Super RSS Reader – PRO.
This is not expected. I’ll check this issue and update ASAP.
Thanks,
Aakash
AakashKeymasterHi Shrikrushna,
I’ve shared the changes required for this via email.
Please check and let me know.Thanks,
Aakash
AakashKeymasterHi Shrikrushna,
Got it. Let me check the code and see the efforts need to implement this.
I’ll get back to you tomorrow.Thanks,
Aakash
AakashKeymasterHi @balendugo,
I guess this is the same question as https://wordpress.org/support/topic/shortcodes-across-multisite/
Unfortunately, shortcodes created using Shortcoder do not work across multiple sites. They work within single only.
It is due to how the shortcodes are stored and retrieved. I do not think this support will be added anytime soon.
Shortcoder however supports import/export feature. https://www.aakashweb.com/docs/shortcoder/import-export/
You can create shortcodes on one site, export and import to other sites easily.
Hope this is helpful.Thanks,
Aakash
AakashKeymasterHi Toomas,
I visited your website and the announcement bar is working as expected. Please see the image below.
Can you please try in incognito mode or after clearing the browser cache?
Thanks,
Aakash
AakashKeymasterHi Jason,
You can use the WordPress information -> “Post excerpt” tag itself.
As of now the plugin is printing only 100 characters.
But you can make the change in the code to print full post excerpt.
In Plugin editor > shortcoder/includes/metadata.php
Replace this
public static function excerpt( $length = 250 ){ global $post; if( !is_object( $post ) ){ return ''; } $excerpt = $post->post_excerpt; // using $post->post_excerpt instead of get_the_excerpt as the_content filter loses shortcode formatting $excerpt_text = ( empty( $excerpt ) ) ? strip_tags( strip_shortcodes( $post->post_content ) ) : $excerpt; return substr( $excerpt_text, 0, $length ); }with this
public static function excerpt( $length = 250 ){ global $post; if( !is_object( $post ) ){ return ''; } return $post->post_excerpt; }I’ll make the change in the next version to print the full description.
Thanks,
Aakash -
AuthorPosts
