PluginProbe ʕ •ᴥ•ʔ
PiWeb Delivery & Pickup Date Time for WooCommerce / 3.0.49.43
PiWeb Delivery & Pickup Date Time for WooCommerce v3.0.49.43
3.0.63 3.0.62 3.0.61 3.0.60 3.0.49.49 3.0.49.6 3.0.49.60 3.0.49.61 3.0.49.62 3.0.49.63 3.0.49.64 3.0.49.66 3.0.49.67 3.0.49.69 3.0.49.7 3.0.49.70 3.0.49.72 3.0.49.73 3.0.49.74 3.0.49.76 3.0.49.77 3.0.49.79 3.0.49.9 3.0.49.90 3.0.49.91 3.0.49.92 3.0.49.93 3.0.49.94 3.0.49.96 3.0.49.97 3.0.49.99 trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 2.9.17 3.0.47 3.0.49 3.0.49.1 3.0.49.10 3.0.49.11 3.0.49.12 3.0.49.13 3.0.49.16 3.0.49.17 3.0.49.19 3.0.49.2 3.0.49.20 3.0.49.21 3.0.49.22 3.0.49.23 3.0.49.24 3.0.49.26 3.0.49.27 3.0.49.29 3.0.49.3 3.0.49.30 3.0.49.31 3.0.49.32 3.0.49.33 3.0.49.34 3.0.49.36 3.0.49.37 3.0.49.39 3.0.49.4 3.0.49.40 3.0.49.41 3.0.49.42 3.0.49.43 3.0.49.44 3.0.49.46 3.0.49.47
pi-woocommerce-order-date-time-and-type / admin / partials / promotion.php
pi-woocommerce-order-date-time-and-type / admin / partials Last commit date
promotion.php 1 year ago
promotion.php
43 lines
1 <div style="padding: 20px; background: #fff; border: 1px solid #ddd; border-radius: 8px;" class="my-3">
2 <h2>Boost Revenue with Order Tips on Checkout 💸</h2>
3 <p>
4 Want to give your customers a way to show appreciation for your service or support your team?
5 </p>
6 <p>
7 With the <strong>Order Tip for WooCommerce</strong> plugin, you can easily add a tip option directly on the checkout page. Whether you're running a restaurant, delivery service, or just want to give customers a way to say thanks — this plugin makes it simple.
8 </p>
9 <ul>
10 <li>�
11 Add fixed or percentage-based tip options</li>
12 <li>�
13 Let customers enter custom tip amounts</li>
14 <li>�
15 Style and label the tip field to match your brand</li>
16 <li>�
17 Fully compatible with all payment gateways</li>
18 </ul>
19
20 <p style="font-weight: bold; color: #008000;">⚡ A simple way to increase order value and reward your team!</p>
21 <p>
22 <?php
23 if ( $status === 'not_installed' ) {
24 $install_url = wp_nonce_url(
25 self_admin_url( 'update.php?action=install-plugin&plugin=' . $plugin_slug ),
26 'install-plugin_' . $plugin_slug
27 );
28 echo '<p><a href="' . esc_url( $install_url ) . '" style="display: inline-block; background-color: #0073aa; color: #fff; padding: 10px 20px; border-radius: 5px; text-decoration: none;">Install Now</a></p>';
29 }elseif ( $status === 'inactive') {
30
31 $activate_url = wp_nonce_url(
32 self_admin_url( 'plugins.php?action=activate&plugin=' . $plugin_file ),
33 'activate-plugin_' . $plugin_file
34 );
35 echo '<p><a href="' . esc_url( $activate_url ) . '" style="display: inline-block; background-color: #0073aa; color: #fff; padding: 10px 20px; border-radius: 5px; text-decoration: none;">Activate</a></p>';
36
37 }else{
38 echo '<p><em>The plugin is already active.</em></p>';
39 }
40 ?>
41 </p>
42 </div>
43