PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.15.0
Independent Analytics – WordPress Analytics Plugin v2.15.0
2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / views / integrations / integrations.blade.php
independent-analytics / views / integrations Last commit date
integration.blade.php 2 days ago integrations.blade.php 2 days ago
integrations.blade.php
59 lines
1 @php /** @var \IAWP\Integrations\Integrations $integrations */ @endphp
2
3 <div class="integrations-menu">
4 <div class="integrations-menu-inner">
5 <h1>Integrations</h1>
6 <div class="integration-category">
7 <h2>eCommerce Plugin Integrations</h2><?php
8 if (iawp_is_pro()) :
9 if ($integrations->is_using_ecommerce_plugin()) : ?>
10 <p class="iawp-category-description">Your site is actively tracking all sales made with <strong><?php echo esc_html($integrations->active_ecommerce_plugin()->name()); ?></strong> thanks to the Independent Analytics Pro plugin!</p><?php
11 else : ?>
12 <p class="iawp-category-description">Automatically track orders, conversion rates, total sales, refunds, and more in the Pages, Referrers, Geographic,
13 Devices, and Campaigns reports.</p><?php
14 endif; ?>
15 <p><a class="iawp-button purple" target="_blank" href="https://independentwp.com/knowledgebase/woocommerce/woocommerce-integration/">Watch tutorial &rarr;</a></p><?php
16 else :
17 if ($integrations->is_using_ecommerce_plugin()) : ?>
18 <p class="iawp-category-description"><strong>You're missing out on data!</strong> You could be tracking <strong><?php echo esc_html($integrations->active_ecommerce_plugin()->name()); ?></strong> orders, conversion rates, total sales, refunds, and more in the Pages, Referrers, Geographic,
19 Devices, and Campaigns reports.</p><?php
20 else : ?>
21 <p class="iawp-category-description">Automatically track orders, conversion rates, total sales, refunds, and more in the Pages, Referrers, Geographic,
22 Devices, and Campaigns reports using Independent Analytics Pro.</p><?php
23 endif; ?>
24 <p><a class="iawp-button purple" target="_blank" href="https://independentwp.com/features/woocommerce-analytics/?utm_source=User+Dashboard&utm_medium=WP+Admin&utm_campaign=Integrations+Menu">Learn more about eCommerce analytics &rarr;</a></p><?php
25 endif; ?>
26 <div class="iawp-integration-list"><?php
27 foreach($integrations->ecommerce_integrations() as $integration) {
28 echo $integration->html();
29 } ?>
30 </div>
31 </div>
32 <div class="integration-category">
33 <h2>Form Plugin Integrations</h2><?php
34 if (iawp_is_pro()) :
35 if ($integrations->is_using_form_plugin()) : ?>
36 <p class="iawp-category-description">Your site is actively tracking all form submissions made with <strong><?php echo esc_html($integrations->active_form_plugin()->name()); ?></strong> thanks to the Independent Analytics Pro plugin!</p><?php
37 else : ?>
38 <p class="iawp-category-description">Automatically track form submissions and conversion rates in the Pages, Referrers, Geographic,
39 Devices, and Campaigns reports.</p><?php
40 endif; ?>
41 <p><a class="iawp-button purple" target="_blank" href="https://independentwp.com/knowledgebase/form-tracking/track-form-submissions/">Watch tutorial &rarr;</a></p><?php
42 else :
43 if ($integrations->is_using_form_plugin()) : ?>
44 <p class="iawp-category-description"><strong>You're missing out on data!</strong> You could be tracking <strong><?php echo esc_html($integrations->active_form_plugin()->name()); ?></strong> submissions and conversion rates in the Pages, Referrers, Geographic,
45 Devices, and Campaigns reports.</p><?php
46 else : ?>
47 <p class="iawp-category-description">Automatically track form submissions and conversion rates for every form in the Pages, Referrers,
48 Geographic, Devices, and Campaigns reports using Independent Analytics Pro.</p><?php
49 endif; ?>
50 <p><a class="iawp-button purple" target="_blank" href="https://independentwp.com/features/form-tracking/?utm_source=User+Dashboard&utm_medium=WP+Admin&utm_campaign=Integrations+Menu">Learn more about form tracking &rarr;</a></p><?php
51 endif; ?>
52 <div class="iawp-integration-list"><?php
53 foreach ($integrations->form_integrations() as $integration) {
54 echo $integration->html();
55 } ?>
56 </div>
57 </div>
58 </div>
59 </div>