Gora Tech
Forum Replies Created
-
@pwsherman After some back and forth via email I think you have pointed out a bug here which is fixed in development and will be deployed with the next version.
https://github.com/XjSv/Cooked/commit/92fc4d1ee2d060418714033ee2ff42ce0a3af835
Thank you for bringing this to my attention.
Hello there @pwsherman would you mind sharing the URL of your site. Also if you don’t mind reaching out to me via support[at]cooked.pro we can definitely get this sorted out.
It might be easier via email in case we have to share any sensitive information.
Forum: Plugins
In reply to: [Cooked - Recipe Management] CVE-2025-68586Hey @michaelbourne, as of today Patchstack has marked the vulnerability as ‘patched’.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Layout. messed upExcellent, I’m glad you got it resolved.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Layout. messed upHello @abu117 It seems that the post content area is moved to the sidebar. Can you try to click it and drag it into the main area?
Let me know if that works.
Forum: Plugins
In reply to: [Cooked - Recipe Management] CVE-2025-68586Hello @michaelbourne, there must have been a miscommunication about this since i was never notified by patchstack prior to them publishing it. I am working with them now to get the details and will release a patch ASAP.
Thank you for bringing it to my attention.Forum: Plugins
In reply to: [Cooked - Recipe Management] Image appearing twice@abu117 I received your email and sorry about that, I just noticed that I had missed a line:
add_filter( 'cooked_measurements', 'custom_cooked_measurements', 10, 1 );Forum: Plugins
In reply to: [Cooked - Recipe Management] Image appearing twiceHey @abu117 I’m glad it worked. And yea you can definitely customize it but it requires a little bit of code. For example if you wanted to add Deciliter or Centiliter you could use something like this:
function custom_cooked_measurements( $measurements ) {
// Add "Deciliter"
$measurements['dl'] = array(
'singular_abbr' => esc_html__( 'dl', 'cooked' ),
'plural_abbr' => esc_html__( 'dl', 'cooked' ),
'singular' => esc_html__('deciliter','cooked'),
'plural' => esc_html__('deciliters','cooked'),
);
// Add "Centiliter"
$measurements['cl'] = array(
'singular_abbr' => esc_html__( 'cl', 'cooked' ),
'plural_abbr' => esc_html__( 'cl', 'cooked' ),
'singular' => esc_html__('centiliter','cooked'),
'plural' => esc_html__('centiliters','cooked'),
);
// Return customized array
return $measurements;
}I know this is a little technical and if you need help getting it done I can help you do it if you set me up with a temporary login. If you do decide to give me access you can email me at support[at]cooked.pro with any sensitive information.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Image appearing twiceHey @abu117 let me know if that worked for you. Otherwise I’m going to mark this thread as resolved.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Recipes list emptyNo worries, reach out if you need help with anything else.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Image appearing twiceHello @abu117, Cooked works with shortcodes. If you click edit on any of your recipes, you will see the “Recipe Template” field which contains many shortcodes that make up the recipe page.
Depending on the theme that you are using, the featured image can be handled differently. Since your theme is already displaying the featured image, what you can do is simply delete the “[cooked-image]” shortcode in the Recipe Template field.
Then click the “Save as Default” button right on top of the field to open up the popover, then click “Save as Default” again and also click “Apply to All“. This will apply the new template, without the [cooked-image] shortcode to all of your recipes.
Hope this helps and let me know if you have any questions.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Migration of recipesHey @alukacshu, version 1.11.2 was just released that includes the fix that will automatically repair any bad data with recipes. Allowing you to export and import them.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Migration of recipesHello @368durham, I already have a solution in place for this and will be coming out in the next version which is being tested. There were a couple of small regression issues found during testing that is holding it up, but it should be ready soon.
If you want to reach out to me via email at support [at] cooked.pro I can send you an early release that you can use for doing your migration.
Let me know if you are ok with this.
@jamesosborne Thank you for the help with troubleshooting.
I did step #3, resetting Site Kit via (Tools > Available Tools > Reset Site Kit) and it worked.
No problem @jamesosborne.
There are 2 verification methods:
- Parent property – Successfully verified
- Domain name provider – Successfully verified
I’ve also submitted a screen recording using the same private form as before, as requested. The video was recorded in an incognito Chrome window with the browser console open throughout the process.
As for the
.htaccessfile, it’s using the standard WordPress rules along with the Wordfence WAF configuration, which is consistent across all of my sites. Here’s a copy for reference:# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /demo/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /demo/index.php [L]
</IfModule>
# END WordPress
# Wordfence WAF
<IfModule mod_php5.c>
php_value auto_prepend_file '/var/www/site/wordfence-waf.php'
</IfModule>
<IfModule mod_php7.c>
php_value auto_prepend_file '/var/www/site/wordfence-waf.php'
</IfModule>
<IfModule mod_php.c>
php_value auto_prepend_file '/var/www/site/wordfence-waf.php'
</IfModule>
<Files ".user.ini">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</Files>
# END Wordfence WAFThere aren’t any additional custom firewall rules for this particular site. It’s worth noting that I have 6 other sites running on the same server with the same setup—including the same
.htaccessand WAF and none of them are experiencing issues with Site Kit or any other plugins.Let me know if you need anything else from my end.