Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: Analogpoint
Forum: vBulletin 3.6 Template Modifications 11-28-2007, 09:41 PM
Replies: 12
Show Thread Enhancements - Alternative postbit legacy order
Views: 4,371
Posted By Analogpoint
Nice idea Valdet. thanks for the credit too :)

Nice idea Valdet. thanks for the credit too :)
Forum: vB3 Programming Discussions 11-26-2007, 02:08 PM
Replies: 3
Views: 808
Posted By Analogpoint
One option would be on your homepage, pull the...

One option would be on your homepage, pull the number straight from your database. If you don't want to run php on your homepage, do the iframe that calls a php file. The code could be:
...
Forum: vB3 Programming Discussions 11-26-2007, 01:41 PM
Replies: 2
Views: 725
Posted By Analogpoint
Put this code in a plugin on the...

Put this code in a plugin on the postbit_display_complete hook
$GLOBALS['pagepostcount'] = $post['postcount'];

Then in templates, use $GLOBALS['pagepostcount'] to reference it. But I may as well...
Forum: vB3 Programming Discussions 11-26-2007, 01:29 PM
Replies: 9
Views: 937
Posted By Analogpoint
As long as you're doing everything in the 'add...

As long as you're doing everything in the 'add event' code in calendar.php, it should work fine.
Forum: Modification Requests/Questions (Unpaid) 11-24-2007, 08:57 PM
Replies: 7
Views: 937
Posted By Analogpoint
Then edit your SHOWTHREAD and FORUMDISPLAY...

Then edit your SHOWTHREAD and FORUMDISPLAY templates. Add this for the <title> tag:

<title>
<if condition="$foruminfo['forumid'] == YOURFOURMID">
$bbuserinfo[username]'s to do...
Forum: Modification Requests/Questions (Unpaid) 11-24-2007, 08:01 PM
Replies: 7
Views: 937
Posted By Analogpoint
You can probably do a find and replace in...

You can probably do a find and replace in templates

find: </title>
replace: $bbuserinfo[username]</title>

That would add the username at the end of the title.
Forum: Modification Requests/Questions (Unpaid) 11-24-2007, 05:27 PM
Replies: 4
Views: 959
Posted By Analogpoint
Suggest it here...

Suggest it here (http://www.vbulletin.com/forum/forumdisplay.php?f=55) if it hasn't been suggested before.
Forum: Modification Requests/Questions (Unpaid) 11-24-2007, 05:25 PM
Replies: 7
Views: 937
Posted By Analogpoint
$bbuserinfo[username]

$bbuserinfo[username]
Forum: vB3 Programming Discussions 11-24-2007, 03:23 PM
Replies: 1
Views: 640
Posted By Analogpoint
What is the url?

What is the url?
Forum: vB3 Programming Discussions 11-24-2007, 03:21 PM
Replies: 9
Views: 1,887
Posted By Analogpoint
You're welcome. Good find.

You're welcome.



Good find.
Forum: vB3 General Discussions 11-24-2007, 03:19 PM
Replies: 4
Views: 1,116
Posted By Analogpoint
That's fine but isn't really what he was asking.

That's fine but isn't really what he was asking.
Forum: Modification Requests/Questions (Unpaid) 11-24-2007, 09:32 AM
Replies: 5
Views: 901
Posted By Analogpoint
You don't have to require email activation.

You don't have to require email activation.
Forum: vB3 Programming Discussions 11-24-2007, 03:15 AM
Replies: 16
Views: 2,372
Posted By Analogpoint
Nothing at all showed up?

Nothing at all showed up?
Forum: vB3 General Discussions 11-24-2007, 03:13 AM
Replies: 4
Views: 1,116
Posted By Analogpoint
1. Create a new user profile field 2. Make it a...

1. Create a new user profile field
2. Make it a single line text box
3. Make it a required field
4. Only editable by user at registration
5. Add your alphanumeric code in the 'match regular...
Forum: vB3 General Discussions 11-24-2007, 03:04 AM
Replies: 15
Views: 2,496
Posted By Analogpoint
:D .

:D .
Forum: vB3 Programming Discussions 11-24-2007, 03:01 AM
Replies: 1
Views: 721
Posted By Analogpoint
Add your code to a plugin on a hook that is...

Add your code to a plugin on a hook that is called when a new thread or reply is created. Probably newthread_post_complete and newreply_post_complete.
Forum: vB3 Programming Discussions 11-24-2007, 02:59 AM
Replies: 16
Views: 2,372
Posted By Analogpoint
Try this temporarily, and see if it outputs the...

Try this temporarily, and see if it outputs the contents of the header file
ob_start();
require_once('/home/superman/public_html/header.php');
$includedphp = ob_get_clean();
echo '<hr>before';...
Forum: vBulletin 3.8 Add-ons 11-24-2007, 02:51 AM
Replies: 179
Views: 52,201
Posted By Analogpoint
Is it in the list of installed products in the...

Is it in the list of installed products in the Product Manager?
Forum: vB3 General Discussions 11-23-2007, 09:13 PM
Replies: 1
Views: 654
Posted By Analogpoint
Edit the SHOWTHREAD template.

Edit the SHOWTHREAD template.
Forum: vB3 Programming Discussions 11-23-2007, 09:00 PM
Replies: 16
Views: 2,372
Posted By Analogpoint
You need to include a file on your server ...

You need to include a file on your server

include('./header.php');

or

include('/path/to/the/file/header.php');
Forum: vB3 Programming Discussions 11-23-2007, 07:07 PM
Replies: 8
Views: 894
Posted By Analogpoint
The table is actually `forumpermission` (with no...

The table is actually `forumpermission` (with no s, my bad). Can you try this again?
UPDATE forumpermission as permwrite, forumpermission as permread
SET permwrite.forumpermissions =...
Forum: vB3 Programming Discussions 11-23-2007, 05:59 PM
Replies: 9
Views: 1,887
Posted By Analogpoint
Something like this might work for you. (this is...

Something like this might work for you. (this is part of the whosonlinebit template) <td class="alt2" width="35%">


<if condition="in_array($userinfo[displaygroupid], array(5, 6)) AND...
Forum: Modification Requests/Questions (Unpaid) 11-23-2007, 02:10 PM
Replies: 4
Views: 1,027
Posted By Analogpoint
You might be able to just use this....

You might be able to just use this. https://vborg.vbsupport.ru/showthread.php?t=83002
Forum: Modification Requests/Questions (Unpaid) 11-23-2007, 02:01 PM
Replies: 5
Views: 901
Posted By Analogpoint
vB Options -> User Registration Options ->...

vB Options -> User Registration Options -> Welcome Private Message.
Forum: vB3 Programming Discussions 11-23-2007, 01:58 PM
Replies: 7
Views: 1,364
Posted By Analogpoint
Your markup is wrong. A table is like this: ...

Your markup is wrong. A table is like this:

<table>
<tr>
<td>Club</td>
<td>Contact</td>
</tr>
</table>
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT. The time now is 11:23 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.04356 seconds
  • Memory Usage 2,064KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (13)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.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_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete