vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Mini Mods - 5 sub-pages in the same format of the forum Style v 2.0 - omardealo (https://vborg.vbsupport.ru/showthread.php?t=234782)

omardealo 02-01-2010 10:00 PM

5 sub-pages in the same format of the forum Style v 2.0 - omardealo
 
1 Attachment(s)
Peace and mercy of God be upon you

MOD Version:
5 sub-pages format Forum Version 2.0 Programming omardealo
Easy to use, content and name of the page put by hack options

Programming:
omardealo

Example:
http://www.7-secret.org/page.php?do=1&language=en
http://www.7-secret.org/page.php?do=2&language=en
http://www.7-secret.org/page.php?do=3&language=en
http://www.7-secret.org/page.php?do=4&language=en
http://www.7-secret.org/page.php?do=5&language=en


Composition:

1 - Upload the product from the Control Panel Forum
2 - Upload page.php file folder inside your forum's main

hack in arabic - الهاك باللغة العربية:
http://www.7-secret.org/showthread.php?t=212&p=669

More from pray God bless you,,,

Muggz562 02-02-2010 05:03 AM

Good work man. I was actually thinking TODAY that someone should make a hack like this, then I hop on here and its like you read my mind :). Thanks!

ProFifaLeagues 02-02-2010 05:49 AM

Rated and installed fine thanks!

Muggz562 02-02-2010 05:11 PM

I found a bug:
https://vborg.vbsupport.ru/external/2010/02/69.png
When I click on one of my pages, the rest of the pages get highlighted. Is there any quick fix for this?

ProFifaLeagues 02-02-2010 05:15 PM

Not happening on my install mate on 4.0

Muggz562 02-02-2010 05:16 PM

hmm wierd, its probably another of my plugins or something

Muggz562 02-02-2010 05:47 PM

Edit- Disabled all of my plugins and it is still the same for vB 4.0.1..

omardealo 02-02-2010 09:56 PM

1 Attachment(s)
Quote:

Originally Posted by Muggz562 (Post 1972801)
Good work man. I was actually thinking TODAY that someone should make a hack like this, then I hop on here and its like you read my mind :). Thanks!

yes I have read your mind and I wanted to save your time :D
Joked with you, this is an honor for me

Quote:

Originally Posted by rammieone (Post 1972814)
Rated and installed fine thanks!

thnx man

Quote:

Originally Posted by Muggz562 (Post 1973215)
I found a bug:
https://vborg.vbsupport.ru/external/2010/02/69.png
When I click on one of my pages, the rest of the pages get highlighted. Is there any quick fix for this?

ok try this
1 - upload the product from the Control Panel Forum
2 - Upload page.php file folder inside your forum's main
3 - template navbar
PHP Code:

{vb:raw template_hook.navtab_end

Place underneath
PHP Code:

<!----------- Sub-pages of the Forum Programming omardealo --------------->
<
vb:if condition="$vboptions[other_pages_page1_onoff]">
<
li> <class="navtab" href="page.php?do=1"> (vbraw vboptions.other_pages_name1) </ a> </ li>
</ 
vb: if>

<
vb:if condition="$vboptions[other_pages_page2_onoff]">
<
li> <class="navtab" href="page.php?do=2"> (vbraw vboptions.other_pages_name2) </ a> </ li>
</ 
vb: if>

<
vb:if condition="$vboptions[other_pages_page3_onoff]">
<
li> <class="navtab" href="page.php?do=3"> (vbraw vboptions.other_pages_name3) </ a> </ li>
</ 
vb: if>

<
vb:if condition="$vboptions[other_pages_page4_onoff]">
<
li> <class="navtab" href="page.php?do=4"> (vbraw vboptions.other_pages_name4) </ a> </ li>
</ 
vb: if>

<
vb:if condition="$vboptions[other_pages_page5_onoff]">
<
li> <class="navtab" href="page.php?do=5"> (vbraw vboptions.other_pages_name5) </ a> </ li>
</ 
vb: if>
<!----------- 
Sub-pages of the Forum Programming omardealo ---------------> 


Quote:

Originally Posted by rammieone (Post 1973220)
Not happening on my install mate on 4.0

for 4.0.1 Follow the above explanation

Quote:

Originally Posted by Muggz562 (Post 1973223)
hmm wierd, its probably another of my plugins or something

Follow the above explanation

Muggz562 02-03-2010 04:24 AM

Im getting a "unclosed_tag" error message when I place the code under :{vb:raw template_hook.navtab_end}

omardealo 02-03-2010 05:14 AM

Quote:

Originally Posted by Muggz562 (Post 1973665)
Im getting a "unclosed_tag" error message when I place the code under :{vb:raw template_hook.navtab_end}

I tested the code and works well, make sure you put a code well

PHP Code:

<!----------- Sub-pages of the Forum Programming omardealo --------------->
<
vb:if condition="$vboptions[other_pages_page1_onoff]">
<
li><class="navtab" href="page.php?do=1">{vb:raw vboptions.other_pages_name1}</a></li>
</
vb:if>

<
vb:if condition="$vboptions[other_pages_page2_onoff]">
<
li><class="navtab" href="page.php?do=2">{vb:raw vboptions.other_pages_name2}</a></li>
</
vb:if>

<
vb:if condition="$vboptions[other_pages_page3_onoff]">
<
li><class="navtab" href="page.php?do=3">{vb:raw vboptions.other_pages_name3}</a></li>
</
vb:if>

<
vb:if condition="$vboptions[other_pages_page4_onoff]">
<
li><class="navtab" href="page.php?do=4">{vb:raw vboptions.other_pages_name4}</a></li>
</
vb:if>

<
vb:if condition="$vboptions[other_pages_page5_onoff]">
<
li><class="navtab" href="page.php?do=5">{vb:raw vboptions.other_pages_name5}</a></li>
</
vb:if>
<!----------- 
Sub-pages of the Forum Programming omardealo ---------------> 



All times are GMT. The time now is 09:04 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.01286 seconds
  • Memory Usage 1,772KB
  • 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
  • (3)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete