-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
166 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
// Don't call the file directly | ||
if ( !defined( 'ABSPATH' ) ) exit; | ||
|
||
if(!class_exists('CBWCT_ORDER_TRACKER')) { | ||
return; | ||
} | ||
|
||
|
||
?> | ||
|
||
|
||
<div class="cbwct-tracking-container"> | ||
<div class="cbwct-tracking"> | ||
<div class="cbwct-tracking-title"> | ||
<h2><?php apply_filters( 'cbwct_order_tracking_heading', __('Order Tracker', 'cbwet') );?></h2> | ||
</div> | ||
|
||
<!--Tracking Form --> | ||
<div class="cbwct-tracking-from"> | ||
<form method="POST"> | ||
<div class="cbwct-tracking-form-area"> | ||
<div class="cbwct-tracking-form-field"> | ||
<label for="order_number"><?php apply_filters('cbwct_field_text_order_number', __('Order Number', 'cbwet'));?></label> | ||
<input type="text" id="order_number" name="order_number" placeholder="Order Number..."> | ||
</div> | ||
<div class="cbwct-tracking-form-field"> | ||
<label for="phone"><?php apply_filters('cbwct_field_text_phone_number', __('Phone Number', 'cbwet'));?></label> | ||
<input type="text" id="phone" name="phone_number" placeholder="Phone Number..."> | ||
</div> | ||
<div class="cbwct-tracking-form-field cbwct-traking-form-submit"> | ||
<?php wp_nonce_field('cbwct_nonce_data'); ?> | ||
<input type="submit" value="<?php apply_filters('cbwct_submit_button_text', __('Track Order', 'cbwet'));?>"> | ||
</div> | ||
</div> | ||
</form> | ||
</div><!--/ Tracking Form --> | ||
|
||
<!-- Pre Loader--> | ||
<div class="cbwct_result_preload_area"> | ||
<div class="cbwct_result_preload"> | ||
<div></div><div></div><div></div> | ||
</div> | ||
</div><!--/ Pre Loader--> | ||
|
||
<!-- Show All Output--> | ||
<div class="cbwct-traking-form-result"></div><!--/ Show All Output--> | ||
|
||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.