wc-donation / wc-donation-platform

Donation Platform for WooCommerce unleashes the power of WooCommerce for your online fundraising, crowdfunding & crowdsponsoring
https://www.wc-donation.com/
GNU General Public License v2.0
41 stars 10 forks source link

Feature request! #2 #26

Closed KaloyanDDimitrov closed 1 year ago

KaloyanDDimitrov commented 1 year ago

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.

jonas-hoebenreich commented 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);