Google Merchant Review là một tiện ích của Google Merchant Center đã được Google hỗ trợ tại Việt Nam, hiển thị đánh giá của khách hàng theo thang điểm 5 (5 sao) trên website và quảng cáo Google Ads giúp tăng tỷ lệ nhấp chuột CTR, tăng uy tín nhà bán hàng và tỷ lệ chuyển đổi mua hàng. Dưới đây là code tích hợp Google Merchant Review vào website WordPresss chạy WooCommerce.
Trước khi tích hợp, website của bạn phải đảm bảo yêu cầu:
- Your shopping cart and checkout pages must be hosted on the same domain
- The confirmation page must be hosted on your own domain
- <!DOCTYPE HTML> must be added to the top of every webpage
Sau đó dán code này vào file function.php của theme/child theme đang kích hoạt.
Lưu ý: thay đổi XXXXXXXXX bằng ID Google Merchant của bạn và gọi thời gian giao hàng dự kiến estimated_delivery_date (định dạng YYYY-MM-DD).
Ví dụ, ở đây mặc định sẽ giao hàng sau 3 ngày thì dùng code:
1 | <?php echo date('Y-m-d',strtotime('+3 days',strtotime("today UTC+8"))) . PHP_EOL; ?> |
Kết quả trả về đúng định dạng YYYY-MM-DD và +3 ngày
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | function wh_CustomReadOrder($order_id) { //getting order object $order = wc_get_order($order_id); $email = $order->billing_email; ?> <script src="https://apis.google.com/js/platform.js?onload=renderOptIn" async defer></script> <script> window.renderOptIn = function () { window.gapi.load('surveyoptin', function () { window.gapi.surveyoptin.render( { "merchant_id": XXXXXXXXX, "order_id": "<?php echo $order_id; ?>", "email": "<?php echo $email; ?>", "delivery_country": "vi", "estimated_delivery_date": "YYYY-MM-DD" } ); }); }; </script> <?php } add_action('woocommerce_thankyou', 'wh_CustomReadOrder'); |
Đọc thêm tài liệu liên quan:
https://support.google.com/merchants/answer/6059553?hl=vi
https://support.google.com/merchants/answer/7106244?hl=vi
Bạn hướng dẫn chi tiết hơn đc k