Matthias Baier
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Slider not working on second pageYes, I checked that code. However it only loads gutenslider’s css-file not the js-file that needs to be loaded too for the slider to work.
Your code only works if this code is added when you register the block in init.php
‘script’ => ‘eedee-gutenslider-front’,Your Recording exactly does, what I would expect it to behave. I just found out it works in Chrome (91.0.4472.114) and I was editing the site in Firefox (89.02).
As far as I have tested, this only happens in Firefox (older Version too). Safari, Chrome and Edge behave like your video.
Thanks a lot for your help. For now, this issue is solved for me. I only have to watch out not to develop the other way round. 🙂- This reply was modified 4 years, 10 months ago by Matthias Baier.
Jap, I can confirm, if I deactivate Yoast the functionality comes back.
It’s like you would select Paragraphs in Word: Go into some point into your paragraph and do a click-drag to select all paragraphs you like.
Standalone Gutenberg then starts selecting all the blocks your drag over with your mouse. With Yoast active I can only select one block and no more.
I deactivated all other plugins to be sure. Themes I tested with: twentytwenty, twentytwentyone and my own one. Shall I report this in your bugs in github?Thanks a lot.
For now I used the former snippet with network_site_url. It works in my tests. Let’s hope the plugin author adds this code.
I’ll try your snippet with the language parameter soon. Will probably need this with a woocommerce-polylang-combo.Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Editor Controls disapearI deactivated all other plugins and the problem remained.
I then switched the theme to twentytwenty and the problem went away. So it might be also a theme related issue.
The theme I was using is called seedlet (from Automattic) – So far I can only randomly reproduce it.
It only happens in Fullscreen-Mode.
So here’s how I almost every time can reproduce this:
Have the editor-settings like this: Floating-Toolbar, Spotlight off, Fullscreen off. Select a block in editor – now change to fullscreen-mode and select Gutenslider-block. Interface-Controls(Pencil for Gutenblock) are gone. Selecting other blocks to see their controls gone too.
Getting them back I have two choices: Go back to normal-screen-mode or turn on top-toolbar on and off.
Superweird…- This reply was modified 5 years, 2 months ago by Matthias Baier.
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Editor Controls disapearWodpress is current Version 5.6.1
Gutenslider Version is 4.5.0I will now check, if it is some plugin-issue of some sort. Selecting slides via “outline” is not working. The controls stay empty.
Forum: Fixing WordPress
In reply to: Guttenberg Tips Pop-UpThere is a plugin-solution to your problem here:
https://de.wordpress.org/plugins/blockeditor-fullscreen-mode-control/As a matter of fact, I totally agree with Carl on this point. I have this plugin active on all of my sites. Set an forget.
The out-of-the-box-behaviour is just making people not like Gutenberg.
@catedsmith the backend-styles are inline-styles, which are hard to overrride.
You could use !important, to make your class win inside the backend.
Another way to achieve this would be to define your presets in your functions.php like this:add_theme_support( 'editor-font-sizes', array( array( 'name' => __( 'Normal', 'your-theme-text-domain' ), 'shortName' => __( 'N', 'your-theme-text-domain' ), 'size' => 14, 'slug' => 'normal' ), array( 'name' => __( 'Medium', 'your-theme-text-domain' ), 'shortName' => __( 'M', 'your-theme-text-domain' ), 'size' => 16, 'slug' => 'medium' ) ) );However, I’m trying to find out a way to solve this more elegantly. A JavaScript should do the trick. I also went away from using pixel sizes for fonts a long time ago… Quite some work still ahead…
- This reply was modified 5 years, 3 months ago by Matthias Baier.
Forum: Fixing WordPress
In reply to: WP 5.6.1 font size list not working for paragraph blockYou can try and install the Gutenberg-Plugin from wordpress-repository. This should remedy your issues for now. I usually would not recomend downgrading WordPress to an older version.
The current Gutenberg-Plugin-Version will be part of WordPress 5.7 as I couldn’t find out how long I will have to wait for 5.6.2. I have this problem too on my customers’ sites. Not amused… Paragraph-Block???Forum: Plugins
In reply to: [Nested Pages] Menu does not syncI’ve been using this plugin for quite some time now.
Not syncing menu just happens sometimes – as well as duplicated menu items.
The usual way I solve this problem is to go to the menu-section and delete nested-pages’ menu completely.
Then refresh the page to let nested pages recreate it’s menu.
Next switch it’s position within the theme back on.
I would not recommend renaming the menu to something else.- This reply was modified 6 years, 10 months ago by Matthias Baier.
Forum: Plugins
In reply to: [Classic Editor] classic editor – toolbar problemI already solved my problem yesterday by deactivating that filter…
But you have an interesting combo of editor-plugins there. Didn’t know WP Edit.
I personally switch to Gutenberg now. Even if it feels still like beta in some areas.
Forum: Plugins
In reply to: [Classic Editor] classic editor – toolbar problemHave a look into your functions.php and check if there is some line like this one:
add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' );It was in my init-hook instructions to disable emojis. Maybe this helps.
- This reply was modified 6 years, 10 months ago by Matthias Baier.
Forum: Plugins
In reply to: [Classic Editor] classic editor – toolbar problemI looks like a theme related issue here with my installation. I use a child-theme for twentyfifteen.
Switching the theme restores functionality. But I don’t know why yet. I is definately an error with my child-theme here, since the error is not showing up in twentyfifteen.- This reply was modified 6 years, 10 months ago by Matthias Baier.
Forum: Plugins
In reply to: [Classic Editor] Rollback to WP 4.9I also recomend the classic editor plugin. Matt Mullenweg promised at the WCEU it would be there for many years.
Forum: Plugins
In reply to: [Classic Editor] classic editor – toolbar problemI have this problem too. I can’t even update a simple link.
Will have to dig into this today…