PluginProbe
wpForo Forum / 3.2.1
wpForo Forum v3.2.1
3.2.1 3.2.0 3.1.7 3.1.6 3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 All 141 releases
← All changes | admin/pages/tabs/ai-features-tab-overview.php +39 -4 3.1.4 → 3.2.1 View file →
@@ -588,9 +588,9 @@
588 588 <div class="wpforo-ai-actions">
589 589 <?php if ( $is_free_trial ) : ?>
590 590 <button type="button" class="button button-primary button-large" onclick="document.getElementById('wpforo-ai-plans').scrollIntoView({ behavior: 'smooth' })">
591 591 <span class="dashicons dashicons-cart"></span>
592 - <?php _e( 'Upgrade Now / View Plans', 'wpforo' ); ?>&nbsp;
592 + <?php _e( 'Upgrade Now / View Subscription Plans', 'wpforo' ); ?>&nbsp;
593 593 </button>
594 594 <?php else : ?>
595 595 <?php foreach ( $payment_providers as $provider ) : ?>
596 596 <a href="<?php echo esc_url( wpforo_ai_get_manage_subscription_url( $provider ) ); ?>" class="button button-secondary wpf-manage-subscription wpf-provider-<?php echo esc_attr( $provider ); ?>" target="_blank">
@@ -777,9 +777,9 @@
777 777
778 778 <div class="wpforo-ai-error-actions">
779 779 <button type="button" class="button button-primary button-large" onclick="document.getElementById('wpforo-ai-plans').scrollIntoView({ behavior: 'smooth' })">
780 780 <span class="dashicons dashicons-cart"></span>
781 - <?php _e( 'Upgrade Now / View Plans', 'wpforo' ); ?>&nbsp;
781 + <?php _e( 'Upgrade Now / View Subscription Plans', 'wpforo' ); ?>&nbsp;
782 782 </button>
783 783
784 784 <form method="post" action="" style="display: inline;">
785 785 <?php wp_nonce_field( 'wpforo_ai_refresh_status' ); ?>
@@ -1268,9 +1268,9 @@
1268 1268 <?php endif; ?>
1269 1269 <div class="wpforo-ai-step-icon">
1270 1270 <span class="wpforo-ai-step-number">2</span>
1271 1271 </div>
1272 - <div class="wpforo-ai-step-label"><?php _e( 'Index Forum Content', 'wpforo' ); ?></div>
1272 + <div class="wpforo-ai-step-label" style="color: rgb(214, 39, 224);"><?php _e( 'Index Forum Content', 'wpforo' ); ?></div>
1273 1273 <?php echo $is_connected ? '</a>' : '</div>'; ?>
1274 1274 <div class="wpforo-ai-step-connector"></div>
1275 1275 <?php if ( $is_connected ) : ?>
1276 1276 <a href="<?php echo esc_url( $settings_url ); ?>" class="wpforo-ai-step">
@@ -1315,8 +1315,16 @@
1315 1315 </div>
1316 1316 <div class="wpforo-ai-step-label"><?php _e( 'Monitor AI Usage', 'wpforo' ); ?></div>
1317 1317 <?php echo $is_connected ? '</a>' : '</div>'; ?>
1318 1318 </div>
1319 + <div class="wpforo-ai-privacy-note">
1320 + <p><span class="dashicons dashicons-shield" style="color: #0073aa;"></span> <strong><?php _e( 'Your Data Stays Yours', 'wpforo' ); ?></strong></p>
1321 + <ul>
1322 + <li><strong style="color: rgb(214, 39, 224);"><?php _e( 'Forum content indexing', 'wpforo' ); ?></strong> <?php _e( 'converts your forum content into mathematical vectors (embeddings) to power AI search and features.', 'wpforo' ); ?></li>
1323 + <li><?php _e( 'Your data is never used to train AI models. We use pre-trained models from Amazon Bedrock.', 'wpforo' ); ?></li>
1324 + <li><?php _e( 'By default your data embeddings are stored locally in your WordPress database.', 'wpforo' ); ?></li>
1325 + </ul>
1326 + </div>
1319 1327 <div class="wpforo-ai-steps-cta">
1320 1328 <a href="https://wpforo.com/docs/wpforo-v3/ai-features/#getting-started" target="_blank" class="button button-primary button-hero">
1321 1329 <span class="dashicons dashicons-book" style="vertical-align: middle; margin-right: 5px;"></span>
1322 1330 <?php _e( 'Read AI Features Documentation', 'wpforo' ); ?>
@@ -1324,8 +1332,28 @@
1324 1332 </div>
1325 1333 </div>
1326 1334 </div>
1327 1335 <style>
1336 + .wpforo-ai-privacy-note {
1337 + background: #f0f7fc;
1338 + border-left: 4px solid #0073aa;
1339 + padding: 15px 20px;
1340 + margin: 20px 0;
1341 + border-radius: 0 4px 4px 0;
1342 + }
1343 + .wpforo-ai-privacy-note p {
1344 + margin: 0 0 10px 0;
1345 + font-size: 14px;
1346 + }
1347 + .wpforo-ai-privacy-note ul {
1348 + margin: 0;
1349 + padding-left: 20px;
1350 + }
1351 + .wpforo-ai-privacy-note li {
1352 + margin-bottom: 5px;
1353 + font-size: 13px;
1354 + color: #444;
1355 + }
1328 1356 .wpforo-ai-getting-started-box {
1329 1357 margin-bottom: 20px;
1330 1358 }
1331 1359 .wpforo-ai-steps-cta {
@@ -1373,8 +1401,15 @@
1373 1401 justify-content: center;
1374 1402 margin-bottom: 10px;
1375 1403 transition: all 0.2s ease;
1376 1404 }
1405 + a.wpforo-ai-step .wpforo-ai-step-icon {
1406 + background: #edfaef;
1407 + border-color: #00a32a;
1408 + }
1409 + a.wpforo-ai-step .wpforo-ai-step-number {
1410 + color: #00a32a;
1411 + }
1377 1412 .wpforo-ai-step.completed .wpforo-ai-step-icon {
1378 1413 background: #00a32a;
1379 1414 border-color: #00a32a;
1380 1415 color: #fff;
@@ -1915,9 +1950,9 @@
1915 1950 $pricing = wpforo_ai_get_freemius_pricing();
1916 1951 $plans = $pricing['plans'];
1917 1952
1918 1953 ?>
1919 - <div class="wpforo-ai-callout">
1954 + <div class="wpforo-ai-callout" style="display: none;">
1920 1955 <span class="dashicons dashicons-info"></span>
1921 1956 <div>
1922 1957 <strong><?php _e( 'Credit-Based Pricing', 'wpforo' ); ?></strong>
1923 1958 <p><?php _e( 'Pay only for what you use with flexible credit-based pricing. Credits roll over month-to-month as long as you have an active subscription plan. Each plan allows credit accumulation up to one year of subscription plan credits. Start with 500 free credits, then choose a plan that fits your forum\'s activity level.', 'wpforo' ); ?><br><?php _e('You can select the quality of AI model for each feature individually: ', 'wpforo') ?></p>