Boxy Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [Cooked - Recipe Management] Categories Not WorkingCheck your recipe slug on the Recipes > Settings > Permalinks tab and make sure it’s different than the page slug for recipes. Right now you have the page slug set to “recipes”, so if the single recipe slug is also “recipes” you will get the 404 page. Make sure the single recipe slug is set to “recipe” without the “s”.
Forum: Plugins
In reply to: [Cooked - Recipe Management] import recipies to another domainThat’s very odd. The directions are part of the post meta field “recipe_settings” so I’m not sure why those would have been stripped out. This was exported from the same Cooked plugin version?
Forum: Plugins
In reply to: [Cooked - Recipe Management] import recipies to another domainYou should be able to export using the default Tools > Export feature. Choose Recipes first and export that, then to be sure that media (images) come over, export the Media separately.
Then when importing, just import the Recipes file (no need to check the box to import media there), then when you import the Media file, you will want to choose to import the media (checkbox).
Forum: Plugins
In reply to: [Cooked - Recipe Management] Resize Main Image (Featured Image)You can add Custom CSS via the WordPress Customizer: http://dinevthemes.com/custom-css-wordpress-customizer/
Forum: Plugins
In reply to: [Cooked - Recipe Management] Resize Main Image (Featured Image)@serahp: What I would do here is contain the content area to a max width of 800px. Something like this should work:
article.cp_recipe .entry-content { max-width:800px; margin:0 auto; }@bonjovicrzy41: I wasn’t able to see a recipe on that site.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Resize Main Image (Featured Image)@serahp: Definitely! I just need a URL to take a look at for each of you to provide the CSS. Each theme is different and more than likely has different CSS classes to hook into.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Resize Main Image (Featured Image)Can you provide me with an example URL?
I can give you some CSS that you can apply to the Customizer to globally set the size.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Search only in titlesNot at this time, but you could write a custom filter to handle this. If you aren’t familiar with code, you could pay a developer to do so.
Thanks!
Forum: Plugins
In reply to: [Cooked - Recipe Management] RedirectionThis is the way it works at the moment. The redirect takes you to the “Browse Page” with the category selected. This was the only way I could make it work at the time, but I’m looking into a better solution.
Thanks!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Fonts sizeHey there!
Cooked uses “rem” font sizes, which depend on the theme to tell it what size to use as the default “1rem” size. If the theme doesn’t include a default font size, it is 12px. What you can do is add some custom css to fix this:
html { font-size:16px; }Or “15px”, or “20px”. Whatever you want!
You will find the Custom CSS tab on the WordPress Customizer from Appearance > Customize.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Export recipeNot at this time, but I definitely plan on adding export/import features soon. 🙂
Forum: Plugins
In reply to: [Cooked - Recipe Management] Cannot modify/edit/post new recipesThis is very strange! Can you submit your information as a bug report here so I can take a look?
https://cooked.pro/bug-report/
Thanks so much!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Cooked shortcodes not working in Elementor Pro?The latest version 1.5.3 includes Elementor support. 🙂
The latest version 1.5.3 includes Elementor support. 🙂
This is based on Percent Daily Value, which I have entered as 65% (total fat), but you are indeed correct that for saturated fat, this should be 20%. I will update this in the next version.
To fix it now, open up the following file:
/cooked/includes/class.cooked-measurements.phpAnd go to Line 178:
'pdv' => apply_filters( 'cooked_pdv_satfat', 65 )Change the “65” to “20” there.