Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi @charlemagne,
Sorry for the late reply.
Super RSS Reader already fetches the thumbnail from
<media:content>
.Please ensure Content > “Show thumbnail if present” is checked.
http://rss.cnn.com/rss/edition.rss is an example. It has
<media:content>
tag and the plugin is fetching the images.Thanks,
AakashApril 6, 2022 at 9:17 pm in reply to: Is there a way to display the date and title without line breaks? #10870Aakash
KeymasterHi Suzuki,
Please paste the below CSS into your theme’s additional CSS settings.
This would help you..srr-item .srr-clearfix { display: flex; flex-wrap: nowrap; } .srr-title { margin-left: 15px }
Thanks,
AakashApril 6, 2022 at 10:35 am in reply to: Feed limitation? Only showing 10 feeds and “appeared first on” #10867Aakash
KeymasterHi Diana,
Thanks for using Super RSS Reader.
Could you please confirm how many items are there in the RSS feed URL?
You can open the RSS feed URL and search for
<item>
. This number tells you the total count the RSS feed has.Super RSS Reader does not restrict items based on license.
Regarding the text, WordPress caches RSS feed for 12 hours. Since it adds load to the server and RSS feeds usually refresh every day.
You can wait and check it tomorrow (or) add a
?1
to the RSS feed URL to consider it as a new URL and override the cache.Thanks,
AakashApril 4, 2022 at 10:38 pm in reply to: Is there a way to display the date and title without line breaks? #10862Aakash
KeymasterHi Suzuki,
Sorry for the super late reply. I missed replying after opening the topic. Could you please share your website URL?
I’ll look at the website and share CSS to align in the same line.
Thanks,
AakashAakash
KeymasterHi,
With Shortcoder plugin, you can create “shortcodes” for frequently used HTML/CSS/JS so that you can reuse.
Instead of copy pasting the a huge code you can instead use the shortcode.
If you can set any HTML/CSS/JS as “shortcode content” then shortcoder plugin will work for you.
Thanks,
AakashAakash
KeymasterHi Gregory,
With shortcoder plugin, we can create shortcode HTML, CSS, JS. We cannot pull ACF data using Shortcoder.
Thanks,
AakashAakash
KeymasterThe way I suggested is the best way to get it done.
Since shortcodes are set as attribute values parsing is not working as expected. This is not only shortcoder but for any shortcode. They will be printed as is.
Another approach I can think is, create city and state shortcode like you have now.
And for the maps shortcode follow the method I told.Now when you want to edit the city and state names, you must edit two shortcodes (maps & city/state). This will be the trade-off.
Aakash
KeymasterInstead of creating separate shortcodes for city and state. Any reason for this? it is better to use parameters like I mentioned. It works exactly like you want.
It does not make sense to create shortcodes for simple words.
WordPress is failing to parse like mentioned earlier. This is for any shortcode not only shortcoder.
Aakash
KeymasterHi Stefan,
Thanks for using Shortcoder.
I would suggest trying the below format which is very simple. Looks like you are complicating.
It makes use of “custom parameter” feature.
Inserting shortcode inside attributes is tricky. WordPress is confused and fails to parse.
Create a single shortcode named maps
Put this a content<div align="center"> <div class="gmap_canvas"><iframe id="gmap_canvas" src="https://maps.google.com/maps?q=%%city:austin%%,%%state:texas%%&t=&z=13&ie=UTF8&iwloc=&output=embed" width="100%" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"> </iframe></div> </div>
Here city and state are the custom parameters with default values Austin and texas. These can be changed when using the shortcode.
Now use the shortcode
[sc name="maps" city="denver" state="colorado"]
That’s it!
Thanks,
AakashAakash
KeymasterHi Terence,
Can you please share your website URL?
I’ll share CSS to change the color.Thanks,
AakashMarch 12, 2022 at 1:38 pm in reply to: When I publish the bar, this bar covers the logo and the menu of the page #10807Aakash
KeymasterHi @jefferyclark,
I’m checking. Seems like a theme problem. I’ll see if I can suggest any workaround.
Thanks,
AakashAakash
KeymasterHi there,
Sorry for the late reply. I missed to follow up on this.
Could you please clarify if you want to set your logo as the image for the button?
Thanks,
AakashAakash
KeymasterHi Stan,
Sorry for the super late reply.
I guess you are talking about “hypens”?
Hypens are already allowed. You can pull a custom field which has a hypen like$$custom_field:hello-world$$
Thanks,
AakashAakash
KeymasterHi Alicia,
The “header” element of elementor is displaying over the announcement bar.
Please check if you can move/configure the header a bit down.
If there are no options to do that, then I will suggest some CSS to forcefully move it down.
Thanks,
AakashAakash
KeymasterHi @peterburgey,
Thanks for using Shortcoder.
I’m sorry to say that this feature is not supported considering it is not safe to display query value directly on the page. Users may execute malicious code which will execute directly on the page.
I would suggest writing your own shortcode using PHP so that you can clean the query value before working with it – https://codex.wordpress.org/Shortcode_API
Thanks,
Aakash -
AuthorPosts