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 ---------------> 


Muggz562 02-03-2010 07:22 AM

Quote:

Originally Posted by omardealo (Post 1973685)
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 ---------------> 


This code went through but now it duplicated the tabs I had already made. They also dont highlight when clicked on.

omardealo 02-03-2010 07:45 AM

Quote:

Originally Posted by Muggz562 (Post 1973729)
This code went through but now it duplicated the tabs I had already made. They also dont highlight when clicked on.

Yes, in this code does not light tabs, But there is no duplicated in tabs
Do not forget to replace the product https://vborg.vbsupport.ru/attachmen...6&d=1265154677

Muggz562 02-03-2010 03:50 PM

Got it working! Big thanks, also got the tabs to highlight as well ;)

omardealo 02-03-2010 05:53 PM

Quote:

Originally Posted by Muggz562 (Post 1974022)
Got it working! Big thanks, also got the tabs to highlight as well ;)

Excellent Good luck, God willing,

Drago13 02-04-2010 12:11 AM

good job, I am gonna try this on my forums.. a question though, I noticed on your examples you have a scrolling marquee , which hack is that may I ask ? Thanks..

omardealo 02-04-2010 01:40 AM

1 Attachment(s)
Quote:

Originally Posted by Drago13 (Post 1974299)
good job, I am gonna try this on my forums.. a question though, I noticed on your examples you have a scrolling marquee , which hack is that may I ask ? Thanks..

sure u can ask me anything
if u mean this hack
https://vborg.vbsupport.ru/attachmen...1&d=1265254702

that's hack is "last thread (by date or by last post )on ur forum"

gyaronn 02-06-2010 11:40 AM

is there a way to put the pages name in the section bar and not the nav bar ?

omardealo 02-06-2010 01:20 PM

Quote:

Originally Posted by gyaronn (Post 1975977)
is there a way to put the pages name in the section bar and not the nav bar ?

sure
search in navbar

PHP Code:

{vb:raw template_hook.navbar_quick_links_menu_pos1}
{
vb:raw template_hook.navbar_quick_links_menu_pos2}
{
vb:raw template_hook.navbar_quick_links_menu_pos3

Place underneath

PHP Code:

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

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

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

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

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

You will find links in the quick links

gyaronn 02-06-2010 03:47 PM

thanks for the info, and how can i edit it the pages for example size and color of the text and how can i add photos ? is it done by HTM code

omardealo 02-06-2010 04:05 PM

Quote:

Originally Posted by gyaronn (Post 1976090)
thanks for the info, and how can i edit it the pages for example size and color of the text and how can i add photos ? is it done by HTM code

yes , by html code

misticjeff 03-04-2010 08:35 PM

Wonderful add-on... would there be any way to get blocks or sidebars working on these pages?

omardealo 03-05-2010 04:01 PM

Quote:

Originally Posted by misticjeff (Post 1997271)
Wonderful add-on... would there be any way to get blocks or sidebars working on these pages?

that's good Idea , i will try to add sidebars in the pages

misticjeff 03-05-2010 06:53 PM

Quote:

Originally Posted by omardealo (Post 1997862)
that's good Idea , i will try to add sidebars in the pages

Cool!! a great addition to a great addon :)

misticjeff 03-10-2010 07:05 PM

@omardealo

any word on how to make sidebars or blocks for these pages??

omardealo 03-13-2010 09:10 PM

Quote:

Originally Posted by misticjeff (Post 2001096)
@omardealo

any word on how to make sidebars or blocks for these pages??

[HOW TO - vB4] Sidebar in your own mod

i will make it soon , sorry

LbR 03-13-2010 09:17 PM

Any English Demo, I cant Understand :(

misticjeff 03-13-2010 09:46 PM

Quote:

Originally Posted by omardealo (Post 2003057)
[HOW TO - vB4] Sidebar in your own mod

i will make it soon , sorry

Wow! I'll wait for you to add the ability within your mod...

Thanks for the update.

omardealo 03-14-2010 11:03 AM

Quote:

Originally Posted by LbR (Post 2003061)
Any English Demo, I cant Understand :(

the hack is 5 additional pages in the same format of the forum Style
and sorry my forum in Arabic but u can Check here
http://www.7-secret.org/forum.php?language=en

Amcom 05-03-2010 05:34 AM

Thanks this is a great mod. Question, is there a way to put the pages in a drop down menu? title like ( Other Pages ) next to Calendar link.

Rvl 05-30-2010 05:38 AM

example page: vBulletin_Publishing_Suite_4.0.3_Final_NulleD_By_F intMax haha :D

vbbforfree 06-18-2010 01:03 PM

how to add 8 tab ???

fluidswork 06-18-2010 05:31 PM

will try it later on ......

vbbforfree 06-29-2010 06:55 AM

Help me !!!!
how to add 8 tab ???

PakStarTv.com 01-28-2012 09:41 PM

Supper Dupper Mod ..... Thanks

TheSupportForum 01-28-2012 09:55 PM

lolwut this mod is such a waste learn to develope multipage mods without having to edit 5 sections on 1 settings

pesclub 06-01-2012 05:11 PM

Hi, I have a problem with the style of smearing me why when I enter a page link?
Before and After
http://vbhelp.pl/attachments/pytania...ylem-styl1.jpg
http://vbhelp.pl/attachments/pytania...ylem-styl2.jpg

ARNK 11-04-2012 08:01 PM

Quote:

Got it working! Big thanks, also got the tabs to highlight as well
How'd you get the tabs highlighted correctly. Anybody got a clue?

afterburn25 09-15-2014 12:31 AM

http://spicypantry.com/images/navbar.png

the problem i have is the page i created is links and as you can see both links and forum are both highlighted while on the links page only links should be the highlighted page

anyway of fixing that


All times are GMT. The time now is 01:03 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.01673 seconds
  • Memory Usage 1,880KB
  • 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
  • (6)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (38)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete