123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {extend name="base" /}
- {block name="title"}Vape Points{/block}
- {block name="styles"}
- <link rel="stylesheet" href="/assets/index/css/aboutUs.css">
- {/block}
- {block name="mainArea"}
- <video width="50%" height="30%" controls style="margin-left:24%">
- <source src="/assets/index/asstes/banner/freeshippingvapes.mp4" type="video/mp4">
- </video>
- <div class="titleP">
- <h1 class="policySubTitle">Vape Points</h1>
- </div>
- <div class="container">
- <h2>What are Vape points?</h2>
- <p>1. Points can be used as cash on orders. 100 points=$1.00. Customers can earn points through various activities
- such as registering, purchasing items, posting reviews, forwarding to friends and Signing up for our newsletter.
- <br>
- 2. All points must be obtained in accordance with the rules and Customer Conduct Code of our Terms & Conditions.
- Violators will have their points reset to zero and/or their account suspended.</p>
- <br>
- <h2>How to Get Vape Points?</h2>
- <p>For example, if you purchase one vape, (any flavor) the cost is around 11 USD. Therefore you need 1100 points to
- pay
- for this order. When you have enough points in the account, you can click the “Pay by Vape Points” and proceed.
- <br>
- Example to get 1100 Vape Points: You registered on the website and forwarded to two friends to purchase
- (including
- yourself) = 100+700*2 = 1500 points. Or, register on our website and purchased one order and a few months later
- purchased another order = 100 + 700 + 700 = 1500 vapes points! EASY!!</p>
- <br>
- <h2>How to Use Vape Points?</h2>
- <p>1. 100 points=$1.00. Basically 1500 points approximately equals the value of one free vape.
- <br>
- 2. The points you redeemed for each purchase is 700. Re-direct to friends and family to purchase is 700 points.
- (By
- clicking the SHARE button in each shopping cart, your own account QR code is generated. Whoever buys through
- scanning the QR code will generate 700 points automatically. It will be to your account. Forwarding to friends
- is
- fun. And there is no limit to how many points you can earn in this promotion function.
- Other actions: Registration or subscribing to our newsletter = 100 points automatically. EACH Purchasing = 700
- points. Each review posting = 50 points (maximum 10 reviews per account)</p>
- <br>
- <h2>About your points</h2>
- <p>1. When a customer requests a refund, the points earned from the corresponding order will be deducted from the
- account. Points can be deducted to a negative value. In this case, future points earned will offset the negative
- value first until the customer has a positive number of points.
- <br>
- 2. Each time you earn Vape points, there is a corresponding validity period. All points received are valid for
- 365
- days, we will revise your points balance regularly.</p>
- <br>
- <p>
- For registration: <a href="/index/passport/login.html" class="aLink">click here! </a>(100 points). If you're
- already logged in, it will be redirected to the store Home.
- <br>
- IF you are already registered and:
- <br>
- i) would like to purchase, <a href="/index/index/index.html" class="aLink">click here! </a> (700 points each
- order)
- <br>
- ii) would like to post a review, <a href="/index/user/order.html" class="aLink">click here! </a> (50 points each
- review)
- <br>
- iii) would like to forward to a friend by sending our QR code, <a href="/index/index/index.html" class="aLink">click
- here! </a> (700 points on each successfully forwarded link
- purchase)
- <br>
- iv) would like to subscribe to our newsletter, <a href="/index/index/index.html" class="aLink">click here! </a>
- (100 points)
- </p>
- </div>
- {/block}
- {block name="scriptSrc"}
- <script>
- $(document).ready(function () {
- //触屏事件 || 点击事件
- const tap = "ontouchstart" in window ? "touchstart" : "click";
- //订阅
- $("#subscribeArrow").on(tap, function (event) {
- showToast('success')
- });
- /**
- * 吐司提示
- * @param message 消息
- * @returns
- */
- function showToast(message) {
- var toastElement = $('#toastContainer');
- toastElement.text(message);
- toastElement.stop(true, true).fadeIn(200).delay(2000).fadeOut(200);
- }
- })
- </script>
- {/block}
|