How NOT to do business online Digital Media Digital Marketing by Reverend Jim … buyer I was offered a 10% discount on my first order. They emailed me the discount code. Entering the code on the… purchase page did apply the discount. The email had an option of "if you have… Re: How NOT to do business online Digital Media Digital Marketing by rproffitt Someone wanted me to pay with Venmo which I also have never used. Sorry, but I don't want to add more apps today. Re: How NOT to do business online Digital Media Digital Marketing by Dani Not that it is an excuse, but I would like to offer up an explanation, if I may. You can [see here](https://www.daniweb.com/programming/web-development/threads/541688/airtm-api-how-to-build-a-form) that only 4 days ago, FarrisFahad had a button to pay by Paypal on his website, and wants to convert it into utilizing a payment API (e.g. something … Re: How NOT to do business online Digital Media Digital Marketing by Reverend Jim I could understand that for a small company but it looks like this place (US based) also has a Canadian presence. And judging by [their range of products](https://www.thewoodveneerhub.ca/) they aren't a small company. In any case, after pricing out what we wanted ($800+) and failing to get an alternate payment option we decided to invest in a … Re: How NOT to do business online Digital Media Digital Marketing by Dani > I could understand that for a small company but it looks like this place (US based) also has a Canadian presence. According to their about us page, it’s a family owned business run by a guy named Lawrence who has been in the industry since the 1970s but just started his own business in the 2000s. Which fits the profile I had laid out. (Eg … Re: How NOT to do business online Digital Media Digital Marketing by Reverend Jim Fair enough. Consumers like discount coupons but hate drive-by marketing Digital Media Digital Marketing by happygeek Discount coupons are OK, but consumers consider drive-by location marketing … said they would, however, be happy to be sent a discount coupon on their mobile device. Indeed, across all four countries… people were generally more receptive to the idea of targeted discount codes by text rather than special offers arriving as they… discount Programming Software Development by Phillip_3 how do DESIGN A PROGRAM THAT CAN DISPLAY THE DISCOUNT ALLOCATED TO A CUSTOMER AND THE TOTAL PRICE TO BE PAID AFTER DEDUCTING THE DISCOUNT.TOTAL PRICE ARRIVED AT AFTER MULTIPLYING THE QUANTITY BY THE UNIT PRICE Re: discount code functionality in ecommerce site Programming Web Development by HemantPHP … product) 2) Otherwise make one associations table for product-discount. id discount_id product_id 3) Now admin can give one …or multiple discount to any product at the time of add/edit product…you give different panel for admin to manage this product-discount, then it is also possible by giving one selection… discount code functionality in ecommerce site Programming Web Development by navi17 … days. Every goes well but now i am stuck on discount functionality. My client wants to have following functionality in the… get 1 free 3)- recommend a friend and get a discount Can any one shares his/her views regarding how these… Re: discount code functionality in ecommerce site Programming Web Development by HemantPHP … (eg. product1). 2) your code get discount_id from the product-discount table accordingly selected product_id. 3) Now you have one or… discount_id. 4) If it is one just reduce value of discount from total price. 5) If you have multiple discount_id then… Re: discount code functionality in ecommerce site Programming Web Development by navi17 I am planning to build separte admin section for discount. Where admin can assign the particular product to multiple discount types. thanks hemant. I will let you know if i stuck somewhere. Re: discount code functionality in ecommerce site Programming Web Development by muralibobby2015 ok fine. when ever user bought a firstproduct it will store on database. then administrator assign discount percentage for that user. this percentage store in database with userid. next time when ever same user come to buy products then check percentage is available or not. Discount Domain 24 Hardware and Software Microsoft Windows by frog3764 Lately I've been getting this site Discount Domain 24 many times when I select a link. I have reloaded the OS recently, along with Firefox and IE. Why do I get this link and how do I get rid of it? The links I select are good links, some of which I use all the time, and others which I know are good ones. All input is appreciated. Jim Purchase order form price qty discount Programming Web Development by subrata_ushasi …,unit price , quantity and amount an additional on load discount field has to be present which will be disabled from… it is clicked , a special checkbox called "special discount" (in place of the "tax")should be… available when checked will add a "special discount " column to the existing form . Database Format… Re: Purchase order form price qty discount Programming Web Development by diafol … not required if you always have the same criteria for discount - it could all be done just in js: Use js…; if(count > 10){ discount = 0.15; }elseif(count > 5){ discount = 0.12; }elseif(count > 0){ discount = 0.1; } ...do something… program discount Programming by caitlina717 …if (x<100) then writeln('you get no discount'); if(x>100) and (x<150)… then writeln ('you get a 10% discount'); if (x>150) and (x<200)… then writeln('you get a 20% discount'); if (x>200) and (x<250)… then writeln('you get a 25% discount') if (x>250) then writeln ('you get… Re: how calculate items in different discount Programming Software Development by Reverend Jim … I suggest you add it as well as the discount to your listview as a subitem. That way you… insert query is independent of the item type and discount so you can remove all the inserts from inside the…(?).Text) quantity = CInt(ListView1.FocusedItem.SubItems(2).Text) discount = CDbl(ListView1.FocusedItem.SubItems(?).Text 'determine price with possible… Re: How to calculate discount depending on quality Programming Software Development by Reverend Jim … Select I would also assume that you would get the discount on every item, in which case the calculatiion should be… Case Is < 5 discount = 0 Case Is <= 9 discount = 5 Case Is <= 14 discount = 10 Case Else discount = 15 End Select… Adding Discount Programming Web Development by dan_ord Hi, I would like to add discount to an order, but the tricky bit for me is … off the total order So 3 photos @ £15 = £45 - the discount (£3) gives me a total of £42 And 6 photos… @ £15 = £90 - the discount (£3 x2 = 6) total of £84 and so on... But… calculate discount Programming Web Development by ofir0803 Hi [CODE]$asking_price = "20"; $original_value = "100"; $discount = (1-($askingPrice/$original_value))*100; echo $discount;[/CODE] why $discount always equal to 100 ? it supposed to be 80. Magento how to apply New customer discount for first & third order? Programming Web Development by aveeva7 Magento how to apply discount for new customer like 1st order 5% discount and 3rd order 10% discount? Re: Adding Discount Programming Web Development by kireol … ".$ordered."pics\n". $numdiscounted." received a discount\n". "Customed saved ".$discounted."\n"…;. "Total price before discount: ".$pdprice."\n". "Final price: " .$finalprice… Re: calculate discount Programming Web Development by ofir0803 [QUOTE=chrishea;1537321]I think that you need to work on your debugging skills! $askingPrice is not the same as $asking_price. $askingPrice = 0 so the result is (1-0)* 100 = 100.[/QUOTE] sorry. got it [CODE]$discount = (1-((int)$asking_price/(int)$original_value))*100;[/CODE] Re: how calculate items in different discount Programming Software Development by anonimous example is hotdog quantity > 20 then discount is 10% ham quantity > 10 then discount is 5% cheese quantity > 30 then discount 15% plz help :) How can customers use a discount coupon code Digital Media Digital Marketing Search Engine Strategies by Barathand Provide the customer with the unique discount code that was generated or when you created the discount coupon code. Re: How to calculate discount depending on quality Programming Software Development by ZFPuhi Hello Minimalist, I tried to add the Discount to be displayed but with no luck, i only need … some reason it was working perfectly the discount now it started to give a Discount for all 1~5 and it needs… One Time Discount Codes Digital Media Digital Marketing by cassyjack …. They want to be able to provide users with a discount code that will work one time if the customer signs… the email for the form...they have been generating the discount codes and replying to the customer with the code however… Re: One Time Discount Codes Digital Media Digital Marketing by daniel.main.902 Is the issue you are having auto-replying to the emails, is it preventing the customer from requesting the discount code multiple times, or attempting to use the discount code multiple times once it has been requested? Identify the logic needed to apply a discount on all items in the shopping Programming Computer Science by Sean_11 … thanks in advance!!! Identify the logic needed to apply a discount on all items in the shopping cart. Verify that the… logic captures the discount coupon and the list of items from the user. Use…