Quote Originally Posted by carlwhat View Post
what version of square webPay are you running?

also, please post the code from square_webPay.php that starts after this line:

PHP Code:
public function selection() 
in version 1.0.4 it starts at line 240.

the last 2 lines look something like this:

PHP Code:
             return $selection;
        } 
Square WebPay version 1.0.4

Here is the code from that section:

public function selection()
{
$selection = [
'id' => $this->code,
'module' => $this->title,
'fields' => [
[
'title' => '',
'field' => '<div id="card-container" ></div>
<button id="card-button" type="button">Use Credit Card</button>',
],
],
];

return $selection;
}