• can anyone help me with adding the right tags for the google merchant reviews?

    The integration I’m trying to do is: https://support.google.com/merchants/answer/7106244

    I need to pull the current order number, billing email and the delivery date into the integration code – I can get the user email but I’m failing to get the order number and a delivery address. Has any one done this – it looks like it should be easy to do.

    Please help me 🙂

    cheers

    <?php 
    
    		$email = wpsc_get_customer_meta( 'billingemail' );
    
    		?>
    <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(
            {
              // REQUIRED FIELDS
              "merchant_id": 113774940,
              "order_id": "orderid",
              "email": "<?php echo $email; ?>",
              "delivery_country": "UK",
              "estimated_delivery_date": "2018-10-31",
    
              
              
            });
        });
      }
    </script>
    

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • whitelamp

    (@whitelamp)

    wpsc-theme/functions/wpsc-transaction_results_functions.php might give you some ideas.

    Thread Starter charlotte

    (@charlotte23)

    Thanks.
    I used trust pilot instead. Their free starter option was sufficient and you only need to add a bcc to the purchase confirmation, means a hack to the core files but much easier than setting up the google route.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘integrate with google reviews’ is closed to new replies.