Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WayForPay.com transaction ID не передаётся в WooCommerce #3

Open
z4y4ts opened this issue Dec 4, 2015 · 3 comments
Open

Comments

@z4y4ts
Copy link
Contributor

z4y4ts commented Dec 4, 2015

Добрый день,

Не передаётся ID Транзакции в лог WooCommerce - http://take.ms/zamF1

Best regards,
Alexander

@broslavski
Copy link

Проблема до сих пор не решена.

@squarepusher
Copy link

squarepusher commented Jan 14, 2020

Из-за этого кстати в аналитике не регистрируются конверсии. Плагины других платежных систем после успешной оплаты отправяют юзера на стандартную страницу благодарности и тогда конверсия засчитывается аналитикой. Здесь нет :((

@sk0ch
Copy link

sk0ch commented Jul 14, 2020

Дадайте в функції теми і буде зберігати:

add_action( 'woocommerce_loaded', 'saveWayforpayTransactionId', 10);
function saveWayforpayTransactionId() {

$data = json_decode( file_get_contents( "php://input" ), true );

if ( isset( $data['orderReference'] ) && ! empty( $data['orderReference'] ) ) {

	list( $orderId, ) = explode( '_woo_w4p_', $data['orderReference'] );

	update_post_meta( absint( $orderId ), '_transaction_id', esc_sql( $data['orderReference'] ) );
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants