css
10 months ago
img
10 months ago
js
10 months ago
partials
10 months ago
class-adv-order-filter.php
10 months ago
class-analytics.php
10 months ago
class-order-tip-promotion.php
10 months ago
class-pi-dtt-labels.php
10 months ago
class-pi-dtt-order-table.php
10 months ago
conflict-fixer.php
10 months ago
menu.php
10 months ago
options-addons.php
10 months ago
options-date.php
10 months ago
options-limit.php
10 months ago
options-pickup.php
10 months ago
options-time-slot.php
10 months ago
options-time.php
10 months ago
options.php
10 months ago
options-addons.php
210 lines
| 1 | <?php |
| 2 | if ( ! defined( 'WPINC' ) ) { |
| 3 | die; |
| 4 | } |
| 5 | class pisol_dtt_addons{ |
| 6 | |
| 7 | private $settings = array(); |
| 8 | |
| 9 | private $active_tab; |
| 10 | |
| 11 | private $this_tab = 'addons'; |
| 12 | |
| 13 | private $tab_name = 'Addon Plugins'; |
| 14 | |
| 15 | private $setting_key = 'pisol_dtt_addons'; |
| 16 | |
| 17 | |
| 18 | |
| 19 | function __construct(){ |
| 20 | |
| 21 | $this->active_tab = (isset($_GET['tab'])) ? sanitize_text_field($_GET['tab']) : 'default'; |
| 22 | |
| 23 | |
| 24 | if($this->this_tab == $this->active_tab){ |
| 25 | add_action('pisol_dtt_tab_content', array($this,'tab_content')); |
| 26 | } |
| 27 | |
| 28 | add_action('pisol_dtt_tab', array($this,'tab'),10); |
| 29 | |
| 30 | |
| 31 | |
| 32 | |
| 33 | } |
| 34 | |
| 35 | |
| 36 | function tab(){ |
| 37 | $this->tab_name = __('Addon plugins', 'pisol-dtt'); |
| 38 | ?> |
| 39 | <a class=" pi-side-menu <?php echo ($this->active_tab == $this->this_tab ? 'bg-primary' : 'bg-secondary'); ?>" href="<?php echo esc_url( admin_url( 'admin.php?page='.esc_attr($_GET['page']).'&tab='.esc_attr($this->this_tab) ) ); ?>"> |
| 40 | <span class="dashicons dashicons-admin-plugins"></span> <?php echo esc_html($this->tab_name); ?> |
| 41 | </a> |
| 42 | <a class=" pi-side-menu bg-warning" target="_blank" href="https://www.piwebsolution.com/user-documentation/"> |
| 43 | <span class="dashicons dashicons-media-document"></span> Documentation |
| 44 | </a> |
| 45 | <?php |
| 46 | } |
| 47 | |
| 48 | function tab_content(){ |
| 49 | ?> |
| 50 | <div class="alert alert-warning mt-3">This addon plugins only works along with the PRO Version of the Order date, time pickup location plugin</div> |
| 51 | |
| 52 | <div class="border p-2 my-3"> |
| 53 | <div class="row align-items-center"> |
| 54 | <div class="col-12 col-md-5"> |
| 55 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/890xVsrgQVU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 56 | </div> |
| 57 | <div class="col-12 col-md-7"> |
| 58 | <h3>Preparation time master (Addon plugin)</h3> |
| 59 | <p>This allows you to change various setting of the plugin on product level</p> |
| 60 | <ul> |
| 61 | <li>Set different preparation time for each product</li> |
| 62 | <li>Make product only available for pickup or delivery or both</li> |
| 63 | <li>Set product as only available at specific pickup location only </li> |
| 64 | <li>Make product available on specific day or date</li> |
| 65 | </ul> |
| 66 | <div class="py-2 text-right"> |
| 67 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=5844&variation_id=5846" target="_blank">Buy Now</a> |
| 68 | </div> |
| 69 | </div> |
| 70 | </div> |
| 71 | </div> |
| 72 | |
| 73 | <div class="border p-2 my-3"> |
| 74 | <div class="row align-items-center"> |
| 75 | <div class="col-12 col-md-5"> |
| 76 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/sPhxFkF_jsE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 77 | </div> |
| 78 | <div class="col-12 col-md-7"> |
| 79 | <h3>Special Working date & Special Timing Pro (Addon for pro plugin)</h3> |
| 80 | <ul> |
| 81 | <li>You can set special working dates that are outside your preorder day range</li> |
| 82 | <li>You can set special timing for this special date as well</li> |
| 83 | <li>You can use this plugin to change time slot of some normal working date as well </li> |
| 84 | </ul> |
| 85 | <div class="py-2 text-right"> |
| 86 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=8739&variation_id=8745" target="_blank">Buy Now</a> |
| 87 | </div> |
| 88 | </div> |
| 89 | </div> |
| 90 | </div> |
| 91 | |
| 92 | |
| 93 | <div class="border p-2 my-3"> |
| 94 | <div class="row align-items-center"> |
| 95 | <div class="col-12 col-md-5"> |
| 96 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/4lJdvR_s6gc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 97 | </div> |
| 98 | <div class="col-12 col-md-7"> |
| 99 | <h3>Different date time for Different pickup stores and Different delivery areas PRO (Addon for pro plugin)</h3> |
| 100 | <ul> |
| 101 | <li>Offer different Time for different pickup stores</li> |
| 102 | <li>Set different working days for different pickup stores</li> |
| 103 | <li>Offer different Time for different delivery zones (e.g: based on delivery area postcode)</li> |
| 104 | </ul> |
| 105 | <div class="py-2 text-right"> |
| 106 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=6068&variation_id=6069" target="_blank">Buy Now</a> |
| 107 | </div> |
| 108 | </div> |
| 109 | </div> |
| 110 | </div> |
| 111 | |
| 112 | <div class="border p-2 my-3"> |
| 113 | <div class="row align-items-center"> |
| 114 | <div class="col-12 col-md-5"> |
| 115 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/vk77jLrzp8g" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 116 | </div> |
| 117 | <div class="col-12 col-md-7"> |
| 118 | <h3>Minimum Purchase Amount for Delivery order Pro (Addon for pro plugin)</h3> |
| 119 | <ul> |
| 120 | <li>Set Minimum purchase amount to get the Delivery option</li> |
| 121 | <li>Minimum purchase amount to get Pickup option</li> |
| 122 | <li>You can set a custom message to inform the user about the minimum purchase amount restriction</li> |
| 123 | <li>You can show a message when the user does not qualify for the delivery option, so the customer will know how he can get the delivery option</li> |
| 124 | <li>Likewise, if you want to set a minimum purchase about the restriction on your shop, you can do that as well bu setting minimum purchase amount restriction on delivery and pickup orders both</li> |
| 125 | </ul> |
| 126 | <div class="py-2 text-right"> |
| 127 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=6090&variation_id=6095" target="_blank">Buy Now</a> |
| 128 | </div> |
| 129 | </div> |
| 130 | </div> |
| 131 | </div> |
| 132 | |
| 133 | <div class="border p-2 my-3"> |
| 134 | <div class="row align-items-center"> |
| 135 | <div class="col-12 col-md-5"> |
| 136 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/nkVBYRXFStk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 137 | </div> |
| 138 | <div class="col-12 col-md-7"> |
| 139 | <h3>Delivery pickup reminder email WooCommerce PRO (Addon plugin)</h3> |
| 140 | <p>This is an addon plugin for order delivery date and time plugin, it automatically sends a reminder email to your customer, admin and staff regarding upcoming delivery or pickup for there order, you can configure in the plugin how much time before a reminder email should be sent.</p> |
| 141 | |
| 142 | <strong>E.g: if the user places a pickup order for 25th April 2020 3:00 PM<br> |
| 143 | and you have set the reminder time to be 30 min <br> |
| 144 | then the customer will receive and a reminder email on 25th April 2020 2:30 PM</strong> |
| 145 | <div class="py-2 text-right"> |
| 146 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=5195&variation_id=5199" target="_blank">Buy Now</a> <a class="btn btn-md btn-primary" href="https://wordpress.org/plugins/delivery-pickup-reminder-email-woocommerce/" target="_blank">Try Free version</a> |
| 147 | </div> |
| 148 | </div> |
| 149 | </div> |
| 150 | </div> |
| 151 | |
| 152 | <div class="border p-2 my-3"> |
| 153 | <div class="row align-items-center"> |
| 154 | <div class="col-12 col-md-5"> |
| 155 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/bJw2k4FniOQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 156 | </div> |
| 157 | <div class="col-12 col-md-7"> |
| 158 | <h3>Delivery date, time preference selection popup (Addon for pro plugin)</h3> |
| 159 | <ul> |
| 160 | <li>This plugin allows you to get user delivery preference way before they reach the checkout page.</li> |
| 161 | <li>There are multiple ways to trigger the preference popup like: |
| 162 | <ol> |
| 163 | <li>Link based trigger: create a link class name “pisol-date-time-popup” and that link will trigger the preference popup</li> |
| 164 | <li>Auto load the preference popup on every page untill user saves his preference</li> |
| 165 | </ol> |
| 166 | </li> |
| 167 | <li>Buyer can change there selected preference again on the checkout page</li> |
| 168 | <li>Auto fills the user selected preferences on the checkout page</li> |
| 169 | <li>Option to customize all the text of the form in your language, from plugin setting + Loco translator</li> |
| 170 | <li>Customize the looks of the preferece popup</li> |
| 171 | </ul> |
| 172 | <div class="py-2 text-right"> |
| 173 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=4462&variation_id=4467" target="_blank">Buy Now</a> |
| 174 | </div> |
| 175 | </div> |
| 176 | </div> |
| 177 | </div> |
| 178 | |
| 179 | <div class="border p-2 my-3"> |
| 180 | <div class="row align-items-center"> |
| 181 | <div class="col-12 col-md-5"> |
| 182 | <iframe style="width:100%; height:230px;" src="https://www.youtube.com/embed/z0BzI2Mc2cs" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 183 | </div> |
| 184 | <div class="col-12 col-md-7"> |
| 185 | <h3>Pro Order Calendar for WooCommerce (Add-on plugin)</h3> |
| 186 | <ul> |
| 187 | <li>It can show delivery date on the calendar</li> |
| 188 | <li>Show pickup dates on the calendar</li> |
| 189 | <li>This can be helpful for you to see upcoming delivery and pickup dates</li> |
| 190 | <li>Show calendar on the front end using the short-code [order_calendar]</li> |
| 191 | <li>Your staff can log in into the front end of the site to see order detail</li> |
| 192 | <li>Assign order detail access as per the employee role</li> |
| 193 | <li>If an employee is in a production show them product detail of the order</li> |
| 194 | <li>If an employee is in delivery then only show him customer detail or even product detail</li> |
| 195 | </ul> |
| 196 | <div class="py-2 text-right"> |
| 197 | <a class="btn btn-md btn-primary" href="https://www.piwebsolution.com/cart/?add-to-cart=4052&variation_id=4054" target="_blank">Buy Now</a> |
| 198 | </div> |
| 199 | </div> |
| 200 | </div> |
| 201 | </div> |
| 202 | |
| 203 | |
| 204 | <?php |
| 205 | } |
| 206 | |
| 207 | |
| 208 | } |
| 209 | |
| 210 | new pisol_dtt_addons(); |