,

Hoe beveilig ik WordPress ?

https://premmerce.com/complete-woocommerce-security-review-issue-analysis/ https://www.malcare.com/blog/is-woocommerce-secure/ change username Sterk wachtwoord 2factor authenticatie (2fa) wordfence SSL? Salt keys table_prefix wp-config.php,…
,

Postcode na de plaatsnaam in Gravityforms

Het gform address veld zet altijd de postcode na de plaatsnaam. Je kunt dit omdraaiend door dit in de functions.php te zetten:   /** Format Addresses the European way */ add_filter( 'gform_address_display_format', 'address_format'…

Trash can in Media Library ?

// In wp-config.php define('MEDIA_TRASH', true);

Reset button in Enfold weghalen

add_action('admin_head','remove_reset_button'); function remove_reset_button() { echo '<style> .avia_footer_reset { display: none !important; } </style>'; }

Custom size images

Er zijn meerdere script en plugins voor custom size van images. Deze werkt en ook voor Enfold template.   /* additional image size(s) * */ // add new size add_image_size( 'nieuwsberichtfoto', 312, 244, true ); add_image_size(…

Extra Enfold CSS class

Gebruik je Enfold als Wordpress template en je wilt voor al je elementen een Enfold CSS class in je editor, plaats de onderstaande code in je functions.php van je (child)Enfold template: /* extra css class at elements */ add_theme_support('avia_template_builder_custom_css'); if(isset($avia_config['use_child_theme_functions_only']))…