PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / 3.1.22.3
JetBackup – Backup, Restore & Migrate v3.1.22.3
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / settings / integrations.htm
backup / public / views / settings Last commit date
automation.htm 10 months ago general.htm 4 months ago integrations.htm 1 year ago logging.htm 1 year ago maintenance.htm 1 year ago notifications.htm 1 year ago performance.htm 1 year ago restore.htm 1 year ago security.htm 4 days ago updates.htm 1 year ago
integrations.htm
83 lines
1 <div class="pd-20 settings" ng-if="currentSection._id === 'integrations'">
2
3 <div class="form-group row">
4 <p class="col-12">{{ lang.t('Enable post-restore actions for supported integrations. These settings ensure proper functionality after a restore operation.') }}</p>
5 </div>
6
7 <div class="form-group row">
8 <label class="col-sm-3 col-form-label jb-label">{{ lang.t('Elementor') }}</label>
9 <div class="col-sm-9">
10 <div class="pd-3 switch-main">
11 <label class="switch">
12 <input type="checkbox"
13 ng-checked="saveData.integrations.includes('Elementor')"
14 ng-click="toggleIntegration('Elementor')">
15 <span class="slider round"></span>
16 </label>
17 <p class="pd-3">{{ lang.t('Automatically regenerate Elementor CSS after a restore') }}</p>
18 </div>
19 </div>
20 </div>
21
22 <div class="form-group row">
23 <label class="col-sm-3 col-form-label jb-label">{{ lang.t('WP Super Cache') }}</label>
24 <div class="col-sm-9">
25 <div class="pd-3 switch-main">
26 <label class="switch">
27 <input type="checkbox"
28 ng-checked="saveData.integrations.includes('Supercache')"
29 ng-click="toggleIntegration('Supercache')">
30 <span class="slider round"></span>
31 </label>
32 <p class="pd-3">{{ lang.t('Clear WP Super Cache automatically after a restore') }}</p>
33 </div>
34 </div>
35 </div>
36
37
38 <div class="form-group row">
39 <label class="col-sm-3 col-form-label jb-label">{{ lang.t('WooCommerce') }}</label>
40 <div class="col-sm-9">
41 <div class="pd-3 switch-main">
42 <label class="switch">
43 <input type="checkbox"
44 ng-checked="saveData.integrations.includes('Woocommerce')"
45 ng-click="toggleIntegration('Woocommerce')">
46 <span class="slider round"></span>
47 </label>
48 <p class="pd-3">{{ lang.t('Clear temporary data & Ensure WooCommerce data integrity after a restore') }}</p>
49 </div>
50 </div>
51 </div>
52
53 <div class="form-group row">
54 <label class="col-sm-3 col-form-label jb-label">{{ lang.t('W3 Total Cache') }}</label>
55 <div class="col-sm-9">
56 <div class="pd-3 switch-main">
57 <label class="switch">
58 <input type="checkbox"
59 ng-checked="saveData.integrations.includes('W3TotalCache')"
60 ng-click="toggleIntegration('W3TotalCache')">
61 <span class="slider round"></span>
62 </label>
63 <p class="pd-3">{{ lang.t('Purge W3 Total Cache automatically after a restore') }}</p>
64 </div>
65 </div>
66 </div>
67
68 <div class="form-group row">
69 <label class="col-sm-3 col-form-label jb-label">{{ lang.t('Autoptimize') }}</label>
70 <div class="col-sm-9">
71 <div class="pd-3 switch-main">
72 <label class="switch">
73 <input type="checkbox"
74 ng-checked="saveData.integrations.includes('Autoptimize')"
75 ng-click="toggleIntegration('Autoptimize')">
76 <span class="slider round"></span>
77 </label>
78 <p class="pd-3">{{ lang.t('Clear Autoptimize cache automatically after a restore') }}</p>
79 </div>
80 </div>
81 </div>
82
83 </div>