Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi,
The image you shared is not linked correctly. Anyways, there is no limitation w.r.t Shortcode content. What you set as shortcode content will be inserted into the page.
If the code you have works when it is inserted directly onto the page, then it will work when you insert it via shortcoder.
Shortcoder creates short reusable tags for large code snippets.
I would suggest paste the code directly onto to the page and share that error with the code provider. They should help you understand if something is missing in the code or some configuration is wrong.
Thanks,
AakashAakash
KeymasterHi @jcranin89,
I could not see any error in the screenshot or in the live page.
Since shortcoder does not modify the shortcode content, it could be that there is some issue with the code itself? You can test/confirm this by pasting the code directly inside the post without using the shortcode.
Thanks,
AakashAakash
KeymasterHi Sean,
Thanks for using Super RSS Reader.
When the RSS feed does not have any thumbnail, then it tries to fetch the first image in the post content. In your case, the first image is not recognized by the parser for somereason.
This logic might need an enhancement. I’ll handle this in the next version.
Thanks,
AakashAakash
KeymasterExcellent Sean! The plugin looks great on your website!
Aakash
KeymasterSean,
Please paste the CSS below in your theme settings. View the page source and ensure the CSS is present on the page.
.srr-thumb { margin-right: 15px !important; } .srr-item-in.srr-clearfix { display: flex; flex-direction: row-reverse; justify-content: flex-end; }
Thanks,
AakashAakash
KeymasterHi Sean,
Sure, this can be done. Can you enable feed title and thumbnail and share the page URL?
I’ll check and share CSS.Thanks,
AakashAakash
KeymasterHi Sinota,
I’m sorry to tell you that, there is no progress in this area 😔 I cannot find APIs from WPML to integrate.
The current workaround is to create multiple separate shortcode for every language and use it the specific post language.
Thanks,
AakashAakash
KeymasterHi Alae,
Can you please share the page URL where the shortcode is inserted?
Thanks,
AakashAakash
KeymasterHi Elias,
Thanks for using Shortcoder.
When a shortcode is missing the “name” attribute it will print “shortcode is missing name attribute”. I can see the same on your side.
For somereason I guess the “name” attribute is stripped while saving the post? Please use the “shortcoder” block if you are using block editor.
Please share a screenshot of the usage if issue persists.
Thanks,
AakashAakash
KeymasterGot it ! Thanks for confirming. Marking this as resolved.
Aakash
KeymasterHi Kevin,
Are you using the same RSS feed url?
Can you please confirm that?
Can you also share the RSS feed url?
Thanks,
AakashApril 14, 2023 at 11:25 pm in reply to: Make the RSS description into the same URL as the title #12790Aakash
KeymasterHi Kevin,
I’ll add this option in the next version.
For now add below PHP code to your website’s function.php file or using a custom plugin – https://www.aakashweb.com/articles/create-site-specific-wordpress-plugin-custom-code/
function my_srr_modifier( $html, $feed_url, $feed_item ){ $url = $feed_item->get_link(); $html[ 'description' ] = '<a href="' . esc_attr( $url ) . '" target="_blank">' . $html[ 'description' ] . '</a>'; return $html; } add_filter( 'srr_mod_item_html', 'my_srr_modifier', 10, 3 );
Thanks,
AakashApril 14, 2023 at 2:28 am in reply to: Make the RSS description into the same URL as the title #12785Aakash
KeymasterHi Kevin,
To make any advanced changes like this, the plugin provides helper functions to play manipulate the output as needed.
You might need to use PHP code to do that like in the example below.
If you are comfortable with that, you can use that hook and wrap the description with an “a” tag. Otherwise let me know, I will write that for you. I can share you the code by tomorrow after testing.
Thanks,
AakashApril 13, 2023 at 12:55 am in reply to: Make the RSS description into the same URL as the title #12779Aakash
KeymasterHi Kevin,
Do you mean, you want to make the feed description as a link so that it is clickable?
Thanks,
AakashApril 12, 2023 at 1:33 am in reply to: Widget não funciona corretamente em dispositivos moveis #12770Aakash
KeymasterHi Marlon,
It seems you have the widget content with
html
tag which is not a valid syntax.<h2 class="widgettitle">Meu bilhete</h2><html> <----- HTML tag <script type="text/javascript" src="scripts.js"></script> <style> #content aside h2 { background: white; padding: 10px 20px 10px 20px; . . . //#stake-input { padding-left: 10px; color: black; } </style> </html><--- here
Can you please remove that and ensure the code pasted in the widget is valid.
Thanks,
Aakash -
AuthorPosts