Skip to content

GDPR – Prevent WordPress fromn sending unnecessary data on core updates

Stop WordPress sending anything but essential data during the update check function wp_update_privacy( $query ) { unset($query['php']); unset($query['mysql']); unset($query['local_package']); unset($query['blogs']); unset($query['users']); unset($query['multisite_enabled']); unset($query['initial_db_version']); return $query; } add_action( 'core_version_check_query_args', 'wp_update_privacy' );

Mehr Lesen

WooCommerce GDPR – Do not store IP for orders

Snippet to clear customer IP address when order is sent in WooCommerce add_action( 'woocommerce_checkout_update_order_meta', 'wc_delete_customer_ip', 1 ); function wc_delete_customer_ip( $order_id ) { update_post_meta( $order_id, '_customer_ip_address', 0 ); } Stop customer IP from being saved in orders in WooCommerce add_filter( 'update_post_metadata',…

Mehr Lesen

How to properly enqueue JQuery UI in WordPress

Wordpress comes along woth many JQuery libraries that are for performance reasons obviously not entirely loaded. But what it you want a custom script to use some of the elements. Then it would be great to use the basic package…

Mehr Lesen

WordPress – Error 503 – Upload Fehler bei Strato

Es gibt Situationen da scheint es wie verhext. Kürzlich beispielsweise hatte ich einen seltsamen Fehler bei mUpload von Medien in einer bei Start gehortete Wordpress Instanz. Es schien völlig zufällig, dass einige Bilder problemlos hochgeladen wurden und andere Uploads mit…

Mehr Lesen

Fighting Mailserver Problems – Delivery Failed

First of all, check if the IP of the sending server is on any of the major blocklists: Proofpoint MXToolbox Make sure you have the SPIF Settings for the sending domains set to the minimum security standard. For instance. Outlook.de…

Mehr Lesen
An den Anfang scrollen