Shaun Posted December 16, 2008 Share Posted December 16, 2008 Please keep all Group Pay questions to this one thread. Just an update. There is a new version of Group Pay in the works. This will have the following features: Hooks to add custom logic 3.8.1 Compatiability If you have any quick features throw them in here. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted December 16, 2008 Share Posted December 16, 2008 How much for this update bro. 0 Quote Link to comment Share on other sites More sharing options...
Shaun Posted December 16, 2008 Author Share Posted December 16, 2008 How much for this update bro. Free ! Its all included in the updates that you got free when you brought the product. 0 Quote Link to comment Share on other sites More sharing options...
Shaun Posted December 18, 2008 Author Share Posted December 18, 2008 Update Now Available What's Included In the Update ? - Support for v 3.8.1 - Ability to Add Hooks to extend the code Where can i get it. People with a current upgrade plan can get this in their myKadeo. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted December 26, 2008 Share Posted December 26, 2008 Suggestions. 1. When a group pay payment is made, the account owner is sent an email. 2. ability to see who has made payments from the clients area. (amount, email adress, first, last name) 3. Remote GET functions for an outside website, to show amount of invoice, or amount of credit based off of the hash. That would finish out the request from my end on this code. Thanks 0 Quote Link to comment Share on other sites More sharing options...
Shaun Posted December 26, 2008 Author Share Posted December 26, 2008 Suggestions. 1. When a group pay payment is made, the account owner is sent an email. 2. ability to see who has made payments from the clients area. (amount, email adress, first, last name) 3. Remote GET functions for an outside website, to show amount of invoice, or amount of credit based off of the hash. That would finish out the request from my end on this code. Thanks Cheers for the suggestions; This version of Group pay included the API's. This means that anyone can make the system do what they want. But when i get some time again i may add these options. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 2, 2009 Share Posted January 2, 2009 I added the group pay payments table to the Clients area of the group pay. Here is the code for your TPL file if anyone is interested. <center><b>Your Clan Payments are:</b><br /><table border="1" align="center"><tr><b><th>Date</th><th>Description</th><th>Amount</th></b></tr>{php}$currentpayments = mysql_query("SELECT * from `tblcredit` where `clientid` = ".$_SESSION['uid']." and `description` LIKE 'Group%'"); while($r = mysql_fetch_array($currentpayments)){ echo "<tr><td>". $r['date'] ."</td><td>". $r['description'] ."</td><td>". $r['amount'] ."</td></tr>"; }{/php}</table></center> I am also adding in the ability for the Payees to see the current invoice amount (if one is active of course) It is very simple, and I will post the tpl code also when I have that one. I am also working on a Nuke Block for donations.. 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 5, 2009 Share Posted January 5, 2009 I added the group pay payments table to the Clients area of the group pay. Here is the code for your TPL file if anyone is interested. <center><b>Your Clan Payments are:</b><br /><table border="1" align="center"><tr><b><th>Date</th><th>Description</th><th>Amount</th></b></tr>{php}$currentpayments = mysql_query("SELECT * from `tblcredit` where `clientid` = ".$_SESSION['uid']." and `description` LIKE 'Group%'"); while($r = mysql_fetch_array($currentpayments)){ echo "<tr><td>". $r['date'] ."</td><td>". $r['description'] ."</td><td>". $r['amount'] ."</td></tr>"; }{/php}</table></center> I am also adding in the ability for the Payees to see the current invoice amount (if one is active of course) It is very simple, and I will post the tpl code also when I have that one. I am also working on a Nuke Block for donations.. hmmmmm iadded this to my clientareahome.tpl and added a small clan pay donation i see it added the credit so clan pay is working but it still shows nothing in the area of your clan donations in the boxes provided is there something else i need to add.??? 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 5, 2009 Share Posted January 5, 2009 Hey Victo i have a block created for evo already where the client can input there clan pay hashed link and an image and everything all ready running from my site address ill forward here see if you can make anything Different with it 0 Quote Link to comment Share on other sites More sharing options...
ChrisGooding Posted January 5, 2009 Share Posted January 5, 2009 I don't suppose either of you guys have a good sugested layout for the client page (grouppay.php). Im not great at coding, html & css stuff Im fine with, but smarty stuff is a step out of my comfort zone. Any pointers would be helpful, or better still a pic/link to what you guys have done. Many Thanks 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 5, 2009 Share Posted January 5, 2009 the only option i added was a image for clan pay and a code to copy to link to it that is all i have done there 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 5, 2009 Share Posted January 5, 2009 Hey Victo i have a block created for evo already where the client can input there clan pay hashed link and an image and everything all ready running from my site address ill forward here see if you can make anything Different with it Thanks man.. I will look at it. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 5, 2009 Share Posted January 5, 2009 hmmmmm iadded this to my clientareahome.tpl and added a small clan pay donation i see it added the credit so clan pay is working but it still shows nothing in the area of your clan donations in the boxes provided is there something else i need to add.??? try adding in include("grouppay.php"); at the beginning of the php... That should do it, since the variables are based off of the grouppay settings in the grouppay.php file.. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 6, 2009 Share Posted January 6, 2009 I don't suppose either of you guys have a good sugested layout for the client page (grouppay.php). Im not great at coding, html & css stuff Im fine with, but smarty stuff is a step out of my comfort zone. Any pointers would be helpful, or better still a pic/link to what you guys have done. Many Thanks You don't really need to know the smarty template system. The TPL file is already done. Just add your html css code around what is already their to make the layout like you want it. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 6, 2009 Share Posted January 6, 2009 Cheers for the suggestions;This version of Group pay included the API's. This means that anyone can make the system do what they want. But when i get some time again i may add these options. Hey man. Where is the API documention and the GET and POST variables for this? Trying to do the Nuke Block.. Thanks 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 6, 2009 Share Posted January 6, 2009 try adding in include("grouppay.php"); at the beginning of the php... That should do it, since the variables are based off of the grouppay settings in the grouppay.php file.. nope when i add at very start of the tpl page turns blank and if added at start of your code my layout disappears 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 6, 2009 Share Posted January 6, 2009 hmm.. Well like i said that is done to work in the grouppay.tpl file, not really any other one. It should work, but I don't know exactly how you did it, and weather it was copied right. It works just fine in my system. So not sure what else to tell ya. 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 6, 2009 Share Posted January 6, 2009 yeah i cant get this to work at all 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 6, 2009 Share Posted January 6, 2009 PM your tpl file that you did. I will look at it, and make sure its right. 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 6, 2009 Share Posted January 6, 2009 is this based on the the version for 3.8.1 ??? victo add me on MSN john_r@impact-connections.com 0 Quote Link to comment Share on other sites More sharing options...
Shaun Posted January 7, 2009 Author Share Posted January 7, 2009 Sorry API is more of a hook system that is running. You can post the same names as your group pay form and it should work for a php nuke block. 0 Quote Link to comment Share on other sites More sharing options...
VicToMeyeZR Posted January 7, 2009 Share Posted January 7, 2009 is this based on the the version for 3.8.1??? victo add me on MSN john_r@impact-connections.com Yes, I used the latest versions for everything. 0 Quote Link to comment Share on other sites More sharing options...
Impact-John Posted January 7, 2009 Share Posted January 7, 2009 still cant get to work at all 0 Quote Link to comment Share on other sites More sharing options...
Shaun Posted January 8, 2009 Author Share Posted January 8, 2009 Its Update Time There is a new update available for group pay. This update includes the addition of some new smarty variables available in the templates. Also a correction with the link. Its available from your myKadeo. 0 Quote Link to comment Share on other sites More sharing options...
ChrisGooding Posted January 9, 2009 Share Posted January 9, 2009 I have been setting things up and now there have realised a bug I think. Once enabled it doesn't seem to be able to be disabled. I untick the box, hit save and get told changes are saved, but it stays active. Anyone else having this, or just me? May give 1.07 a try see if that fixes it, but ideally wanted to check it wasn't an upgrade issue. Cheers. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.