PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 2.3.1
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v2.3.1
2.3.2 2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 All 60 releases
merchant / admin / components / ai-prompts-modal.php

ai-prompts-modal.php in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 2.3.1, at admin/components/ai-prompts-modal.php

49 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit; // Exit if accessed directly
5 }
6
7 ?>
8
9 <div id="merchant-ai-prompts-modal" class="merchant-ai-prompts-modal-overlay">
10 <div class="merchant-ai-prompts-modal-box">
11
12 <button type="button" class="merchant-ai-prompts-modal-close" aria-label="<?php esc_attr_e( 'Close', 'merchant' ); ?>">
13 <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
14 <path d="M1 1L13 13M13 1L1 13" stroke="currentColor" stroke-width="1.6" stroke-linecap="round"/>
15 </svg>
16 </button>
17
18 <div class="merchant-ai-prompts-modal-header">
19
20 <h3 class="merchant-ai-prompts-modal-title">
21 <span class="merchant-ai-prompts-modal-title-text"></span>
22 <span class="merchant-ai-prompts-modal-badge">
23 <svg width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
24 <path d="M8 1L10.5 5.5L15 8L10.5 10.5L8 15L5.5 10.5L1 8L5.5 5.5Z" fill="currentColor"/>
25 </svg>
26 <?php esc_html_e( 'AI', 'merchant' ); ?>
27 </span>
28 </h3>
29 <p class="merchant-ai-prompts-modal-blurb"></p>
30
31 </div>
32
33 <div class="merchant-ai-prompts-modal-body">
34
35 <h4 class="merchant-ai-prompts-modal-list-title"><?php esc_html_e( 'Prompt Examples', 'merchant' ); ?></h4>
36
37 <div class="merchant-ai-prompts-modal-list"></div>
38
39 </div>
40
41 <div class="merchant-ai-prompts-modal-footer">
42 <a href="<?php echo esc_url( add_query_arg( array( 'page' => 'merchant', 'section' => 'settings' ), 'admin.php' ) ); ?>">
43 <?php esc_html_e( 'Manage your AI connection', 'merchant' ); ?>
44 </a>
45 </div>
46
47 </div>
48 </div>
49