collapse

* User Info

 
 
Welcome, Guest. Please login or register.
Did you miss your activation email?

* Who's Online

  • Dot Guests: 49
  • Dot Hidden: 0
  • Dot Users: 2
  • Dot Users Online:

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • virsa punjabi: hi Sinan are you available for paid work?
    Today at 01:32:50 AM
  • Bullet: Shoutbox is not for support!
    June 14, 2013, 05:25:48 PM
  • ivanotero: como pongo un chat en mi foro
    June 10, 2013, 06:22:15 PM
  • Bohimina: Can someone help me in my thread? TY
    June 04, 2013, 05:06:25 PM
  • dhayzon: ;P
    June 04, 2013, 12:27:55 PM
  • dhayzon: Hello all
    June 04, 2013, 12:27:47 PM
  • ComeAtMeBrosef: hi
    June 04, 2013, 12:13:23 AM
  • dhayzon: hi
    June 03, 2013, 05:30:18 PM
  • mag07: Hello all, registration captcha on the forums is a nightmare, took me 4 tries, listen option doesn't work either :S
    June 03, 2013, 02:32:42 AM
  • Divecall: whats happend?
    May 31, 2013, 02:26:35 AM
  • Randomking: if any one is there can you reply so i know ur listening
    May 30, 2013, 09:52:00 AM
  • Randomking: hey guys i have a quick question?
    May 30, 2013, 09:51:38 AM
  • BurkeKnight: Hi all. I'm back. :)
    May 27, 2013, 05:38:45 AM
  • Skaty: [link]
    May 21, 2013, 02:54:27 PM
  • Skaty: tooltip in sp block
    May 21, 2013, 02:54:20 PM
  • Tattoocu_CarteL: neden adres yazınca link diye çikiyor direk adres çiksa olmaz mı
    May 19, 2013, 11:54:41 AM
  • Tattoocu_CarteL: [link]
    May 19, 2013, 11:54:26 AM
  • Old Fossil: Hey Nathaniel
    May 16, 2013, 09:41:05 AM
  • Nathaniel: lurk
    May 16, 2013, 03:19:14 AM

* Team Blog

* Recent Posts

Installation errors? Mod incompatibilities? Upgrade problems? Make your way over to the Install and Upgrade Support board for all your solutions!

Author Topic: Putting a submenu in Home?  (Read 835 times)

0 Members and 1 Guest are viewing this topic.

Offline Crozz

  • Semi Newbie
  • *
  • Posts: 7
  • Gender: Male
  • umm
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Putting a submenu in Home?
« on: November 28, 2012, 03:29:04 AM »
I have SimplePortal 2.3.5 installed on SMF 2.0.2, this is not really a problem, I just want to put a submenu
in the Home (in this forum it would be - http://simpleportal.net/index.php), the button that usually shows when the portal is installed.
So I want to put two submenus, in Home and the Home button should be redirected to "#" or nothing.
I haven't gone over posting at SMF forum thought this would be a better place.

Thanks in advance.

Offline TinMan

  • Semi Newbie
  • *
  • Posts: 43
    • RC Arcade
Re: Putting a submenu in Home?
« Reply #1 on: November 28, 2012, 10:50:00 AM »
The menu button should be in your Sources/Subs.php

Find:
Code: [Select]
'home' => array(
'title' => $txt['home'],
'href' => $modSettings['sp_portal_mode'] == 3 && empty($context['disable_sp']) ? $modSettings['sp_standalone_url'] : $scripturl,
'show' => true,
'sub_buttons' => array(
),
'is_last' => $context['right_to_left'],
),

To add sub buttons, an example may be something like:
Code: [Select]
'home' => array(
'title' => $txt['home'],
'href' => $modSettings['sp_portal_mode'] == 3 && empty($context['disable_sp']) ? $modSettings['sp_standalone_url'] : $scripturl,
'show' => true,
'sub_buttons' => array(
'some_button' => array(
'title' => 'Button Name',
'href' => $scripturl . '?action=profile',
'show' => true,
),
'another_button' => array(
'title' => 'Button Name 2',
'href' => $scripturl . '?action=help',
'show' => true,
'is_last' => true,
),
),
),

For more info about adding buttons, check out the SMF Wiki page for it Here.

Offline Crozz

  • Semi Newbie
  • *
  • Posts: 7
  • Gender: Male
  • umm
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: Putting a submenu in Home?
« Reply #2 on: November 29, 2012, 09:18:19 AM »
Thanks that worked, is it okay if I put like an "hxxp://www.somedomain.com/" link instead $scripturl?

Offline TinMan

  • Semi Newbie
  • *
  • Posts: 43
    • RC Arcade
Re: Putting a submenu in Home?
« Reply #3 on: November 29, 2012, 09:47:00 AM »
Yeah, just make it like...
Code: [Select]
'href' => 'hxxp://www.somedomain.com',and it should work fine.
« Last Edit: November 29, 2012, 09:55:20 AM by TinMan »

Offline AngelinaBelle

  • On Leave
  • *
  • Posts: 4419
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Putting a submenu in Home?
« Reply #4 on: February 05, 2013, 03:09:19 PM »
Crozz -- did that work for you?
I am glad you found the answer you needed right here. 

If this solved your problem, can you press the "topic solved" button below this topic?

Thanks!
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?