collapse

* User Info

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

* Who's Online

  • Dot Guests: 52
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • 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
  • omidmavi1986: :'(
    May 15, 2013, 05:51:48 AM
  • DeToX: very nice simple mod's like!
    May 09, 2013, 01:32:03 PM
  • dhayzon: ;D
    May 09, 2013, 12:38:23 PM
  • dhayzon: xd
    May 09, 2013, 12:38:19 PM
  • dhayzon: hola y les hablo en español me gusta mucho el portal
    May 09, 2013, 12:38:12 PM
  • la muerte: If only I'd know how to fix it :D
    May 06, 2013, 11:24:15 AM
  • la muerte: I might have found the reason many sites have issues with shoutbox refresh looping on post etc [link]
    May 06, 2013, 11:23:57 AM
  • apo: elinize saglik beyler
    May 03, 2013, 02:08:40 PM
  • [SiNaN]: Well, you can't do much about it. I'm sure everyone is trying their best but it's not easy. At least old solved topics may provide a clue for those having similar problems I hope.
    May 02, 2013, 11:33:00 AM
  • JohnS: Wow! visited site earlier and 3 users online - that must be a record lately. I ca't see point of support pages here as number of posts with zero replies is big!
    May 02, 2013, 08:46:34 AM
  • rocknroller: what is up
    April 30, 2013, 02:06:06 PM
  • rocknroller: hey
    April 30, 2013, 02:05:53 PM
  • dhayzon: Shoutbox in an iframe is possible
    April 27, 2013, 11:00:14 AM

* Team Blog

* Recent Posts

Re: Custom Message Block by Hoodie
[Yesterday at 01:39:56 PM]


Re: Roster by Hoodie
[Yesterday at 12:36:47 PM]


¿como agrego un chat a mi foro? by cachencho29
[Yesterday at 10:28:23 AM]


¿como agrego un contador de visitas? by cachencho29
[Yesterday at 10:25:24 AM]


tengo un foro creado con SimplePortal 2.3.5 © 2008-2012, SimplePortal by cachencho29
[Yesterday at 09:57:06 AM]

Welcome to SimplePortal.net! You can download SimplePortal from the Download Page!

Author Topic: [Feature Request] Enable blocks in certain themes.  (Read 1446 times)

0 Members and 1 Guest are viewing this topic.

Offline velorooms

  • Jr. Member
  • **
  • Posts: 66
    • Velorooms
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
[Feature Request] Enable blocks in certain themes.
« on: January 09, 2013, 03:15:14 PM »
Now this one might involve a fair amount of coding so I dont know if its possible or realistically feasible.

An option added to display options to set the theme in which the block appears, so all themes, or just certain themes. As more and more people start using tablets, or mobiles, more smf forums have alternate themes for these devices, and a way of only including certain blocks in certain themes would be superb (so strip out unneeded blocks in mobile themes but keep some), or even for making less bulky themes for those that dont want them.

Admin and Owner of Velorooms.com - Using SMF 2.0.3 and Simpleportal 2.3.5

Offline velorooms

  • Jr. Member
  • **
  • Posts: 66
    • Velorooms
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Feature Request] Enable blocks in certain themes.
« Reply #1 on: January 09, 2013, 03:50:11 PM »
Hmm, digging around, this from November 2011

Hello...

It would be great if we had Theme based blocks. So that means that you can choose on what theme you want to show the block.

You'll be able to do this with 2.3.4 version, which will be out very very soon, using Complex Display Options.

I'm also planning to add a proper interface to select particular themes and languages to display the blocks on too. But that will be for the next major version.

but checking the documentation its not listed in any of the advanced display options

http://simpleportal.net/index.php?action=docs;area=custom_blocks_display

The release of 2.3.4 was late november that year and Sinan listed in the features:
Quote
Complex display options using PHP expressions for block display.

got as far as learning that you can put in custom options

$php followed by an expression..

Oh lordy..

hmmmm..,.
Admin and Owner of Velorooms.com - Using SMF 2.0.3 and Simpleportal 2.3.5

Offline velorooms

  • Jr. Member
  • **
  • Posts: 66
    • Velorooms
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Feature Request] Enable blocks in certain themes.
« Reply #2 on: January 15, 2013, 12:17:19 PM »
Nobody :( Wheres Sinan..  >:-D
Admin and Owner of Velorooms.com - Using SMF 2.0.3 and Simpleportal 2.3.5

Offline velorooms

  • Jr. Member
  • **
  • Posts: 66
    • Velorooms
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Feature Request] Enable blocks in certain themes.
« Reply #3 on: January 16, 2013, 08:35:20 AM »
Ok. ive managed to get somewhere with this one, but not in the way I would like but (ie. defining in the block admin where to show the block) but by editing the php similar to what is used to hide the two side panels in a certain theme

Code: [Select]
$block_in_theme = array(38);
if (in_array($settings['theme_id'], $block_in_theme))
$blocks = array_merge(getBlockInfo(false, 227, false, false), $blocks = getBlockInfo(false, 237, false, false), $blocks = getBlockInfo(false, 168, false, false));
else

then by hiding these three blocks, it forcibly includes them in theme number 38.
Only problem is, i can only so far get them to appear in header or footer, rather than top or bottom as I would like.
Admin and Owner of Velorooms.com - Using SMF 2.0.3 and Simpleportal 2.3.5

Offline FireDitto

  • Semi Newbie
  • *
  • Posts: 28
  • Gender: Female
    • Second Pass Weyr
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Feature Request] Enable blocks in certain themes.
« Reply #4 on: January 21, 2013, 04:20:18 AM »
xD this request was exactly why I logged into SP today :D

I'd love to be able to select via what themes I'd like a block to show up on.

Offline velorooms

  • Jr. Member
  • **
  • Posts: 66
    • Velorooms
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Feature Request] Enable blocks in certain themes.
« Reply #5 on: January 27, 2013, 09:09:27 AM »
well apparently its possible, but it appears to be a secret :D
Admin and Owner of Velorooms.com - Using SMF 2.0.3 and Simpleportal 2.3.5