Code: Select all
<?php
// Text
$_['text_paypal'] = 'PayPal, iDEAL, or Creditcard';
$_['text_paypal_title'] = 'Pay with PayPal, iDEAL, or Creditcard';

and im trying to do the same with a different extension (official coinbase one)
so i can edit the payment title and have a description below it ,
the one for coinbase.php is as follows:
Code: Select all
<?php
// Heading
$_['heading_title'] = 'Cryptocurrency (BTC, ETH, LTC etc)';
// Text
$_['text_instruction'] = 'Coinbase Instructions';
$_['text_description'] = 'Please transfer the total amount to the following bank account.';
$_['text_payment'] = 'Your order will not ship until we receive payment.';
it uses $_['heading_title'] for both title and description
how to change it so the i can change the text of the bold text for coinbase bassicly
thanks advance