Hi Wouter,
We just released a couple updates over the last few days that now includes the ability for donors to leave a message. You can enable this under the campaigns tab of the settings page.
I also released a follow-up version fixing a few small issues and added a couple filters to change the color-scheme and button logo kudos_theme_colors
and kudos_get_button_logo
. We′re still looking into a more UI based way of doing this, but in the meantime this should do what you want. These filters can be used in your theme’s functions.php file, here is an example that you can use:
// Change Kudos primary color
add_filter('kudos_theme_colors', function($array) {
$array['primary'] = '#4082ff';
return $array;
});
// Change kudos button logo
add_filter('kudos_get_button_logo', function() {
return '<svg xmlns="https://www.w3.org/2000/svg" fill="#FFFFFF" viewBox="0 0 24 24"><defs/><path d="M4 21h9.62a3.995 3.995 0 003.037-1.397l5.102-5.952a1 1 0 00-.442-1.6l-1.968-.656a3.043 3.043 0 00-2.823.503l-3.185 2.547-.617-1.235A3.98 3.98 0 009.146 11H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2zm0-8h5.146c.763 0 1.448.423 1.789 1.105l.447.895H7v2h6.014a.996.996 0 00.442-.11l.003-.001.004-.002h.003l.002-.001h.004l.001-.001c.009.003.003-.001.003-.001.01 0 .002-.001.002-.001h.001l.002-.001.003-.001.002-.001.002-.001.003-.001.002-.001c.003 0 .001-.001.002-.001l.003-.002.002-.001.002-.001.003-.001.002-.001h.001l.002-.001h.001l.002-.001.002-.001c.009-.001.003-.001.003-.001l.002-.001a.915.915 0 00.11-.078l4.146-3.317c.262-.208.623-.273.94-.167l.557.186-4.133 4.823a2.029 2.029 0 01-1.52.688H4v-6zM16 2h-.017c-.163.002-1.006.039-1.983.705-.951-.648-1.774-.7-1.968-.704L12.002 2h-.004c-.801 0-1.555.313-2.119.878C9.313 3.445 9 4.198 9 5s.313 1.555.861 2.104l3.414 3.586a1.006 1.006 0 001.45-.001l3.396-3.568C18.688 6.555 19 5.802 19 5s-.313-1.555-.878-2.121A2.978 2.978 0 0016.002 2H16zm1 3c0 .267-.104.518-.311.725L14 8.55l-2.707-2.843C11.104 5.518 11 5.267 11 5s.104-.518.294-.708A.977.977 0 0111.979 4c.025.001.502.032 1.067.485.081.065.163.139.247.222l.707.707.707-.707c.084-.083.166-.157.247-.222.529-.425.976-.478 1.052-.484a.987.987 0 01.701.292c.189.189.293.44.293.707z"/><path fill="rgba(0, 0, 0, 0)" d="M0 0h24v24H0z"/></svg>';
});
For more information about filters please have a look here.
-
This reply was modified 3 years, 7 months ago by iseardmedia.