Ghost/ghost/admin/app/components/settings/analytics.hbs
Rishabh Garg d10d4390f0
Removed duplicate newsletter tracking settings (#15717)
refs cca0f7d7dc

- newsletter tracking setting has now moved to analytics settings page. the duplicate settings on newsletter settings page is removed.
2022-10-28 02:35:39 +05:30

78 lines
3.3 KiB
Handlebars

<div class="gh-main-section">
<h4 class="gh-main-section-header small bn">Newsletters</h4>
<section class="gh-expandable">
<div class="gh-expandable-block">
<div class="gh-expandable-header">
<div>
<h4 class="gh-expandable-title">Newsletter opens</h4>
<p class="gh-expandable-description">
Record when a member opens an email
</p>
</div>
<div class="for-switch">
<label class="switch" for="email-track-opens" data-test-label="email-track-opens">
<input
id="email-track-opens"
type="checkbox"
checked={{this.settings.emailTrackOpens}}
{{on "change" this.toggleEmailTrackOpens}}
data-test-checkbox="email-track-opens"
>
<span class="input-toggle-component"></span>
</label>
</div>
</div>
</div>
<div class="gh-expandable-block">
<div class="gh-expandable-header">
<div>
<h4 class="gh-expandable-title">Newsletter clicks</h4>
<p class="gh-expandable-description">
Record when a member clicks on any link in an email
</p>
</div>
<div class="for-switch">
<label class="switch" for="email-track-clicks" data-test-label="email-track-clicks">
<input
id="email-track-clicks"
type="checkbox"
{{on "change" this.toggleEmailTrackClicks}}
checked={{this.settings.emailTrackClicks}}
data-test-checkbox="email-track-clicks"
>
<span class="input-toggle-component"></span>
</label>
</div>
</div>
</div>
</section>
</div>
<div class="gh-main-section">
<h4 class="gh-main-section-header small bn">Sources</h4>
<section class="gh-expandable">
<div class="gh-expandable-block">
<div class="gh-expandable-header">
<div>
<h4 class="gh-expandable-title">Member sources</h4>
<p class="gh-expandable-description">
Track which sources and posts are driving the most member growth
</p>
</div>
<div class="for-switch">
<label class="switch" for="members-track-sources" data-test-label="members-track-sources">
<input
id="members-track-sources"
type="checkbox"
checked={{this.settings.membersTrackSources}}
data-test-checkbox="members-track-sources"
{{on "change" this.toggleMembersTrackSources}}
>
<span class="input-toggle-component"></span>
</label>
</div>
</div>
</div>
</section>
</div>