Account Settings

Winkelwagen

De winkelwagen is nog leeg

Website Settings

Dondere modus
Hoog contrast
Font grootte
Lees pagina-inhoud
Afdrukken
Realtime
  • Datum: 19-02-2026
  • Week: 08
  • Weer:
  • Seizoen: Winter

iframe embed responsive youtube etc

particle

/********************************************************************************************************************************* * Add wrapper around iframe embeds *********************************************************************************************************************************/ add_filter(’the_content’, function ($content) { return str_replace(array(“

FIX – Display name is required error

particle

/* FIX – Display name is required error */add_filter(‘woocommerce_save_account_details_required_fields’, ‘wc_save_account_details_required_fields’ );function wc_save_account_details_required_fields( $required_fields ){unset( $required_fields[‘account_display_name’] );return $required_fields;}

Post counter – frontend

particle

function gt_get_post_view() { $count = get_post_meta( get_the_ID(), ‘post_views_count’, true ); return “$count views”; } function gt_set_post_view() { $key = ‘post_views_count’; $post_id = get_the_ID(); $count = (int) get_post_meta( $post_id, $key, true ); $count++; update_post_meta( $post_id, $key, $count ); } function gt_posts_column_views( $columns ) { $columns[‘post_views’] = ‘Views’; return $columns; } function gt_posts_custom_column_views( $column ) { if […]

Home