PluginProbe
Drip – Marketing Automation for WooCommerce / 1.1.2
Drip – Marketing Automation for WooCommerce v1.1.2
trunk 0.0.3 0.0.4 0.0.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.10 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9
drip / src / snippet.js.php

snippet.js.php in Drip – Marketing Automation for WooCommerce 1.1.2, at src/snippet.js.php

26 lines 596 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The Drip JS snippet
4 *
5 * @package Drip_Woocommerce
6 */
7
8 defined( 'ABSPATH' ) || die( 'Executing outside of the WordPress context.' );
9
10 ?>
11
12 <!-- Drip Code -->
13 <script type="text/javascript">
14 var _dcq = _dcq || [];
15 var _dcs = _dcs || {};
16 _dcs.account = '<?php echo esc_js( $account_id ); ?>';
17
18 (function() {
19 var dc = document.createElement('script');
20 dc.type = 'text/javascript'; dc.async = true;
21 dc.src = '//tag.getdrip.com/<?php echo esc_js( $account_id ); ?>.js';
22 var s = document.getElementsByTagName('script')[0];
23 s.parentNode.insertBefore(dc, s);
24 })();
25 </script>
26