Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vbCoupons - offer money-off coupons for paid subscriptions Details »»
vbCoupons - offer money-off coupons for paid subscriptions
Version: 1.4, by ringleader ringleader is offline
Developer Last Online: Dec 2011 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.6.9 Rating:
Released: 03-21-2008 Last Update: 04-14-2008 Installs: 94
DB Changes Uses Plugins Template Edits
Re-useable Code Additional Files Translations  
No support by the author.

vbCoupons v1.4


About this mod:

This hack allows the user to input a coupon code that deducts the value of it from the subscription costs before they go to pay for a subscription.

For example:
1. You advertise for new members and have and advert saying 'Join before the end of April and get 40% off the first month! Just register and enter coupon code OFFER1"
2. In Admincp -> vbCoupons you configure a coupon called OFFER1 with value of 40, and set a date for the validity of the coupon.
3. User registers, and enters coupon code OFFER1 on the payments.php page. The page updates the normal subscription prices to reflect the offer. Then they go to pay for it.

Notes:

1. Since the offer code expires when you set it to, the users will not be able to renew with that coupon unless the subscription runs out before the coupon validity does; thus it's better to use short-validity coupons and constantly change them.
2. The value of the coupon in the Admin Panel is given as a monetary value, e.g. a coupon with value 3.50 will give $3.50 (?3.50; ?3.50, depending on currencies activated) off paid subscription before the user goes to pay for it.

Features:

* Manage Coupons: Singly Add/Edit/Delete; Mass-delete.
* Set coupon valid for particular subscription ID's.
* Limit use by date or times it can be used.
* Mass-Generate coupons for distribution.
* Generate coupon discount codes and post to a new thread in a specified forum. A message may be sent with the codes. You can decide the thread title too.
* Input on features you would like to see for this hack is very welcome, but may not be possible to implement.

Time to install: 5 mins

UPGRADING: Do NOT choose 'yes' to overwrite an old xml or you will get an error!

Updates:

Version 1.0 (22nd March 2008):

* Release of this hack for vBulletin version 3.6.8
* This version should work on all vBulletin versions from 3.5.4 and up

Version 1.1 (25th March 2008):

* Fixed missing phrase
* Fixed non-functioning template call

Version 1.2 +1.3 (30th March 2008):

* Added coupon generator to this version
* Added ability to limit coupons to only be valid for a particular paid subscription.

Version 1.4 (14th April 2008):

* Generate coupons and post to thread
* Coupons can be limited to one or more subscriptionids
* MONETARY VALUES RATHER THAN PERCENTAGES ARE USED FROM NOW ON


MAKE SURE YOU CLICK INSTALL!
If you like this hack and use it then

Pictures (attached):

1. User (payments.php): Normal view before user adds a coupon that you configured in the admincp.
2. User (payments.php): View after the user adds a coupon to their account, with the new prices reflecting it.
3. Admin: Manage Existing Coupons
4. Admin: Add a single coupon discount code
5. Admin: Mass-generate coupons
6. Admin: Mass-generate coupons and post to a new thread
7. User: Thread view of mass-generated and posted coupon discount codes

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #122  
Old 04-07-2008, 12:22 PM
ringleader's Avatar
ringleader ringleader is offline
 
Join Date: Dec 2006
Location: Dublin, Ireland
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Rickeo View Post
Not working for me I did everything the install instructions said but when I import the product I can't find vbcoupons anywhere in the admincp and when I manually go to the file in admincp it just shows a table with no options or anything to add coupons please fix this my whole forum opening is kind of relying on this mod lol
Refresh your admincp and it should show the menu on the left.

Quote:
Originally Posted by DssCrazy View Post
problems found. when you gen a key if use is set to 1 it will not work. idk why that is.
I think it's just because of a conditional I have checking it's > than 1 that should be checking if it's greater than or equal to 1

Quote:
also can you add a future to 1 click del all coupon codes this will come in handy.
Sure. I actually only thought of that when I had finished the last update!

Quote:
Originally Posted by bada_bing View Post
Great Mod.. I have this installed on one of my sites bus hesitant to install on my other site unless the bug I and someone else mentioned, any updates?
I have no idea what is going on there bada_bing. The way this works, your error should not even be able to occur.

I will be re-writing this during the week to clean it up a lot and remove any possible errors.
Hopefully any of you who have errors with the current version will have them resolved in the next.
Reply With Quote
  #123  
Old 04-09-2008, 02:54 PM
ChurchMedia's Avatar
ChurchMedia ChurchMedia is offline
 
Join Date: Dec 2002
Location: Las Cruces, NM
Posts: 473
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A couple of things suggestions:

EDIT: 1) Found the problem -- conflict with a mod I made.

2) It would be ideal to be able to assign more than one subscription ID to a coupon. You could code this pretty easily using "explode" for commas.

3) When you assign a coupon code, the code is changed to lower case ($coupon_name = strtolower($coupon_name). That isn't good for me because I'd like to use all-caps in my codes. I can just comment out the line, but you might want to make it optional or something.

Thanks again for this mod! It's something I've been waiting for forever.
Reply With Quote
  #124  
Old 04-10-2008, 07:09 AM
ringleader's Avatar
ringleader ringleader is offline
 
Join Date: Dec 2006
Location: Dublin, Ireland
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ChurchMedia View Post
2) It would be ideal to be able to assign more than one subscription ID to a coupon. You could code this pretty easily using "explode" for commas.
It was simply because I would have no use for that that I didn't think of it before
I'll add it in this weekend to the new, hopefully much cleaner, version.

Quote:
Originally Posted by ChurchMedia View Post
3) When you assign a coupon code, the code is changed to lower case ($coupon_name = strtolower($coupon_name). That isn't good for me because I'd like to use all-caps in my codes. I can just comment out the line, but you might want to make it optional or something.
Pure laziness made me do that!
The check when the person inputs a coupon in their payments.php (in any case, upper or lower) will convert it to lower and check it against the lowercase version in the DB. It's just easier for all. The reasoning was that people don't notice case-sensitivity when inputting stuff like this.
So you can use upper or lowercase for your coupons - it's independent.
Reply With Quote
  #125  
Old 04-10-2008, 10:05 AM
gonkowonko gonkowonko is offline
 
Join Date: Jun 2005
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is there anyway to have a percent like 16.6 off rather than a whole number, reason being im trying to deduct £2 but i cant get to exactly as i need to enter 16.6

or change it so that you define how much they can have off the price ie £2

**scrap that i have edited the php files to allow me to deducted actual amounts rather than percentages

Thanks this is a GREAT HACK!
Reply With Quote
  #126  
Old 04-10-2008, 11:19 AM
ringleader's Avatar
ringleader ringleader is offline
 
Join Date: Dec 2006
Location: Dublin, Ireland
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gonkowonko View Post
is there anyway to have a percent like 16.6 off rather than a whole number, reason being im trying to deduct ?2 but i cant get to exactly as i need to enter 16.6
I was (rather stupidly) working with integers only when making this

I'll see what I can do about this in future.
Probably could incorporate it somehow.
Glad you like the hack!
Reply With Quote
  #127  
Old 04-10-2008, 11:48 AM
Martin-TMGRS Martin-TMGRS is offline
 
Join Date: May 2005
Location: Coventry
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've added all the file edits and uploaded all the files. I can see where you add the coupon code in the usercp but I can't see anything in my admincp any ideas please.
Reply With Quote
  #128  
Old 04-10-2008, 12:06 PM
ringleader's Avatar
ringleader ringleader is offline
 
Join Date: Dec 2006
Location: Dublin, Ireland
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Martin-TMGRS View Post
I've added all the file edits and uploaded all the files. I can see where you add the coupon code in the usercp but I can't see anything in my admincp any ideas please.
Refresh the admincp - the menus are only built once the first time you enter the admincp
Reply With Quote
  #129  
Old 04-10-2008, 12:17 PM
Martin-TMGRS Martin-TMGRS is offline
 
Join Date: May 2005
Location: Coventry
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ringleader View Post
Refresh the admincp - the menus are only built once the first time you enter the admincp
I have done that many time. I've even logged out hoping that would have done the trick. but still nothing!!!!
Reply With Quote
  #130  
Old 04-10-2008, 12:20 PM
ringleader's Avatar
ringleader ringleader is offline
 
Join Date: Dec 2006
Location: Dublin, Ireland
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Martin-TMGRS View Post
I have done that many time. I've even logged out hoping that would have done the trick. but still nothing!!!!
Do you have the file /includes/xml/cpnav_vbcoupons.xml?
Because if you have that, then there is absolutely no reason why it would not show.
Reply With Quote
  #131  
Old 04-10-2008, 12:23 PM
Martin-TMGRS Martin-TMGRS is offline
 
Join Date: May 2005
Location: Coventry
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ringleader View Post
Do you have the file /includes/xml/cpnav_vbcoupons.xml?
Because if you have that, then there is absolutely no reason why it would not show.
Yep that file is there
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:15 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10199 seconds
  • Memory Usage 2,328KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (11)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete