Rafa? Ca?ka
Forum Replies Created
-
Forum: Reviews
In reply to: [AI Image Alt Text Generator with GPT-4o] Great pluginWe plan to implement this functionality in a future update.
In the meantime, if you’re comfortable with some basic coding, there’s a workaround you can use. You can add the following code to your theme’s functions.php file or another file that you control:
add_filter('acpl/ai_alt_generator/user_prompt', function($user_prompt, $attachment_id, $locale, $language) {
if( empty($user_prompt) ) {
$user_prompt = 'Your Custom Prompt here...';
}
return $user_prompt;
}, 10, 4);Replace ‘Your Custom Prompt here…’ with the prompt you want to use by default.
This code will use your custom prompt only when the custom prompt field is left empty during generation.
Forum: Plugins
In reply to: [AI Image Alt Text Generator with GPT-4o] GPT 4o Mini?Option to select GPT model added in v2.5.0.
https://github.com/android-com-pl/wp-ai-alt-generator/releases/tag/v2.5.0
- This reply was modified 2 months ago by Rafa? Ca?ka.
- This reply was modified 2 months ago by Rafa? Ca?ka.
Forum: Plugins
In reply to: [Simple Local Avatars] Gravatar avatars not workingexpected result is that the Gravatar would be displayed
Yes, but the default Gravatar is displayed instead of the Gravatar set by the user.
Let me try to explain with an example:
This is your Gravatar, and it is displayed when you have not set your custom one with SLA (2.7.7):
But after upgrading to 2.7.8, this one is displayed:
The only difference is the version of the plugin. The rest of the setup is the same.
- This reply was modified 6 months, 2 weeks ago by Rafa? Ca?ka.
- This reply was modified 6 months, 2 weeks ago by Rafa? Ca?ka.
- This reply was modified 6 months, 2 weeks ago by Rafa? Ca?ka.
Forum: Plugins
In reply to: [Simple Local Avatars] Gravatar avatars not workingSame problem. After upgrading to 2.7.8, when a user does not have a local avatar but uses Gravatar, the default Gravatar avatar is displayed instead of the user’s avatar, as if the user had no avatar set. The ‘Local Avatars Only ’ option is disabled.
After rollback to 2.7.7 this works correctly.
- This reply was modified 6 months, 2 weeks ago by Rafa? Ca?ka.
Forum: Reviews
In reply to: [AI Image Alt Text Generator with GPT-4o] Works Perfect – Thank you.- The option to generate alts in bulk is now available: https://github.com/android-com-pl/wp-ai-alt-generator/releases/tag/v2.1.0
Forum: Reviews
In reply to: [AI Image Alt Text Generator with GPT-4o] Excellent Plugin!The option to generate alts in bulk is now available: https://github.com/android-com-pl/wp-ai-alt-generator/releases/tag/v2.1.0
Forum: Reviews
In reply to: [AI Image Alt Text Generator with GPT-4o] Works Perfect – Thank you.- This is planned for the next version. https://github.com/android-com-pl/wp-ai-alt-generator/issues/1
- Nice idea!
Both things will be added when I find some time.
Forum: Plugins
In reply to: [LiteSpeed Cache] Plugin update has reset image optimization data@qtwrk Sorry for the late response. Clearing the Cloudflare cache helped previously. I’m now on version 5.7.0.1, but the optimization issue persists and hasn’t improved much. Currently, only 34% (22% was 3 month ago – see first post) of the images have been optimized over these three months. At this rate, it will take years to optimize them all. Something still seems off. Is there a way to fix this? Before version 5.4, I had 100% of my images optimized. It would be ideal to somehow restore the optimization data that was reset, rather than re-optimizing everything from scratch
I’ve noticed a problem in the database table
wp_litespeed_img_optm
. There are numerous empty records withpost_id
0 and emptysrc
:There are about 15,241,411 of these on a total of 15,246,335 correct ones. Should I delete them?
There are also images that have
src
set but thepost_id
is 0:Additionally, in the
wp_litespeed_img_optming
table, I see records with emptyserver_info
. Should these be removed as well?Report number: UJGRYHQP
- This reply was modified 1 year ago by Rafa? Ca?ka.
Forum: Plugins
In reply to: [LiteSpeed Cache] Plugin update has reset image optimization dataI have installed version 5.5.1 and now I have thousands of such errors:
Failed to download original images
Images have changed since the original optimization request in node 81.31.156.245. 6 images in total, sample URLs: https://static.**************- This reply was modified 1 year, 3 months ago by Rafa? Ca?ka.
Forum: Plugins
In reply to: [LiteSpeed Cache] Plugin update has reset image optimization dataThe problem occurs on the production site, so I will wait until the stable version comes out.
Same here
Forum: Plugins
In reply to: [LiteSpeed Cache] How to preload cache after publishing a post?You finally understood what I described in the topic ??
That’s why I ask what could be missing in the request. See the code I provided at the beginning. If you are not a developer, then let’s wait for someone more technically knowledgeable in LiteSpeed like @qtwrk.
- This reply was modified 2 years, 9 months ago by Rafa? Ca?ka.
- This reply was modified 2 years, 9 months ago by Rafa? Ca?ka.
- This reply was modified 2 years, 9 months ago by Rafa? Ca?ka.
- This reply was modified 2 years, 9 months ago by Rafa? Ca?ka.
Forum: Plugins
In reply to: [LiteSpeed Cache] How to preload cache after publishing a post?No, LScache is a webserver based HTTP cache. All others use PHP.
My point was that caching of the page is triggered in the same way. By the first visit.
And yes, I verified the request and all the time I am trying to tell you that it works and is correct. The problem is that LSCache does not cache such request.
Forum: Plugins
In reply to: [LiteSpeed Cache] How to preload cache after publishing a post?I send a GET request to the address of a newly created WordPress post. WHAT DOES NOT WORK is caching this WordPress post
The plugin I mentioned works with other Full Page Cache systems that work the same way as LiteSpeed. That is, the first visits to the page cache it. For some reason this doesn’t work with LSCache when the request doesn’t come from a real browser.
The problem is not with these plugins, but with LSCache. I suppose there is some header missing in the request.
Forum: Plugins
In reply to: [LiteSpeed Cache] How to preload cache after publishing a post?@serpentdriver And it is requested. This is exactly what the plugin I mentioned and my code does.