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

Showing results 1 to 25 of 88
Search took 0.01 seconds.
Search: Posts Made By: LifesGreatestGift
Forum: vB4 General Discussions 02-26-2013, 05:47 PM
Replies: 6
Views: 837
Posted By LifesGreatestGift
well, if you cared to try, the next available...

well, if you cared to try, the next available field after the defaults is 7. i did it on my test board so that is why 7 was in my code. :) I just now downloaded his mod and reviewed the code. I was...
Forum: vB4 General Discussions 02-25-2013, 02:48 PM
Replies: 25
Views: 2,201
Posted By LifesGreatestGift
if (in_array($thread['forumid'], array(1,2,3))) ...

if (in_array($thread['forumid'], array(1,2,3)))

{

$current_thread = $thread['threadid'];

$query = $vbulletin->db->query_first_slave("
SELECT user.usergroupid, user.membergroupids...
Forum: vB4 General Discussions 02-16-2013, 12:29 PM
Replies: 6
Views: 1,091
Posted By LifesGreatestGift
is that something new in PHP? thought they...

is that something new in PHP?

thought they needed to be
<?php

?>

never seen that way before
{?php
Forum: vB4 Design and Graphics Discussions 02-15-2013, 06:33 PM
Replies: 5
Views: 625
Posted By LifesGreatestGift
edit the HTML and CSS to resemble the following...

edit the HTML and CSS to resemble the following attachment.

Im sure it will be in one of the templates for the plugin.
Forum: vB4 General Discussions 02-14-2013, 08:09 PM
Replies: 4
Views: 378
Posted By LifesGreatestGift
i think there is something in admincp for...

i think there is something in admincp for enabling/settings for post history. check there...
Forum: vB4 General Discussions 02-14-2013, 04:47 PM
Replies: 6
Views: 818
Posted By LifesGreatestGift
New plugin Count primary / secondary users...

New plugin

Count primary / secondary users of group

hook location: forumhome_complete

$groupid = 6; // Count admin users

$group_primary = $vbulletin->db->query_first("
SELECT...
Forum: vB4 Design and Graphics Discussions 02-12-2013, 01:06 AM
Replies: 2
Views: 482
Posted By LifesGreatestGift
To the first thing... AdminCP->Styles &...

To the first thing...

AdminCP->Styles & Templates->Style Manager->Style Variable Editer [ GO ] (on style in question) ->

postbit_control_color
postbit_control_hover_color

As to the second...
Forum: vB4 General Discussions 02-12-2013, 01:01 AM
Replies: 7
Views: 717
Posted By LifesGreatestGift
well... here we go, another post without detailed...

well... here we go, another post without detailed info.

you want a link that will allow a user to be moved to a usergroup when clicked.

1) who should be able to click this link?
2) will it be...
Forum: vB4 Programming Discussions 02-12-2013, 12:53 AM
Replies: 4
Views: 702
Posted By LifesGreatestGift
<vb:if condition="is_member_of($post, 2, 5, 7...

<vb:if condition="is_member_of($post, 2, 5, 7 )">Do this if in group 2, 5 or 7</vb:if>
Forum: vB4 General Discussions 02-10-2013, 04:37 PM
Replies: 18
Views: 1,435
Posted By LifesGreatestGift
then select NO instead of yes. not hard to figure...

then select NO instead of yes. not hard to figure out. ;)
Forum: vB4 Programming Discussions 02-10-2013, 03:37 AM
Replies: 3
Views: 860
Posted By LifesGreatestGift
There is a vbulletin option to make users confirm...

There is a vbulletin option to make users confirm email before posting....
Forum: vB4 General Discussions 02-10-2013, 12:52 AM
Replies: 3
Views: 419
Posted By LifesGreatestGift
you need to open the templates(or plugins) that...

you need to open the templates(or plugins) that those mods use to insert the code into the postbit and wrap the 'stats' in the same DOM element that the default style (your custom postbit style) uses.
Forum: vB4 General Discussions 02-09-2013, 01:10 PM
Replies: 18
Views: 1,329
Posted By LifesGreatestGift
forgot to add the p and span to final code :)...

forgot to add the p and span to final code :) check now
Forum: vB4 Design and Graphics Discussions 02-09-2013, 04:13 AM
Replies: 2
Views: 956
Posted By LifesGreatestGift
New Plugin Name: Add border to external...

New Plugin

Name: Add border to external image in posts
Hook Location: postbit_display_complete
/* Show only moderator,super moderator, administrator */
if (is_member_of($vbulletin->userinfo,...
Forum: vB5 General Discussions 02-08-2013, 08:42 PM
Replies: 8
Views: 1,789
Posted By LifesGreatestGift
pretty sure 'vanilla' means, stripped down. no...

pretty sure 'vanilla' means, stripped down. no mods....
Forum: vB4 General Discussions 02-08-2013, 01:17 PM
Replies: 18
Views: 1,329
Posted By LifesGreatestGift
It does work, run this query inside phpmyadmin or...

It does work, run this query inside phpmyadmin or whatever you use.

set @row_num = 0; SELECT @row_num := @row_num + 1 as row_number,threadid,postuserid,title FROM thread WHERE forumid = # AND...
Forum: vB4 Programming Discussions 02-07-2013, 02:35 AM
Replies: 13
Views: 2,067
Posted By LifesGreatestGift
Open template memberlist Find <vb:each...

Open template memberlist

Find
<vb:each from="memberlistbits" value="userinfo">
<tr>
<td class="alt1 username">

Replace With:
<vb:each from="memberlistbits" value="userinfo">...
Forum: vB4 Design and Graphics Discussions 02-05-2013, 05:22 PM
Replies: 9
Views: 966
Posted By LifesGreatestGift
that will edit links on the entire site, he just...

that will edit links on the entire site, he just wants to edit the post content links. There is no stylevar for post content links.
Forum: vB4 Design and Graphics Discussions 02-05-2013, 04:56 PM
Replies: 9
Views: 966
Posted By LifesGreatestGift
not sure what you mean by 'text colour a url...

not sure what you mean by 'text colour a url background'

you can set the color of the link by doing this


.postbit .postcontent a, .postbitlegacy .postcontent a {font-weight:bold...
Forum: vB4 Design and Graphics Discussions 02-05-2013, 04:47 PM
Replies: 10
Views: 824
Posted By LifesGreatestGift
Well, it would be similar to your current setup i...

Well, it would be similar to your current setup i would imagine. what is your current body_wrapper width? If its 1000px most smaller monitors will show a horizonal scroll if you are not using...
Forum: vB4 Design and Graphics Discussions 02-05-2013, 12:25 PM
Replies: 9
Views: 966
Posted By LifesGreatestGift
try adding something like this to additional.css ...

try adding something like this to additional.css

.postbit .postcontent a, .postbitlegacy .postcontent a {font-weight:bold !important;text-decoration:underline !important;}

may need to tweak it,...
Forum: vB4 Programming Discussions 02-05-2013, 03:38 AM
Replies: 3
Views: 673
Posted By LifesGreatestGift
one way or another there would need to be a...

one way or another there would need to be a custom field in the vbulletin thread editor to allow you to reference the ID of the post in Drupal. Once you can do that, the rest is just simple database...
Forum: vBulletin 4.x Add-ons 01-18-2013, 01:05 PM
Replies: 48
Views: 12,549
Posted By LifesGreatestGift
Works great. Suggestion for future version. ...

Works great. Suggestion for future version.

A switch selection in admincp options that say

1) First Image
2) Provide Array

1) First Image is exactly as this mod acts.

2) Provide Array -...
Forum: vB4 General Discussions 05-13-2012, 07:03 PM
Replies: 6
Views: 605
Posted By LifesGreatestGift
for the latest spiders download...

for the latest spiders download spiders_vbulletin.xml from
http://www.wolfshead-solutions.com/spiders-list

and upload/overwrite the old file in YOURFORUM/includes/xml/
Forum: vB4 Design and Graphics Discussions 05-13-2012, 12:49 AM
Replies: 2
Views: 439
Posted By LifesGreatestGift
make sure you have this file ...

make sure you have this file

FORUMROOT/images/editor/sprite.png

or if your style uses a custom image directory

Styles & Templates->Style Manager>Style Variable Editor->GO (on your style)...
Showing results 1 to 25 of 88

 
Forum Jump

All times are GMT. The time now is 02:07 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.03155 seconds
  • Memory Usage 2,046KB
  • 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)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (16)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