Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[uShop] BBcode and Smilies in Custom Usertitle Details »»
[uShop] BBcode and Smilies in Custom Usertitle
Version: 1.00, by dstruct2k dstruct2k is offline
Developer Last Online: Apr 2014 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-25-2004 Last Update: Never Installs: 12
 
No support by the author.

Version 2
WHAT THIS HACK DOES:
Allows your members to buy the ability to use bbcode and smilies in their custom user title. Requires uShop.


PLEASE NOTE THAT THIS DOES NOT WORK WITH CACHED POSTS TURNED ON
IF ANYONE KNOWS HOW TO MAKE CACHED POSTS AND THIS HACK WORK TOGETHER, PLEASE LET ME KNOW SO I CAN RELEASE A VERSION 3

Instructions:
Moved to instructions.txt

NOTE:
If you are upgrading from version 1, you have already made the first edit (showthread.php) and run the query.

This version adds support to 5 other files.

Show Your Support

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

Comments
  #32  
Old 05-20-2004, 04:35 PM
msimplay's Avatar
msimplay msimplay is offline
 
Join Date: Aug 2002
Location: UK
Posts: 1,059
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dstruct2k
Short instructions for profile.php because I'm busy right now:

Find a line with [musername]
add this a few lines above...
Code:
	{
 		require_once('./includes/functions_bbcodeparse.php');
 		$user['usertitle'] = parse_bbcode($user['usertitle']);
 	}
I'll post full instructions later, right now I'm coding vbEvents.
i'm using vb3.00
i can't find [musername] in profile.php

please release the instructions to add this hack to the private messages as my pms look weird
Reply With Quote
  #33  
Old 05-24-2004, 04:37 AM
dstruct2k's Avatar
dstruct2k dstruct2k is offline
 
Join Date: Dec 2002
Location: Winnipeg
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, I assumed it would be like the other pages. I guess it's not.

Give me a minute to find what needs changing.
Reply With Quote
  #34  
Old 05-24-2004, 04:38 AM
dstruct2k's Avatar
dstruct2k dstruct2k is offline
 
Join Date: Dec 2002
Location: Winnipeg
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery
<poke> anwser me :P
Sorry.

I never used post caching, so if I turned it on, I wouldn't find out anyway.
Reply With Quote
  #35  
Old 05-29-2004, 10:21 PM
the Sandman's Avatar
the Sandman the Sandman is offline
 
Join Date: Aug 2003
Location: Tampa, FL
Posts: 229
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm getting:
Quote:
Warning: main(uttstore/action.changetitle_bbcode.php): failed to open stream: No such file or directory in /home/painfor/public_html/forums/ushop.php on line 247

Fatal error: main(): Failed opening required 'uttstore/action.changetitle_bbcode.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/painfor/public_html/forums/ushop.php on line 247
Where did I mess up?
Reply With Quote
  #36  
Old 05-29-2004, 10:31 PM
the Sandman's Avatar
the Sandman the Sandman is offline
 
Join Date: Aug 2003
Location: Tampa, FL
Posts: 229
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK - found it. I had to rename action[1].changetitle_bbcode.php to action.changetitle_bbcode.php. I'm not sure why it downloads like that though...
Reply With Quote
  #37  
Old 05-31-2004, 04:02 PM
dstruct2k's Avatar
dstruct2k dstruct2k is offline
 
Join Date: Dec 2002
Location: Winnipeg
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It doesn't in IE6...

Wait, yes it does... wierd...
Reply With Quote
  #38  
Old 05-31-2004, 04:12 PM
dstruct2k's Avatar
dstruct2k dstruct2k is offline
 
Join Date: Dec 2002
Location: Winnipeg
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by msimplay
i'm using vb3.00
i can't find [musername] in profile.php

please release the instructions to add this hack to the private messages as my pms look weird
I must've been asleep when I coded that.


You're wanting to edit PRIVATE.php, not profile...

Find:
PHP Code:
    // parse the message
    
$pm['message'] = parse_pm_bbcode($pm['message'], $pm['allowsmilie']); 
After add:
PHP Code:
        if ($pm['titleparse'])
        {
            require_once(
'./includes/functions_bbcodeparse.php');
            
$pm['usertitle'] = parse_bbcode($pm['usertitle']);
        } 
Reply With Quote
  #39  
Old 05-31-2004, 05:14 PM
msimplay's Avatar
msimplay msimplay is offline
 
Join Date: Aug 2002
Location: UK
Posts: 1,059
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dstruct2k
I must've been asleep when I coded that.


You're wanting to edit PRIVATE.php, not profile...

Find:
PHP Code:
    // parse the message
     
$pm['message'] = parse_pm_bbcode($pm['message'], $pm['allowsmilie']); 
After add:
PHP Code:
        if ($bbuserinfo['titleparse'])
         {
             require_once(
'./includes/functions_bbcodeparse.php');
             
$bbuserinfo['usertitle'] = parse_bbcode($bbuserinfo['usertitle']);
         } 
don't know if the attachment hack is affecting it but that doesnt work for me
Reply With Quote
  #40  
Old 06-02-2004, 04:16 AM
dstruct2k's Avatar
dstruct2k dstruct2k is offline
 
Join Date: Dec 2002
Location: Winnipeg
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh... my... god...

I need caffene. Badly.

I've edited my last post.
Reply With Quote
  #41  
Old 06-02-2004, 03:30 PM
msimplay's Avatar
msimplay msimplay is offline
 
Join Date: Aug 2002
Location: UK
Posts: 1,059
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dstruct2k
Oh... my... god...

I need caffene. Badly.

I've edited my last post.
thank you very much been waiting for it quite a while now but am really happy its done
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 12:49 AM.


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.06393 seconds
  • Memory Usage 2,324KB
  • Queries Executed 25 (?)
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)bbcode_code
  • (4)bbcode_php
  • (6)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
  • (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