Account Settings

Winkelwagen

De winkelwagen is nog leeg

Website Settings

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

Debug settings

particle

Example debug config: // Enable WP_DEBUG mode define( ‘WP_DEBUG’, true ); // Enable Debug logging to the /wp-content/debug.log file define( ‘WP_DEBUG_LOG’, true ); // Disable display of errors and warnings define( ‘WP_DEBUG_DISPLAY’, false ); @ini_set( ‘display_errors’, 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these […]

Cron settings

particle

define( ‘ALTERNATE_WP_CRON’, true ); define( ‘WP_CRON_LOCK_TIMEOUT’, 1 );

Set coockie in local storage

particle

if ( Cookies.get(‘lb1′) != ’true’ && $(‘#lb1’).length > 0) { var lity_popup = lity($(‘#lb1’)); $(‘#lb1’).on(‘lity:close’, function(event, instance) { Cookies.set(‘lb1′, ’true’); }); } $(‘#lb1 a’).on(‘click’, function(){ Cookies.set(‘lb1′, ’true’); });

CSS – triangle

particle

.wrapper-medewerker { background: $heling_light_grey; padding-top: 30px; //common block settings position: relative; min-height: rem-calc(900); // stripe // ———- &.stripe { overflow: hidden; &:before { content: ”; width: 0; height: 0; border-style: solid; border-color: $heling_lightest_grey transparent transparent transparent; position: absolute; top: 0px; left: 0; right: 0; border-width: 0 100vw 25px 0; //include – breakpoint specificks @include breakpoint(768 […]

ACF – order by custom field

particle

// get posts $posts = get_posts(array( ‘post_type’ => ‘event’, ‘posts_per_page’ => -1, ‘meta_key’ => ‘start_date’, ‘orderby’ => ‘meta_value’, ‘order’ => ‘DESC’ ));

Full page-cover with javascript calculation

particle

/******************************************************Full page-cover (home)******************************************************/var AdminBar = $(‘#wpadminbar’).height();var TotalHeight = $(window).height();var RemainingHeight = TotalHeight – AdminBar – MainHeaderHeight – 120; // Extra white spaceif (RemainingHeight < 490){ RemainingHeight = 490; } $(‘.home section.page-header’).css({ “height”: RemainingHeight + ‘px’}); $(‘.home section.page-header .full-height’).css({ “height”: RemainingHeight + ‘px’, }); $(‘.home section.page-header .image-overlay’).css({ “height”: RemainingHeight + ‘px’, }); // Slider $(‘.home section.page-cover-slider […]

Home