Jump to content

Pay points


idris820

Recommended Posts

Hi,

 

I'm french , i just want to know where do we have to put the code HTML of the Pay Points for each things that the client will buy ?

 

In the admin panel , where do i have to go to put the HTML code of my Pay Points for the things that i sell ?

 

For the firm of micro-payment I am to starpass, it is a firm of french payments, they give an html code.

 

Thanks in advance for your answers... !

Link to comment
Share on other sites

You can try to create a payment gateway with the HTML-code in the template_link() function. We also did this for one of our micropayment processors. WHMCS is very customizable, you can just create your own payment gateway.

Link to comment
Share on other sites

Try this:

 

<?php
function starpass_config() {
   $configarray = array(
    "FriendlyName" => array("Type" => "System", "Value"=>"Starpass")
   );
return $configarray;
}

function starpass_link($params) 
{
$code = 'PLACE YOUR HTML-CODE IN HERE';

return $code;
}
?>

Call the file starpass.php and place it in /modules/gateways/.

 

Please note that I do NOT have any experience with Starpass, so I don't have a clue how you can define your order number in the payment or whatsoever.

Edited by m00
Link to comment
Share on other sites

You can create a callback file for this. (see the example callback.php in the ZIP) I cannot provide you with an example for that. I never integrated Starpass.

 

(you can also edit your messages with the Edit button, instead of creating a new reply ;))

Link to comment
Share on other sites

StarPass html code ?

My Pay Points One ?

 

Just the HTML-code you have for processoring the payment. Again; untill now we don't have integrated Starpass (or My Pay Points?) for us or one of our clients yet, so I'm affraid I don't have an answer on that one. You can try contacting Starpass, maybe that they're having a module or can provide some help with it (or find someone who can help developing a payment module for starpass).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated