We want to allow users to adjust tracking settings also on the WooCommerce setup Wizard. In case they choose to disable cookie tracking we set the lowest from current_value and 'partial'. [MAILPOET-3185]
18 lines
526 B
HTML
18 lines
526 B
HTML
<% extends 'layout.html' %>
|
|
|
|
<% block content %>
|
|
<script>
|
|
var mailpoet_logo_url = '<%= cdn_url('welcome-wizard/mailpoet-logo.20200623.png') %>';
|
|
var wizard_woocommerce_illustration_url = '<%= cdn_url('welcome-wizard/woocommerce.20200623.png') %>';
|
|
var finish_wizard_url = '<%= finish_wizard_url %>';
|
|
var mailpoet_settings = <%= json_encode(settings) %>;
|
|
</script>
|
|
|
|
<div id="mailpoet-wizard-container"></div>
|
|
|
|
<% endblock %>
|
|
|
|
<% block translations %>
|
|
<% include('woocommerce_setup_translations.html') %>
|
|
<% endblock %>
|