Forum Replies Created
-
AuthorPosts
-
AakashKeymasterHi Ed,
As you have mentioned in the comments below
It’s not working with these languages. In these examples there is no spaces or a few of them. That’s why the plugin counts it as 1 word:
你是否注意过每天在我们城市工作的环卫工人?他们几点钟起床,几点钟下班?一个环卫工人每天需要捡多少垃圾?这个视频带你体验环卫工人一天的日常Thai language: 2 spaces, and 3 words as your plugin counts it.
บทสัมภาษณ์ระหว่างนักแสดงชายที่พึ่งสูญเสียเพื่อน กับหนึ่งในอาสมัครจากองค์กรสะมาริตันส์ที่ให้บริการทางด้านให้การปรึกษา และเชื่อว่าการฟังด้วยใจจะช่วยทั้งตนเองและผู้อื่นIt’s better to trim by characters and add this ability in the shortcode.
As I understand, in your case if strip desc is set to 50 then the content is more right ? You want it to be shorter as in some languages 1 word is longer.
In that case, can you please set strip desc to 3 or 4 ? so that the description length is smaller.
Please correct me if I misunderstood.
Thanks,
Aakash
AakashKeymasterHi Ed,
Super RSS Reader already uses
wp_trim_wordsto trim text of any language. Please see link below.https://plugins.trac.wordpress.org/browser/super-rss-reader/trunk/includes/feed.php#L180
wp_trim_wordstrims even if the language uses single character as a word. See description below.This function is localized. For languages that count ‘words’ by the individual character (such as East Asian languages), the $num_words argument will apply to the number of individual characters.
I do not understand east asian languages. Please give an example on what your are expecting. That would be helpful.
Thanks,
Aakash
AakashKeymasterCheers !
AakashKeymasterInstead of this
$a = explode('KB', $desc);use this
$a = preg_split('/ (KB|MB) /', $desc);
AakashKeymasterRevert back the change I last asked.
Now, paste these lines
$a = explode('KB', $desc); if(count($a) > 1){ $desc = $a[1]; }else{ $desc = $a[0]; }after this line
$desc = str_replace( array( "\n", "\r" ), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ) ) ) );
AakashKeymasterPlease hold on..
AakashKeymasterCan you please try the suggestion I have mentioned earlier ?
AakashKeymasterIs it possible to remove it in the RSS feed itself ?
RSS reader will display the description as is. The plugin has no idea about the text.
Other suggestion I can think of is in feed.php search for below line
$desc = str_replace( array( "\n", "\r" ), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ) ) ) );and replace it with below
$desc = str_replace( array( "\n", "\r" ), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ), '<span>' ) ) );Then use the CSS
.informations{display: none}Thanks,
Aakash
AakashKeymasterHi @Ed,
Sorry I was not aware that you used the PRO version.
Good that you were able to change the 3 lines yourself.
Regarding the additional text, that is coming from the RSS feed.
You can use CSS to hide it.Can you please share me the page where it is used ?
I’ll suggest CSS to hide them.
AakashKeymasterYou’ve made the change incorrectly.
Please copy full file from here – https://pastebin.com/vv0BcFD2
AakashKeymasterOk.. you have to edit the code a bit. I haven’t tested, but you can give a try.
Replace lines 275, 276 and 277 like below in
https://plugins.trac.wordpress.org/browser/super-rss-reader/trunk/includes/feed.php#L275275 if( !empty( $urls ) && isset( $urls[1] ) ){ 276 return $urls[1]; 277 }Here you can change 1 to n-1th image you would like to pick. i.e if 2nd image then 1. if 3rd then 2.
Please disable the plugin before making any modification.
Thanks,
Aakash
AakashKeymasterHi,
If image is not found in the first 3 locations then the image will be picked from the
tag present in the description.
Please do try the RSS feed and see if you are getting the expected image.
Thanks,
AakashNovember 12, 2020 at 3:52 pm in reply to: How to show images in the feed? Chinese twitter like site: weibo’s feed. #8368
AakashKeymasterCheers !
November 11, 2020 at 1:00 am in reply to: How to show images in the feed? Chinese twitter like site: weibo’s feed. #8364
AakashKeymasterHi,
Can you please press ctrl+shift+i in chrome and see the details error message.
Since you say error code is 403 it means it is “forbidden” it is possible that weibo is not allowing to hotlink the image from another website ?
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403Please look at the errors in your browser console for more detailed information.
Thanks,
Aakash
AakashKeymasterHi Anton,
Thanks for using Shortcoder. Happy that you like the plugin.
So as I can understand, you will be creating multiple shortcodes for the text “my text 0x” which has to be used elsewhere.
So my suggestions are
1) Utilize “custom parameters”
i.e Create 1 shortcode, have placeholders in them and change the value when you are using them in posts/pages. See below page for the documentation.
a) https://www.aakashweb.com/docs/shortcoder/custom-parameters/
b) https://www.aakashweb.com/docs/shortcoder/shortcode-parameters/ (shortcode enclosed content)2) Manage multiple shortcodes by assigning tags using which you can filter.
Regarding your proposal, I’m happy that you have taken time and have shared it with me. I’ll sure evaluate and consider them based on the multiple user requests and efforts needed from my side to implement the same.
For now please do try above suggestions which I think would be helpful.
Thanks,
Aakash -
AuthorPosts
