Skip to content

Instantly share code, notes, and snippets.

View AndreKelling's full-sized avatar

André J. Kelling AndreKelling

View GitHub Profile
@AndreKelling
AndreKelling / relay-price-validation.php
Last active May 2, 2023 06:51
ACF Repeater validator for relay prices
<?php
/**
* based on https://gist.github.com/sudarshann/66c55e48f1e36fb5412261d869976dc7
*
* sorry for german wordings inside!
*/
class AndrekellingthemeAcfValidateStaffelpreis {
public function __construct() {
add_filter('acf/validate_value/name=prices', [$this, 'acf_validate_staffelpreis'], 10, 4);
}