Billplz Sdn Bhd
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Reviews
In reply to: [Billplz for GiveWP] How to Set Redirect URL in Billplz Dashboard (givewp)Please note that redirect URL and callback URL are managed automatically by our plugin and do not need to be configured manually.
We’ve tested the payment flow on our end and it appears to be working correctly, including the redirect to GiveWP successful payment page after payment completion.
Could you please share a screen recording of the issue from your side? This will help us investigate further and identify what might be causing the redirect not to occur.
Forum: Plugins
In reply to: [Billplz for WooCommerce] Checkout button textYou may use this code snippets on your WooCommerce store to change the default checkout button text.
/**
* Change checkout button text for Billplz payment gateway.
*/
add_filter( 'gettext', function( $translated_text, $text, $domain ) {
if ( $translated_text === 'Pay with Billplz' && $domain === 'bfw' ) {
$translated_text = 'Pay with Online Banking';
}
return $translated_text;
}, 20, 3 );Forum: Plugins
In reply to: [Billplz for WooCommerce] Checkout button textYou may use this code snippets on your website to change the checkout button text.
/**
* Change checkout button text for Billplz payment gateway.
*/
add_filter( 'gettext', function( $translated_text, $text, $domain ) {
if ( $translated_text === 'Pay with Billplz' && $domain === 'bfw' ) {
$translated_text = 'Pay with Online Banking'; // Change to any text
}
return $translated_text;
}, 20, 3 );
Viewing 3 replies - 1 through 3 (of 3 total)