People Group Profile page generate shortcodes for ACFs – PROD LIBRARY

function get_people_groups_field_values($atts) { // Extract attributes $atts = shortcode_atts(array( ‘field_name’ => ”, ‘slug_output’ => ‘false’, ), $atts, ‘people_groups_fields’); // Get the current post ID $post_id = get_the_ID(); $output = ”; if (get_post_type($post_id) === ‘people_groups’) { // Debugging: Check if the…Continue reading

HTML versnellen

/** * Pixelsz – Cache-busting voor herhaalbezoeken * – Voegt ?v=TIMESTAMP toe aan media (ook srcset) * – Optioneel: ook aan lokale CSS/JS * – Verwijdert oude ?ver / ?v om dubbele versies te voorkomen */ /** Helper: haal een…Continue reading

Gravity Form Custom Code

/* ————————————————————————- * * Gravity Form Custom Theme /* ————————————————————————- */ add_filter( ‘gform_default_styles’, function( $styles ) { return ‘{“theme”:””,”inputSize”:”lg”,”inputBorderRadius”:”5″,”inputBorderColor”:”#000″,”inputBackgroundColor”:”#fff”,”inputColor”:”#000″,”inputPrimaryColor”:”#000″,”labelFontSize”:”18″,”labelColor”:”#000″,”descriptionFontSize”:”14″,”descriptionColor”:”#000″,”buttonPrimaryBackgroundColor”:”#4B533D”,”buttonPrimaryColor”:”#fff”}’; } );Continue reading