Boxy Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [Cooked - Recipe Management] Customize the Register and Login Page?Most adjustments can be made with CSS, but anything beyond that really falls into the “custom development” category. I would recommend reaching out to a developer who can help you customize these elements.
Regarding recipe styling, you can adjust what shows up on the recipe template by editing the recipe and moving the shortcodes around to suit your needs. Not sure if that gets you what you need, but it’s a start!
Forum: Plugins
In reply to: [Cooked - Recipe Management] WPML – Recipes Category permalink issueCan you submit your information as a bug report here so I can take a look?
https://cooked.pro/bug-report/
Thanks so much!
Forum: Reviews
In reply to: [Cooked - Recipe Management] Pagination Broken After UpdateYou had mentioned “Cooked Classic” in your original message, which is why I thought you would need that document. Sorry for the confusion!
Forum: Reviews
In reply to: [Cooked - Recipe Management] Pagination Broken After UpdateHey there @tkibler! I just fixed your pagination and sent over a response. Sorry about the delays!
Forum: Plugins
In reply to: [Cooked - Recipe Management] RatingsYou have two choices for ratings with the Pro version. Users can vote from 1 to 5 stars, or a thumbs up/down button.
Forum: Plugins
In reply to: [Cooked - Recipe Management] RatingsNot at this time. Ratings are only available with the Pro version of the plugin.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Print/full screen buttons not workingThere’s a DIV that is overlaid on top of the recipe area. I think this is coming from the theme and I’m not sure what it’s used for. You can try to simply hide it with some CSS on recipe posts ONLY to solve the issue. I did this and didn’t see any issues with it:
body.single-portfolio .wpb_row .row-bg-wrap { display:none; }You can add Custom CSS via the WordPress Customizer: http://dinevthemes.com/custom-css-wordpress-customizer/
Forum: Plugins
In reply to: [Cooked - Recipe Management] Permalink Structure & PaginationCan 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] Edit Recipes Detail pageRight now this is not possible without custom development. I’m working on a good way to support custom templates in the future though.
Forum: Plugins
In reply to: [Cooked - Recipe Management] anyway to set an outline style?With some custom CSS sure. This isn’t a forum for CSS coding help though, only plugin support for Cooked. You can add custom CSS via the WordPress customizer (Appearance > Customize).
Forum: Plugins
In reply to: [Cooked - Recipe Management] Self hosted video supportUnfortunately Cooked doesn’t fully support self-hosted videos at the moment. It’s something I’d like to add soon however.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Create Offset PostThe “You may also like” section is not coming from the Cooked plugin. You would need to ask the theme developer for guidance or if that’s coming from a different plugin, then you’d ask the plugin developer.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Extract data from RecipesTry the following:
mywebsiteURL/wp-json/wp/v2/cooked_recipe?_embed&per_page=99
Forum: Plugins
In reply to: [Cooked - Recipe Management] Quick fixThank you @zorkman777! I’ll make sure this is added to the next release!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Change Default Checkboxes in PrintThere is a built-in filter for this called “cooked_default_print_options”. You can add some custom code (as a new plugin, ideally) that would handle the filtering as such:
add_filter( 'cooked_default_print_options', 'custom_cooked_print_options', 10, 1 ); function custom_cooked_print_options($defaults){ $defaults = array( 'print_options_title' => 'checked', 'print_options_info' => '', 'print_options_excerpt' => '', 'print_options_images' => '', 'print_options_ingredients' => 'checked', 'print_options_directions' => 'checked', 'print_options_nutrition' => '', ); return $defaults; }- This reply was modified 6 years, 10 months ago by Boxy Studio.