Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Billplz Sdn Bhd

    (@billplz)

    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.

    Plugin Author Billplz Sdn Bhd

    (@billplz)

    You 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 );
    Plugin Author Billplz Sdn Bhd

    (@billplz)

    You 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)