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

Showing results 1 to 25 of 58
Search took 0.00 seconds.
Search: Posts Made By: Retal
Forum: vB4 Programming Discussions 01-20-2011, 12:05 PM
Replies: 1
Views: 542
Posted By Retal
I rewrote the whole navbar template, because we...

I rewrote the whole navbar template, because we wanted not only different tabs, but also a different submenu logic and a cleaner navigation.
Forum: vB4 Programming Discussions 01-18-2011, 05:36 PM
Replies: 2
Views: 1,131
Posted By Retal
Hey there, if you haven't solved it yet, I took...

Hey there,
if you haven't solved it yet, I took this out of the admincp/user.php, section "kill", so this is the official process

$info = fetch_userinfo($vbulletin->GPC['userid']);
if (!$info)...
Forum: vB4 Programming Discussions 01-18-2011, 05:20 PM
Replies: 5
Views: 1,764
Posted By Retal
You could also use an array with numeric keys, if...

You could also use an array with numeric keys, if you can guarantee that the keys are continuous.

$array = ('A', 'B', 'C', 'D');
unset($array[2]);
...
$array = array_values($array);
Forum: vB4 Programming Discussions 11-08-2010, 09:57 AM
Replies: 8
Views: 906
Posted By Retal
Apart from using an editor or IDE as Lynne is...

Apart from using an editor or IDE as Lynne is suggesting you're preparing a hell of work and mistakes for yourself when you want to upgrade vBulletin.

Instead of editing the files directly find...
Forum: vB4 Programming Discussions 11-08-2010, 09:48 AM
Replies: 8
Views: 711
Posted By Retal
It's basically the same as in navbar Navbar...

It's basically the same as in navbar

Navbar dropdown menu looks like this
<li class="popupmenu"><a class="popupctrl">Dropdown title</a>
<ul class="popupbody popuphover">
<li>Dropdown item...
Forum: vB4 Programming Discussions 11-08-2010, 09:40 AM
Replies: 10
Views: 1,061
Posted By Retal
What URL are you talking about?

What URL are you talking about?
Forum: vB4 Design and Graphics Discussions 11-07-2010, 02:45 PM
Replies: 3
Views: 632
Posted By Retal
1. Don't make every forum a category. Move them...

1. Don't make every forum a category. Move them into one category instead.
2. The "Forum Actions" is highlighted, because it's active. That's not a bug, that's the right behaviour.
Forum: vB4 Programming Discussions 11-07-2010, 01:11 PM
Replies: 3
Views: 847
Posted By Retal
Start here ...

Start here
https://vborg.vbsupport.ru/showthread.php?t=171149
Forum: vB4 Programming Discussions 11-07-2010, 01:07 PM
Replies: 3
Views: 1,667
Posted By Retal
Yes, someone can.

Yes, someone can.
Forum: vB4 Programming Discussions 11-07-2010, 01:06 PM
Replies: 6
Views: 773
Posted By Retal
Try disabling the Extra Tabs plugin you use and...

Try disabling the Extra Tabs plugin you use and see if it causes it
https://vborg.vbsupport.ru/showthread.php?t=228507
And/or revert the navbar template as Lynne says.
Forum: vBulletin Pre-Sales Questions 11-05-2010, 02:29 PM
Replies: 2
Views: 985
Posted By Retal
Apart from this business model not making much...

Apart from this business model not making much sense I don't recommend vB for this. It has very little CMS functionality. Drupal and its taxonomy sounds like a good match.
Forum: vB4 Programming Discussions 11-05-2010, 10:27 AM
Replies: 1
Views: 562
Posted By Retal
Where exactly is the problem?

Where exactly is the problem?
Forum: vB4 Programming Discussions 11-05-2010, 10:25 AM
Replies: 2
Views: 690
Posted By Retal
Built-in and granular enough: Subscribe them to...

Built-in and granular enough: Subscribe them to all forums, weekly digest?
Forum: vB4 Design and Graphics Discussions 11-04-2010, 05:20 PM
Replies: 3
Views: 656
Posted By Retal
I wish. ;)

I wish. ;)
Forum: vB4 Programming Discussions 11-04-2010, 04:47 PM
Replies: 2
Views: 977
Posted By Retal
You should always test before upgrading. With...

You should always test before upgrading.
With that out of the way, what about copying the style and reverting all templates?

The URL doesn't work so maybe you're out of business already.
Forum: vB4 Design and Graphics Discussions 11-04-2010, 04:20 PM
Replies: 2
Views: 941
Posted By Retal
Hi Fusion2, what a coincidence. We are working on...

Hi Fusion2, what a coincidence. We are working on the same - cutting pieces off vB bit by bit, making it minimalist and slick. In both look and function.

So far the only vB4 style I found that...
Forum: vB4 Design and Graphics Discussions 11-04-2010, 04:16 PM
Replies: 12
Views: 884
Posted By Retal
Why do you go as far as erasing the forum stats...

Why do you go as far as erasing the forum stats instead of posting a link? It could have been done already.
Forum: vB4 Design and Graphics Discussions 11-04-2010, 04:14 PM
Replies: 3
Views: 656
Posted By Retal
Move the icons inside the div.imlinks, not after.

Move the icons inside the div.imlinks, not after.
Forum: vB4 Design and Graphics Discussions 11-04-2010, 04:08 PM
Replies: 2
Views: 726
Posted By Retal
That's a cached CSS file and will get...

That's a cached CSS file and will get overwritten. You have to edit the source, which is in the Admin CP, Styles and Templates - CSS Templates - ...
Forum: vB4 Programming Discussions 08-04-2010, 12:42 PM
Replies: 7
Views: 729
Posted By Retal
Oh my, thank you Danny for the kick in the ass!...

Oh my, thank you Danny for the kick in the ass! After playing around with it, I found that the hook cache_templates works just fine.
It's still a mystery to me why it works on the test installation...
Forum: vB4 Programming Discussions 08-04-2010, 10:23 AM
Replies: 7
Views: 729
Posted By Retal
Hi Danny, thanks. I modified it a bit between...

Hi Danny, thanks.
I modified it a bit between the posts.

Plugin at global_bootstrap_complete
$array['rotation'] = rand(1,2);
vB_Template::preRegister('ad_global_below_navbar', $array);
...
Forum: vB4 Programming Discussions 08-02-2010, 04:35 PM
Replies: 7
Views: 729
Posted By Retal
This drives me crazy. At my test installation,...

This drives me crazy.
At my test installation, the variable is preregistered alright.
At the live instance, the variable is not preregistered and I can't access it from the template...
Forum: vB4 Programming Discussions 07-29-2010, 07:42 PM
Replies: 6
Views: 863
Posted By Retal
If you're worried about the speed of your website...

If you're worried about the speed of your website - and you should be! (http://www.useit.com/alertbox/response-times.html) - read this great series on website loading and rendering speed by ex-Yahoo,...
Forum: vB4 Programming Discussions 07-29-2010, 12:34 PM
Replies: 1
Views: 442
Posted By Retal
You have an error in a plugin, causing an error...

You have an error in a plugin, causing an error message (see the top of the page). The error output prevents the cookie to be set.

Correct the plugin, cookies will work again.
Forum: vB4 Programming Discussions 07-29-2010, 12:31 PM
Replies: 4
Views: 876
Posted By Retal
It would be even better if you didn't use HTML in...

It would be even better if you didn't use HTML in the code.
Instead of
while($track = mysql_fetch_array($tracks, MYSQL_ASSOC)
{
$tracks_bit .= '<p>' . $track['trackartist'] . ' - ' ....
Showing results 1 to 25 of 58

 
Forum Jump

All times are GMT. The time now is 07:02 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.02153 seconds
  • Memory Usage 2,030KB
  • 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
  • (4)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