Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #11  
Old 08-14-2007, 11:46 PM
King Kovifor's Avatar
King Kovifor King Kovifor is offline
 
Join Date: Nov 2004
Location: PA
Posts: 3,872
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do it under the hook "Parse Templates", and use eval() codes.

I believe this is the structure:

PHP Code:
eval("$template_hook['userinfo_postbit_left'] .= '" fetch_template('template name') . "':"); 
That should do the trick. Just add your code into a template. Templates are the best and easiest way to go within template hooks.
Reply With Quote
  #12  
Old 08-15-2007, 01:28 AM
0ptima 0ptima is offline
 
Join Date: Feb 2002
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by King Kovifor View Post
Do it under the hook "Parse Templates", and use eval() codes.

I believe this is the structure:

PHP Code:
eval("$template_hook['userinfo_postbit_left'] .= '" fetch_template('template name') . "':"); 
That should do the trick. Just add your code into a template. Templates are the best and easiest way to go within template hooks.
that did not work either....
Reply With Quote
  #13  
Old 08-15-2007, 11:05 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What error are you getting now? (Copy and Paste it)

Or is just not showing up?
Reply With Quote
  #14  
Old 08-16-2007, 12:05 AM
0ptima 0ptima is offline
 
Join Date: Feb 2002
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is my plugin code

PHP Code:
eval("$template_hook['postbit_userinfo_right_after_posts'] .= '" fetch_template('CustomPostbit') . "':"); 
The hook location is parse_templates

I have the following in my custom template

PHP Code:
<if condition="$post[userid]"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if> 
I get the following error:

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/website/public_html/forums/global.php(554) : eval()'d code on line 7

Thanks.
Reply With Quote
  #15  
Old 08-16-2007, 07:05 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No wonder...you have a colon before the final speech mark. Change it to a semi-colon and it should work.

Here:
PHP Code:
eval("$template_hook['postbit_userinfo_right_after_posts'] .= '" fetch_template('CustomPostbit') . "';"); 
Reply With Quote
  #16  
Old 08-16-2007, 11:27 PM
0ptima 0ptima is offline
 
Join Date: Feb 2002
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Even with the change, I still get the error. Are the quotes in the right place?
Reply With Quote
  #17  
Old 08-17-2007, 09:08 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First try this:
PHP Code:
eval('$template_hook[postbit_userinfo_right_after_posts] .= "' fetch_template('CustomPostbit') . '";'); 
If still not try this:
PHP Code:
eval('$template_hook[\'postbit_userinfo_right_after_posts\'] .= "' fetch_template('CustomPostbit') . '";'); 
Finally are you running any other plugins?

If things don't start working trial and error is the way to go haha.
Reply With Quote
  #18  
Old 08-19-2007, 01:00 AM
0ptima 0ptima is offline
 
Join Date: Feb 2002
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

None gave me errors but non worked
Reply With Quote
  #19  
Old 08-19-2007, 02:58 AM
sinisterpain's Avatar
sinisterpain sinisterpain is offline
 
Join Date: Feb 2006
Location: New Hampshire
Posts: 571
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
 $template_hook['postbit_userinfo_right']  .= '
<if condition="$post[userid]"><div>iTrader: <a href="itrader.php?' . $session['sessionurl'] . 'u= ' . $post['userid'] . '">' . $post['itrader_total'] . '</a></div></if> ';
not tested
Reply With Quote
  #20  
Old 08-19-2007, 06:15 PM
0ptima 0ptima is offline
 
Join Date: Feb 2002
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sinisterpain View Post
Code:
 $template_hook['postbit_userinfo_right']  .= '
<if condition="$post[userid]"><div>iTrader: <a href="itrader.php?' . $session['sessionurl'] . 'u= ' . $post['userid'] . '">' . $post['itrader_total'] . '</a></div></if> ';
not tested
:up: Thank you it works!!!!!!!

I also want to thank everyone that helped me as well!!!
Reply With Quote
Reply

Thread Tools
Display Modes

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:40 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.04146 seconds
  • Memory Usage 2,256KB
  • 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
  • (2)bbcode_code
  • (7)bbcode_php
  • (2)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
  • (2)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