novaclic
Forum Replies Created
-
Forum: Plugins
In reply to: [Real-Time Find and Replace] basic text not matchingThank you Marios for your suggestions.
I suspected a hidden character, that’s why I used the “source code” view and copy-pasted the strings, but with no result.I’ve tried the step 3, and found out that indeed the issue is between the ‘s’ (of string “articles”) and the number “13”.
I’ve “saved as” the source code, and opened it in an hex-editor. I found the ‘s’ (from articles) : 0x73 followed by 0xC2 and 0xA0 (instead of expected 0x20 space):
Bingo, “Hex C2A8 is UTF8 for non-breaking space”–> I finally managed with a regexp to match something that I couldn’t see:
/articles\xC2\xA013/
will match “articles 13” with an invisible UTF8 non-breakable space.
- This reply was modified 4 years, 2 months ago by novaclic. Reason: typo correction
Forum: Plugins
In reply to: [RSSImport] Sort feed results ASC by pub dateYou may change the order before submitting the feed to RSSimport, for instance using yahoo pipes.
I’ll however consider adding this option in a futur release.
Forum: Plugins
In reply to: [RSSImport] Unable to display more than 10 post feeds no matter setting@fms9532: sorry for the late reply.
Your source feed (https://nomtbf.com/feed/) has indeed only 10 items (display in browser, view source, search for
<item>
and count).RSSimport cannot display more items than available in the source RSS ??
Forum: Plugins
In reply to: [RSSImport] Date Not ShowingYour feed is not a regular RSS feed.
Have a look at the RSS spec to idenfify with fields are valid in RSS format:
https://cyber.law.harvard.edu/rss/rss.htmlThe plugin uses either simplepie or magpie, both included in wordpress.
Thus, you may want to look into this direction.
Forum: Plugins
In reply to: [RSSImport] Date not showingHello,
I’ve checked your feed (https://onlinelibrary.wiley.com/rss/journal/10.1111/%28ISSN%291468-0327) and currently, there is no “pubdate” data. Thus, there is no date available for display!
Okay, understood… and enought votes!
I’ll add this feature to the todo. I plan to release an updated version in june-july timeframe, stay tuned!
Nobody ?
??
Ok, thanks for the follow’up !
Forum: Plugins
In reply to: [RSSImport] Causes columns to wrapHello bradyvolpe, can you elaborate a bit more?
Where do you see this? With any (all) browser? Which version of wordpress?
Thx
Forum: Plugins
In reply to: [RSSImport] WP3.5- use as widget – panel collapse and cannot editOutch, another browser related issue ??
I’ll try to figure out.
Forum: Plugins
In reply to: [RSSImport] Unable to display more than 10 post feeds no matter setting@leadology: sorry, missed your question. Yes, it is a shortcode (to be used in a post or a page), and you may choose the number of items from your feed you want.
@fms95032: have you made sure that your feed (source) has more than 10 items? If yes: could you post the code you use to display your feed?
As said, it’s working live and in my test environnement!
Forum: Plugins
In reply to: [RSSImport] Unable to display more than 10 post feeds no matter settingJuste checked using this sample code:
[RSSImport display=”15″ feedurl=”https://www.codepromo.com/rsswpo.php” displaydescriptions=”true” html=”true” start_items=”- ” end_items=”
” error=””]
And I indeed go up to 15, as expected…
Forum: Plugins
In reply to: [RSSImport] [Plugin: RSSImport] Style Controlgreat you solved it!
what about setting a very high value, like 999999 ?