blauweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Duplicate Page] JSON parse error with custom blockHi @celesmitchell23,
I had to change the plugin, because the support team was insisting, that the parse error was not caused by their code, despite showing them screenshots of how their code changes escaped quotes for JSON strings stored in a block prop after duplication, which was the underlying cause of the parse error.
Forum: Plugins
In reply to: [Duplicate Page] JSON parse error with custom blockThank you for your reply. I have send the detail to the provided E-mail.
Forum: Plugins
In reply to: [WooCommerce] database error Unknown column ‘is_read’ in ‘field list’Forum: Developing with WordPress
In reply to: React Error #321 for Custom BlocksHi,
I’m a webapp freelancer, and I’m currently expanding my skills with WP Gutenbergs custom blocks.
I run into the same error while developing my first custom block, and in my case the origin of the error was in the save() function of the custom block .js file.
It was due to the fact, that my RichText element was wrongly rendering. Whereas in the edit() function you just use “<RichText />”, in the save() function I had to refer to <RichText.Content />, which resembles my attributes structure -> attributes:{content: {…}}.I hope this will help you solve your issue.
- This reply was modified 4 years, 4 months ago by blauweb. Reason: typo