Changeset 2475912
- Timestamp:
- 02/16/2021 08:59:30 PM (5 years ago)
- Location:
- conversion-helper/trunk
- Files:
-
- 2 edited
-
conversion_helper.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
conversion-helper/trunk/conversion_helper.php
r2467244 r2475912 5 5 Description: Add google adwords conversion code and goal trackers 6 6 Author: Wojciech Borowicz 7 Version: 1.1 7 Version: 1.11 8 8 Author URI: https://borowicz.me 9 9 License: GPLv2 … … 133 133 <script> 134 134 gtag('event', 'conversion', { 135 'send_to': <?php echo " ' " . esc_html_e($options["checkout_sendto"]) . " ' "; ?>,135 'send_to': '<?php echo esc_html_e($options["checkout_sendto"]) ; ?>', 136 136 'value': '<?php echo esc_html_e($total); ?>', 137 137 'currency': 'GBP', … … 148 148 <script> 149 149 gtag('event', 'conversion', { 150 'send_to': <?php echo " ' " . $options["checkout_sendto"] . " ' "; ?>,150 'send_to': '<?php echo esc_html_e($options["checkout_sendto"]) ; ?>', 151 151 'value': '<?php echo $_GET["value"]; ?>', 152 152 'currency': 'GBP', -
conversion-helper/trunk/readme.txt
r2467244 r2475912 43 43 * New feature : test mode 44 44 * Couple of fixes for error exceptions 45 = 1.11 = 46 * FIX : send_to value could be displayed outside of quotation marks. 45 47 46 48
Note: See TracChangeset
for help on using the changeset viewer.