2 questions

oly1993

Member
Hello,

I've 2 questions, is it possible to make more 'buy' options to get premium, or only with paypal?
We want also a paymethod of https://www.mollie.nl/ (sorry, the website is dutch)
And if it's possible, how can i install that?

My second question is, where can i change the font color of the rank/stats button?
The button/banner with views today and votes.


~ oly1993
 

Basti

Administrator
Staff member
Currently only paypal and 2checkout are integrated.
Please see here for future premium changes -> http://visiolist.com/community/threads/premium-members-next-generation-feedback-wanted.967/

As for adding in a specific dutch only payment provider into the core, the chance is really slim.
At best we will have a system to easily add in new providers, but dont take me up for it, as payment stuff is a lot and iam not sure if we can do all via plugins.

My second question is, where can i change the font color of the rank/stats button?
That is settings_buttons.php
Code:
$img = imagecreatefrompng("{$CONF['path']}/images/ranking.png");
$color1 = imagecolorallocate($img, 255, 255, 255); //Set your colors (RGB values)
$color2 = imagecolorallocate($img, 255, 255, 255); //Set your colors
header ("Content-type: image/png");
 
imagestring($img, 2, 80, 75, $TMPL['tot_pv_0_daily'], $color1); // Stats size and position
imagestring($img, 2, 80, 90, $TMPL['unq_in_0_daily'], $color1); // Stats size and position
//imagestring($img, 2, 80, 84, "{$TMPL['average_rating']}/5", $color1);
imagestring($img, 5, 75 - ((strlen($TMPL['rank']) - 1) * 4), 50, $TMPL['rank'], $color2); // Rank Position
The second and third line you will need to edit. Note its rgb values not hex.
The stuff below there control the positioning of the stats and rank
 
Top