networka
Forum Replies Created
-
yes. I have the latest version. I deactivated the registration on the login page to stop it…
Forum: Plugins
In reply to: [Imsanity] Clarification about “Delete Originals” optionOk thank you. The filter prevents WordPress from generating these scaled images. So the effect is the same imho?
Forum: Plugins
In reply to: [Imsanity] Imsanity Compatibility with WP All ImportThank you!
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Problem validating order since last updateThe security issue is not critical.
BUT after so many weeks there must be a fix for an official “paid” plugin! What is going on here?!
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Problem validating order since last updatedowngrade to 8.0.2!
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Problem validating order since last updateSame problem here. Downgraded to 8.0.2.
Forum: Plugins
In reply to: [Imsanity] Imsanity Compatibility with WP All ImportI asked WP All Import Suppport and they already had or made a solution o.O
https://www.wpallimport.com/documentation/code-snippets/#apply-wp_handle_upload-filter-to-uploaded-attachments-and-filtersSimple History -> Settings -> Message Control -> Available Updates Logger -> Disable
Forum: Plugins
In reply to: [Flexible Table Block] Feature request: Add blocks to table cellsGot the new update. It is working perfect.
I wuld kindly ask, if you can make it happen that blocks can be used in tables :). Would be so mega awesome…
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 year, 6 months 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;
});