Hi Dennis,
I hope you are doing well. I have just heard back from the developer, and he mentioned that, due to security reasons, we have implemented a list of allowed custom functions.
Please add the following code to your theme’s functions.php
file, and replace 'my_custom_function'
with the name of your custom function to allow it:
add_filter( 'alg_allowed_custom_functions', function ( $allowed_functions ) {
$allowed_functions[] = 'my_custom_function';
return $allowed_functions;
} );
Please give it a try and let me know if everything is working well on your end. Thank you for your patience.
Best regards,
WPFactory support team