Allow SVG Files Upload (copy)

/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types. * * @return mixed */ add_filter( ‘upload_mimes’, function ( $upload_mimes ) { // By default, only administrator users are allowed to add SVGs. //…Continue reading

secure form (copy)

Download “Chess Not Checkers” Make the right move for your business. Discover how to choose the perfect AI provider to enhance your operations. Enter your details below to receive your free copy immediately.Continue reading

secure form (copy)

Download “Chess Not Checkers” Make the right move for your business. Discover how to choose the perfect AI provider to enhance your operations. Enter your details below to receive your free copy immediately.Continue reading

secure form

Download “Chess Not Checkers” Make the right move for your business. Discover how to choose the perfect AI provider to enhance your operations. Enter your details below to receive your free copy immediately.Continue reading

Lookup up current user’s fw_exp_date on My Profile page

// Create Ajax handler // add_action(‘wp_ajax_get_fw_exp_date’, ‘get_fw_exp_date_callback’); function get_fw_exp_date_callback() { /* if (!is_user_logged_in()) { echo ‘Not logged in’; wp_die(); } */ $fw_user_id = get_current_user_id(); $get_fw_exp_date = get_user_meta($fw_user_id, ‘fw_exp_date’, true); if ($get_fw_exp_date) { // Convert YYYY-MM-DD to MM/DD/YYYY $date_obj = DateTime::createFromFormat(‘Y-m-d’,…Continue reading

Require Minimum Characters for Username

/** * Name: fw_minimumAccountUsernameChars (“fw” indicates “FreeWheelers”) * Desc: Require the account username be at least 8 characters **/ add_filter(‘frm_validate_field_entry’, ‘fw_minimumAccountUsernameChars’, 10, 3); function fw_minimumAccountUsernameChars( $errors, $field, $posted_value ){ if ( $field->id == MEMBER_REGISTRATION_USER_NAME_FIELD_ID ) { $minimum = 8; if…Continue reading

Pixelsz functionaliteiten

/** * Plugin Name: Pixelsz – Kernfuncties (V17.1.1) * Description: Kernfuncties voor Pixelsz-klanten: whitelist-rechten, beveiliging, licenties (Akismet/Divi), betaalde plugins-overzicht (incl. Rank Math Pro & WPCode Pro), e-mailtest, WhatsApp/belknop, tijdelijke banner, onderhoudspagina, activiteitenlog, custom login. * Author: Pixelsz * Version: 17.1.1…Continue reading