Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter dubok

    (@dubok)

    sorry, I did not complete the phrase. The correct is “I could not see the payment method DESCRIPTION on checkout page after the latest update of the plugin.”

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    Thanks for letting me know

    easy fix is to go to plugin and find below on line no 373

    public function payment_fields() {
                    $this->form();
                    }

    and replace with

    public function payment_fields() {
    
    echo apply_filters( 'wc_stripe_description', wpautop(wp_kses_post( wptexturize(trim($this->stripe_description) ) ) ) );
    
    $this->form();
    }
    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    Or you can reinstall the plugin your settings will not be lost i have updated code on repository

    Thank you for bringing this up

    Thread Starter dubok

    (@dubok)

    Great! Many thanks!

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    Please leave an honest review as we spend good time writing the code

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘could not see the payment method after updating’ is closed to new replies.