Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 06-29-2007, 11:51 AM
grecostimpy grecostimpy is offline
 
Join Date: Mar 2005
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Hide certain paid subscriptions?

I am looking to start allowing vendors on my forum, but I want to use the Vbulletin "paid subscription" feature to handle all payments (that way, when its time to re-up, I do not have to keep track of tracking down payments...plus, it can instantly also add them to the "Vendors" group.)

Problem is, I do not want my regular users to see the available vendor paid subscriptions from their UserCP in the paid subscriptions section.

My question:

Is there anyway to make an "invisible" subscription that can only be accessed from a link? (That way if a vendor wants to sign up, I can just send them the link and let the system handle the rest).

Thanks!
Reply With Quote
  #2  
Old 07-02-2007, 10:45 AM
grecostimpy grecostimpy is offline
 
Join Date: Mar 2005
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bump?
Reply With Quote
  #3  
Old 07-02-2007, 10:51 AM
jluerken's Avatar
jluerken jluerken is offline
 
Join Date: Aug 2003
Location: Germany
Posts: 1,016
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I never tried it but I think you can add a conditional to the subscription template to not show a special subscription ID.
Its there but simply not shown. Using this method the vendors can still access it with the direct link but it does not appear on the page where all subsricptions are listed.
Reply With Quote
  #4  
Old 07-02-2007, 12:23 PM
steve71 steve71 is offline
 
Join Date: Dec 2006
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

http://www.vbulletin.com/forum/showt...ht=paid+navbar

<if condition="$bbuserinfo[userid] != 0">
<td class="vbmenu_control"><a href="payments.php$session[sessionurl_q]">Paid Subscriptions</a></td>

</if>



This will show the subscription link (in navbar) only to registered users (group 0 is un-registered/non-logged in)...maybe you can tweak it to only show to the "vendors" group. I'm not sure this is feasible for you though..as far as just having a link send the vendors: http://www.yoursite/forum/payments.php

For this link to work though, you will have to enable the paid subscritpion feature, so it will be visible in all members UserCP/miscellaneous.
Reply With Quote
  #5  
Old 07-02-2007, 12:39 PM
grecostimpy grecostimpy is offline
 
Join Date: Mar 2005
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by steve71 View Post
http://www.vbulletin.com/forum/showt...ht=paid+navbar

<if condition="$bbuserinfo[userid] != 0">
<td class="vbmenu_control"><a href="payments.php$session[sessionurl_q]">Paid Subscriptions</a></td>

</if>



This will show the subscription link (in navbar) only to registered users (group 0 is un-registered/non-logged in)...maybe you can tweak it to only show to the "vendors" group. I'm not sure this is feasible for you though..as far as just having a link send the vendors: http://www.yoursite/forum/payments.php

For this link to work though, you will have to enable the paid subscritpion feature, so it will be visible in all members UserCP/miscellaneous.
Yeah, I really want to keep the members from seeing it at all as there are user-level paid subscriptions already in use.

Quote:
Originally Posted by jluerken
I never tried it but I think you can add a conditional to the subscription template to not show a special subscription ID.
Its there but simply not shown. Using this method the vendors can still access it with the direct link but it does not appear on the page where all subsricptions are listed.
Any ideas on how to accomplish this? Thanks for your help
Reply With Quote
  #6  
Old 07-02-2007, 04:58 PM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am interested in this also.. I only want my sponsor usergroup to see the sponsor subscription and all my other usergroups to see my normal subscriptions
Reply With Quote
  #7  
Old 07-03-2007, 01:48 PM
grecostimpy grecostimpy is offline
 
Join Date: Mar 2005
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Last call?
Reply With Quote
  #8  
Old 07-03-2007, 01:59 PM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I cant belive there is no hack for this yet.. Any offfers making one would be very helpful for site owners with paying sponsors
Reply With Quote
  #9  
Old 07-03-2007, 03:36 PM
grecostimpy grecostimpy is offline
 
Join Date: Mar 2005
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I agree....I searched through all the hacks really expecting one to pop up. But nothing.

Anyone interested in creating one?
Reply With Quote
  #10  
Old 08-04-2007, 09:38 AM
bostton1 bostton1 is offline
 
Join Date: Jun 2007
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by steve71 View Post
http://www.vbulletin.com/forum/showt...ht=paid+navbar

<if condition="$bbuserinfo[userid] != 0">
<td class="vbmenu_control"><a href="payments.php$session[sessionurl_q]">Paid Subscriptions</a></td>

</if>



This will show the subscription link (in navbar) only to registered users (group 0 is un-registered/non-logged in)...maybe you can tweak it to only show to the "vendors" group. I'm not sure this is feasible for you though..as far as just having a link send the vendors: http://www.yoursite/forum/payments.php

For this link to work though, you will have to enable the paid subscritpion feature, so it will be visible in all members UserCP/miscellaneous.

all you have to do is chage the 0 in "[userid] != 0">" to the usergroup your sponsors are in and they will be the only ones to see it.
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 09:54 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08944 seconds
  • Memory Usage 2,257KB
  • Queries Executed 11 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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