Closed KaloyanDDimitrov closed 1 year ago
Hi KaloyanDDimitrov,
thanks for reaching out.
I've added a new filter called wcdp_certificate_background_image
that allows you to alter the background image.
Using the code snippet below and and a plugin like Code Snippets you can implement the background image logic yourself.
Best regards Jonas
add_filter('wcdp_certificate_background_image', function($link, $order_id, $total) {
if ($total < 50) {
return 'https://yoursite.com/background1.jpg';
}
return 'https://yoursite.com/background2.jpg';
}, 10, 3);
Hello is there an option to add a different Thank You Certificate for different range of donation? For example from 3$-50$ Silver certificate, 50-100$ golden and etc.