board3 / Board3-Portal

Adds a portal with several blocks, which can be switched on and off via the ACP, to the front page of your phpBB 3 forums.
http://www.board3.de
GNU General Public License v2.0
30 stars 22 forks source link

(Feature Request) "Column to display on all pages:" Both as an option #673

Open sgtevmckay opened 8 years ago

sgtevmckay commented 8 years ago

Glad you have a little time back at Portal3, and I want to thank you for your time volunteering at PhPBB.

Would appreciate an option added to "Column to display on all pages:" to activate both Left and Right Panels on all pages.

Thank you for your time and consideration

hasanrisky commented 7 years ago
  1. edit this file --> ext/board3/portal/event/listener.php

  2. goto this line --> /**

    • Display portal on all pages */ protected function display_portal() { $this->board3_controller->handle(array( 'left' => $this->config['board3_show_all_side'] == false, 'right' => $this->config['board3_show_all_side'] == true, )); }
  3. change to : 'right' => $this->config['board3_show_all_side'] == false,

helladamnleet commented 2 years ago
  1. edit this file --> ext/board3/portal/event/listener.php
  2. goto this line --> /**
    • Display portal on all pages */ protected function display_portal() { $this->board3_controller->handle(array( 'left' => $this->config['board3_show_all_side'] == false, 'right' => $this->config['board3_show_all_side'] == true, )); }
  3. change to : 'right' => $this->config['board3_show_all_side'] == false,

Doesn't work. Makes errors. Maybe just add the feature the person asked for.