S?ren Wünsch
Forum Replies Created
-
@pross Thanks, but the issue is still not fixed.
I added a new translation for the german readme.
“Rank Math übertrifft alle seine Konkurrenten um L?ngen.”
You can reset the post and insert only strings.
wp.data.dispatch( 'core/editor' ).resetBlocks( wp.blocks.parse( 'My content' ) );
You can create blocks and insert them into the content.
const newBlock = wp.blocks.createBlock( "core/paragraph", { content: 'This is the content', }); wp.data.dispatch( "core/editor" ).insertBlocks( newBlock );
Forum: Reviews
In reply to: [Gutenberg] Useless PluginThanks for the review. What exactly makes the plugin more difficult for you?
Forum: Plugins
In reply to: [Lazy Loading Feature Plugin] iFrame Support for Lazy Loading Feature Plugin<iframe> is going to be considered separately for inclusion in the specs. See https://github.com/WordPress/wp-lazy-loading/issues/3
Forum: Reviews
In reply to: [Gutenberg] NopeNiemand zwingt dich dazu den Block Editor zu nutzen, es gibt viele Alternativen, die sich leicht als Plugin installieren lassen.
Forum: Plugins
In reply to: [Gutenberg] Disable video loop in cover blockHey, to disable this feature, you have to add a filter to the save function of the block and override the cover block.
wp.hooks.addFilter( 'blocks.getSaveElement', 'cover/disableAutoPlay', disableAutoPlay ); function disableAutoPlay( element, blockType, attributes ) { if ( blockType.name !== 'core/cover' ) { return element; } return ( // use the save function of the cover block and modify it. ); }
An alternative would be to disable this attribute via JS on the frontend.
- This reply was modified 5 years, 6 months ago by S?ren Wünsch.
- This reply was modified 5 years, 6 months ago by S?ren Wünsch.
Forum: Plugins
In reply to: [Gutenberg] Why is there no block for adding a URL to image (not in caption)?Hi @capri914,
we are working on this feature, it should be available soon. See: https://github.com/WordPress/gutenberg/pull/15570Forum: Plugins
In reply to: [Gutenberg] Heading Block Not WorkingCan you describe what happens? Do you know how to add a heading? Can you add the heading block? Can you edit the heading block?
Forum: Plugins
In reply to: [Gutenberg] Why is every paragraph a seperate block?What is the problem about every paragraph is a block?
Forum: Plugins
In reply to: [Gutenberg] How to created semantic htmlWhat is your exact question?
Forum: Plugins
In reply to: [Gutenberg] Must Diplicate to Move BlockHave you tested this issue with the current Gutenberg Version 5.9? I can’t reproduce it.
Forum: Plugins
In reply to: [Gutenberg] Twitter embed — limit tweets?No, Gutenberg embed blocks don’t have options yet.
Beside that twitter has no parameter to specify the number.Forum: Fixing WordPress
In reply to: Impossible to embed Vimeo videos anymoreI tested the Vimeo video with your URL (https://vimeo.com/333519775) on WordPress 5.2.1 and can reproduce the problem. If I install the Gutenberg plugin, everything is working.
So this issue should be fixed in the next WordPress update.
- This reply was modified 5 years, 9 months ago by S?ren Wünsch.
Forum: Plugins
In reply to: [Yoast SEO] Disable Extra Schema in YOAST 11.0add_filter( 'wpseo_json_ld_output', '__return_false' );
source: https://developer.yoast.com/schema-documentation/api/#disable-schema