Boxy Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [Cooked - Recipe Management] recipe not showing upSounds like maybe there’s an error happening with the nutrition facts that is preventing the recipe from displaying. Can you try to enable WP_DEBUG mode to see if anything shows up?
Forum: Plugins
In reply to: [Cooked - Recipe Management] Printing@jananms: It should definitely be hiding those images. I’m wondering if this is a theme/plugin conflict of some kind?
What I would suggest to be sure is to disable all other plugins and set the theme to use a default WordPress theme like TwentySixteen and see if the problem persists. If it doesn’t persist then we know it’s a theme or plugin conflict. You can then re-enable the theme and each plugin one at a time to see which one breaks the functionality (to narrow it down to what is causing the conflict).
Forum: Plugins
In reply to: [Cooked - Recipe Management] Issue When Clearing CacheSounds like it might be a conflict with a plugin that changes your admin menu in some way, do you have any plugins like that? I’ll look into this further either way, thanks for the feedback!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Can’t add anchor to custom template@robertzas: No worries! I’m glad it wasn’t me, I was going a little crazy! 🙂
Forum: Reviews
In reply to: [Cooked - Recipe Management] Nice plugin@abcking911: Thanks very much!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Can’t add anchor to custom templateIf this worked before and doesn’t work now, it might be happening from another plugin perhaps?
What I would suggest to be sure is to disable all other plugins and set the theme to use a default WordPress theme like TwentySixteen and see if the problem persists. If it doesn’t persist then we know it’s a theme or plugin conflict. You can then re-enable the theme and each plugin one at a time to see which one breaks the functionality (to narrow it down to what is causing the conflict).
Forum: Plugins
In reply to: [Cooked - Recipe Management] Can’t add anchor to custom templateWhere exactly are you adding this, and what is the full link code that you’re using? Thanks!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Partial Measurements Not Working Correctly@jitsiereveld: This is being fixed in the next update, due out later today. Thanks for your patience! 🙂
I think I narrowed down what’s going on here. I tested this three ways:
- New post with embedded recipe
- New post with embedded recipe and some changes made to the code
- New post with Cooked deactivated
For each of those I was seeing two posts created in the database. Upon further digging, I realized the answer is simple. WordPress is creating a new post and a revision post. This happens if you embed a recipe or not, and it even happens with Cooked disabled.
Forum: Plugins
In reply to: [Cooked - Recipe Management] Theme CompatibilityOkay, I narrowed down this bug and will have an update out soon. Thank you!
Forum: Plugins
In reply to: [Cooked - Recipe Management] Is-it possible to customize permalink /recipes ?If you head over to the Recipes > Settings panel, you should see the “Permalinks” tab. From there, you can customize these permalinks. 🙂
And yes, I would love to get a hold of that French translation! 😉
Forum: Plugins
In reply to: [Cooked - Recipe Management] CSS code to format fonts?Any custom CSS code will work, but you would need to figure out what you want to change and then find the matching element for that change. For example, each ingredient has the “cooked-ingredient” class applied, so you could do something like this:
.cooked-ingredient { color:red; }Which would make all ingredients red. This is something that you would need to hire a front-end developer for, or do it yourself if you’re comfortable with it. 🙂
Forum: Plugins
In reply to: [Cooked - Recipe Management] search form@abcking911: This was a bug, thanks for catching it! I’ll have it fixed in the next update. 🙂
Forum: Plugins
In reply to: [Cooked - Recipe Management] Theme CompatibilityI installed the Jupiter theme and wasn’t able to get a sidebar to show up on a single recipe post at all, how did you go about doing that?
Forum: Plugins
In reply to: [Cooked - Recipe Management] Hide data-caption for recipeThere’s no simple way at the moment, but for now you can use some custom CSS:
.fotorama__caption { display:none; }