Katsushi Kawamori
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable Generate Thumbnails] Could not loadIn Version 2.19, the administration screen was moved to the submenu of the Media Library. You should be able to see it from there.
On the other hand, we forgot to change the link from the plugin menu, which will be fixed in Version 2.20.Forum: Plugins
In reply to: [PDF Invoice Japan for WooCommerce] キャンセル注文のUndefined array key エラーユーザーのマイアカウントの注文詳細ページでステータスがキャンセルの場合に出るエラーという事でよろしいでしょうか?
最新のバージョン 2.07 で修正しておきました。
- This reply was modified 2 weeks, 5 days ago by Katsushi Kawamori.
Forum: Plugins
In reply to: [PDF Invoice Japan for WooCommerce] メールの文面を変更したい以下のプラグインが、お勧めです。
Forum: Plugins
In reply to: [Plus WebP or AVIF] Transparent PNG backgrounds being converted to blackIt is blocked and I can’t download it.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Transparent PNG backgrounds being converted to blackImages could be retrieved.
I added them to the media library.Plugin deactivated
- The original image is now grayed out and invisible.
Plugin activated- Original code
- The original image becomes grayed out and invisible.
- The webp image is correctly generated into a normal black and white image.
- Your code
- The original image and the webp image will be grayed out and invisible.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Transparent PNG backgrounds being converted to blackThanks your report.
I’m unable to download the image you specified, so we cannot test it. ( Sorry, you have been blocked
You are unable to access sitebolts.com )Forum: Plugins
In reply to: [Bulk Media Register] Can tmp folder be deleted?There is no problem. Just delete the whole folder.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Palette Image Not Supported and PHP Fatal ErrorWodPress has a coding convention. You should write accordingly. You can check it at phpcs.
Your code is hard to read for me. It’s something that can’t be helped because we each have our own way of doing things.Forum: Plugins
In reply to: [Plus WebP or AVIF] Palette Image Not Supported and PHP Fatal ErrorForum: Plugins
In reply to: [Plus WebP or AVIF] Palette Image Not Supported and PHP Fatal Error>> Handling Images Added Manually:
- >> Identify images manually added to the
/uploads/year/date/
directory. - >> Ensure these images are properly linked and added to the WordPress Media Library with correct MIME types.
>> Pre-Functions for Scanning and Adding Images:
- >> Develop pre-functions to scan for manually added images.
- >> Add these images to the WordPress Media Library before conversion.
The above two points are achieved with the following my plugin.
https://www.ads-software.com/plugins/bulk-media-register/The plugin I am looking for is simple: division of labor rather than cramming everything into one plugin.
I am going to remove bulk additions of this plugin as well, since I have added a feature that can be done with WP-CLI regarding bulk additions.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Palette Image Not Supported and PHP Fatal ErrorFixed in Ver 4.08. Added a mechanism to detect the existence of a file at the point where the database is searched, not at the point where WebP is generated.
Thank you for your contribution. I have made you a contributor to this plugin.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Palette Image Not Supported and PHP Fatal ErrorThank you for your detailed report.
It’s possible that when your WordPress added the original file to the media library, you didn’t specify the Mime Type, or it was lost during another process.
Plus WebP searches for files by the Mime Type in the media library.
Please check with something that can view inside the database, such as phpMyAdmin.
You can see it in the post_mime_type column in the table wp_posts.Forum: Plugins
In reply to: [Locale Auto Switch] ロケール切り替えの除外設定について>> 自社での多言語ページの確認をしやすくするために
上記がよくわかりませんが、以下の様なサンプルコードで投稿 ID でフィルタリングする事ができるのではないかと思います。以下は投稿 ID が 924 の場合のみ、日本語のロケールにします。
add_filter(
'locale',
function( $locale ) {
if ( get_the_ID() ) {
924 == get_the_ID();
return 'ja';
}
return $locale;
},
9999,
1
);- This reply was modified 4 months, 2 weeks ago by Katsushi Kawamori.
Forum: Plugins
In reply to: [PDF Invoice Japan for WooCommerce] 計算不具合?どういうクーポン計算ロジックで按分させたのか興味があります。差し支えなければ、コードを提示していただけるとありがたいです。
Forum: Plugins
In reply to: [Locale Auto Switch] ロケール切り替えの除外設定について最新バージョン 1.21 管理画面の言語切り替えをしない設定を付加しました。