Boxy Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [Cooked - Recipe Management] Issue with hidden Vimeo embedsReleasing an update to fix this issue soon. Thanks @lovechard!
Forum: Plugins
In reply to: [Cooked - Recipe Management] German TranslationWhen you say Loco Translate doesn’t work, what do you mean exactly? Cooked is fully translatable and I definitely tested it with Loco. Can you describe the issues you’re having?
Thanks!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Feature proposal: different recipe templatesCooked isn’t designed to work this way at this time. You really shouldn’t put the recipe in two places as this creates duplicate content: https://moz.com/learn/seo/duplicate-content
I would suggest using the single recipe page as the main recipe and then linking to that from your blog post.
You can add HTML links in both:
<a href="https://google.com">Link Text</a>Forum: Plugins
In reply to: [Cooked - Recipe Management] Bug in calculation of amountsI’ll make sure commas work as well, as some countries use commas instead of decimals obviously!
EDIT: Maybe not yet, however. I will probably add an option for this in the future. 🙂
- This reply was modified 8 years, 9 months ago by Boxy Studio.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Bug in calculation of amountsCorrect, only whole numbers and fractions will work. You can enter in any of the following formats:
1
1 1/2
1.75The 1.2 not converting to 1/5 might be an issue though, I will look into that one for sure!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Nutrition facts automatic from baseEventually, with the Pro version, yes. 🙂
Forum: Plugins
In reply to: [Cooked - Recipe Management] Duplicate imageThe first image is probably coming from your theme, you can remove the other image by editing the recipe and removing the [cooked-image] shortcode from the recipe template:
Forum: Plugins
In reply to: [Cooked - Recipe Management] Converting previously created recipe postsThis probably won’t be a direct switch-over, but you can convert posts using a plugin like this one:
https://wordpress.org/plugins/post-type-switcher/
- This reply was modified 8 years, 9 months ago by Boxy Studio.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Plugin breaks on edit partYou should be able to refresh the page to fix this, did the error go away for you on its own eventually? One way to clear it would be to go to the Cooked Settings page and simply save the settings.
I’m going to make sure this isn’t broken with the next update either way! 🙂
Forum: Plugins
In reply to: [Cooked - Recipe Management] Edit plugin without editing plugin filesYou would place this code either in your theme’s functions.php file (easy option) or create a custom plugin that includes the code (best option):
add_filter( 'cooked_measurements', 'custom_cooked_measurements', 10, 1 ); function custom_cooked_measurements( $measurements ){ $measurements['a'] = array( 'singular_abbr' => 'a', 'plural_abbr' => 'aa', 'singular' => 'custom a', 'plural' => 'custom a plural' ); $measurements['b'] = array( 'singular_abbr' => 'b', 'plural_abbr' => 'bb', 'singular' => 'custom b', 'plural' => 'custom b plural' ); return $measurements; }Forum: Plugins
In reply to: [Cooked - Recipe Management] Spacing before Browse.cooked-recipe-search { margin-top:30px; }Forum: Plugins
In reply to: [Cooked - Recipe Management] Sidebar Not showingI responded via email on this issue. Basically, your theme has options for setting the sidebar on Posts, which is what a recipe technically is (a custom post type). So you would need to set the sidebar setting in your Theme Options.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Serving Size 1Head over to the Nutrition tab when editing your recipe. From there you can add the default “Servings”:
Forum: Plugins
In reply to: [Cooked - Recipe Management] Ingredients and steps next to each otherCooked doesn’t handle columns, but using the built in shortcodes and the template content area, you can add your own columns using custom DIVs or by installing a shortcode column creator like this one: