networka
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooPayments Tab on 9.4.1??? To show the navigation item PAYMENTS when it is not used and leads to a blank page IS a bug!
Forum: Plugins
In reply to: [WooCommerce] WooPayments Tab on 9.4.1same
Forum: Plugins
In reply to: [Flexible Table Block] Custom paddings for “Stack on mobile”Thanks for the more specific code.
It would be so great if you can think about responsive layout controls to put different values for padding, text size etc. for desktop and mobile.
This would be awesome.
Forum: Plugins
In reply to: [Flexible Table Block] Feature request: Add blocks to table cellsImho you could add a button under “Global Settings” -> “Block based table”. Then the UI will show a little plus in every cell to add different blocks. If this button is not active, it will change nothing for “old” tables.
Would be awesome if this is possible.
I have the exact same problem and it happens quite often. Is there anything to do with the house number validation in germanized set to active?
Thank you!
I still have the issue. WP Cron via WP Toolkit (plesk) worked before 5.2.x. Litespeed Web Server.
WP Cron in MainWP settings is activated.
Only WP Cron of WordPress is deactivated and called via Plesk WP Toolkit Cron Job two times in one hour.
- This reply was modified 1 month, 4 weeks ago by networka.
Any progress for the VPN issue :-/? Otherwise “interaction only” mode can’t be used?
Forum: Plugins
In reply to: [Code Snippets] From PHP 7.4 to PHP 8.0Why does the error occur?
create_function()
removed: In PHP 8.x,create_function()
is no longer available. Attempting to use it results in a fatal error.- Syntax errors due to quotation marks: Curly quotation marks are not recognized by PHP as valid string delimiters and lead to syntax errors.
By implementing these changes, your code should function without errors in both PHP 7.x and PHP 8.x:
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
return array(
'width' => 111,
'height' => 111,
'crop' => 1,
);
});
add_filter( 'woocommerce_product_thumbnails_columns', function() {
return 5;
});Hi Elliot,
this would be amazing! The user base of Kadence is huge. I could send you the Blocks Pro plugin if you need it? And when it is implemented I would advertise it in their Facebook group :).
Happy to hear from you!
Forum: Plugins
In reply to: [Search in Place] Accessibility issues and cssThank you for make the plugin accessible! :))) Now it is perfect. I updated my “Pro Verison” to 5.1.10. Loco says the pot file is missing. Can you check this please?
Forum: Developing with WordPress
In reply to: find where synced pattern is usedI asked myself the same question. Wouldn’t it be nice to see it somewhere in WP? Maybe at least on the Patterns Overview Page:
/wp-admin/edit.php?post_type=wp_block
Would be very nice to see easely where synced patterns are used :)!
Forum: Plugins
In reply to: [Search in Place] Accessibility issues and cssHi there,
thank you for your effort. But can you please improve the implementation?
- Include dynamically the number of the results in the pop-up. Or make the results as a list, then the screenreader shows the number of list items.
- And more important, at the moment when you type the search term for example: WORDPRESS, the sentence “Search results pop-up. Press theTab (missing space) key to navigate.” shows up after the third letter and is repeated with each additional letter…
Happy to hear from you again :)!
Forum: Plugins
In reply to: [Flexible Table Block] How to merge cellsAh I found it, I have to click the little table icon :)….
Forum: Plugins
In reply to: [Flexible Table Block] How to merge cellsThanks, but what to do then? When the cells are highlighted…
Forum: Plugins
In reply to: [Search in Place] Accessibility issues and cssyou are right. It was only an example.
At the moment blind people:
- Don‘t know that the list opens.
- there should be an indicator how many items are in the list etc. -> should be formatted as a list.
maybe it is not a combo box but it is not fully accessible for people with a screenreader/keyboard usage.