Riad Benguella
Forum Replies Created
-
Forum: Reviews
In reply to: [Gutenberg] Will be Great When CompleteSome things you can try:
– Open the browser’s console and see if there’s any JavaScript error or network request error
– Do you use Cloudflare or a security plugin?
– You can try to disable plugins one by one to see if there’s any conflict with other plugins.Forum: Reviews
In reply to: [Gutenberg] Will be Great When CompleteThanks for the review!
> I’ll give Gutenberg a five when it’s fully functional so that when I click “New page” or “New Post” it pops me up the interface to begin adding blocks. Now it seems I can only use Gutenberg to edit existing posts and pages.
It seems like you’re having a bug that’s probably related to your setup (conflict with one of the other plugins you use on your site).
What happens exactly when you try to create a new post using Gutenberg? Any error on the browser’s console? is it a blank page?
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Blank page when klicking on GCFBy the way, I’m more reactive in Github issues 🙂
- This reply was modified 7 years, 10 months ago by Riad Benguella.
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Blank page when klicking on GCFThanks for catching and debugging the issue. It was indeed a Gutenberg breaking change I missed (wp-utils removal). It should be fixed in 1.5.5. Thanks
Forum: Plugins
In reply to: [Gutenberg] Featured images not shown in post previewHi and thanks for giving Gutenberg a spin.
I think the issue is that auto-saving only saves title/content and excerpt. It’s similar to autosaves in the classic editor. You can try to click “Save Draft” before previewing to see if it’s different.
I guess the classic editor is performing a regular save (instead of auto-save) when working on drafts? I don’t know the details personally but might be better to open a Github issuee https://github.com/WordPress/gutenberg/issues for other contributors more involved with this area to chime in.
Forum: Plugins
In reply to: [Gutenberg] Spotify EmbedHey there!
The Spotify embed is just using the regular OEmbed feature in WordPress. But this sounds like a great feature for a specific Spotify Block.
Are you a developper? Did you take a look at the block creation APIs? https://wordpress.org/gutenberg/handbook/blocks/
I’m pretty sure someone will build this block anyway 🙂
Forum: Reviews
In reply to: [Gutenberg Custom Fields] Not a viable replacement for custom fieldsGutenberg is making the meta fields less important than before, while it’s not very obvious at first, I think this will “click” for many people once we move to customization.
I get that people are used to meta-boxes for custom fields like ACF or the plugin you shared but I bet this will change over time the more we have blocks with great UX solving all those issues.
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Does not save datetime valueYep, that’s definitely needed but good call, we should definitely add that to the documentation somewhere. (It’s already documented in Gutenberg).
Would you mind opening a github issue?
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Blank page when klicking on GCFUnfortunately, I can’t reproduce the error myself (can you check the console?)
Also, I just released a new version with some fixes, maybe you can see if it’s better now?
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Blank page when klicking on GCFThanks for raising this, I’ll take a look and fix that asap.
Forum: Plugins
In reply to: [Averroes] if desactivated ?Hello there!
Nothing will happen when desactivated. The content is written in HTML in Gutenberg blocks serialized as HTML so when you disable it. The content will remain as if you wrote it in Gutenberg.
Forum: Reviews
In reply to: [Drop it] Awesome work !Merci @imath Glad you like it.
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Plan for the pluginHey, Thanks for the review 🙂
> Did you make this plugin just to show an example using the Gutenberg APIs to create custom fields, or are you planning to make this a full fledged custom fields plugin similar to current popular custom field plugins?
I did make the plugin as a proof of concept initially, but people seem to like it. So I’m maintaining it and adding features over time. We’ll see how it ends up, no fixed plan at the moment.
Forum: Plugins
In reply to: [Gutenberg Custom Fields] Works on the inside but not on the outsideHi @karlazz This plugin (at the moment) work the exact same way ACF or any other Custom Fields plugin work. It means, it saves the fields to post_meta but doesn’t render anything on the Frontend, it’s the theme’s author responsibility to render or use these meta fields the way you want.
If you want to build fields and render them in the frontend, you don’t even need them to be saved to meta, you just use Gutenberg as is without any plugins.
Forum: Plugins
In reply to: [Gutenberg] Displaying Inline ToolbarHi David!
The
focusandsetFocusprop have been removed from the API some releases ago. Try removing those. The toolbar should show up when theisSelectedprop is true (it should match the isSelected prop of the block in general).Try these, if it doesn’t work please share the whole
èditfunction of your block.Thanks