Branding Licence - Edits

cajkan

Active Member
Hello,
About branding licence - I think maybe this is wrong:







1. Into user details when they click on twitter button that screen appear
2. Into feeds.php
3. How to change Premium Membership cajkan
4. Why is OS Empire? Does the money first go to OS Empire then transfer or affiliate?

I don't know if this should be there or not, maybe it's only misunderstood
 

Basti

Administrator
Staff member
1) good catch, there is an mistake in the code. ill post an update later today for others
in plugins/Twitter/twitter_layout.html
Code:
data-via="visiolist"
should read
Code:
data-via="{$twitter_username}"
2) as discussed in skype, fix will go into vl 1.0
3) in your skin -> join_premium_review.html, find this line and edit. Think that is the right one
Code:
<input name="c_description_1" value="Premium Membership {$username}" type="hidden"/>
4) There is something wrong indeed. Do make the following edits and let me know if it fixes it.
in the same file as #3 above
Code:
<input name="sid" value="230177" type="hidden"/>
replace with
Code:
<input name="sid" value="{$2co_pay}" type="hidden"/>
In sources/user_cp/user_premium.php find this line ( 2 times )
Code:
$TMPL['email_pay'] = $CONF['email_pay'];
replace with
Code:
$TMPL['email_pay'] = $CONF['email_pay'];
$TMPL['2co_pay'] = $CONF['acct2co'];
Let me know how it goes
 

cajkan

Active Member
#4
PHP:
$TMPL['email_pay'] = $CONF['email_pay'];
Appears @ Line 94, 159 - ive replaced both.

#3 need to test - coz my username is cajkan too
Will test and post results for #3
 

Basti

Administrator
Staff member
4) is it working with that change?
3) the part after "Premium Membership" is the member who want to buy
 
Top