bladinium Active member Oct 18, 2013 #1 Hello, I need plugin on all forum except Portal My plugin use "hookage_container_breadcrumb_top" It's possible to diable "hookage_container_breadcrumb_top" on portal ? thanks
Hello, I need plugin on all forum except Portal My plugin use "hookage_container_breadcrumb_top" It's possible to diable "hookage_container_breadcrumb_top" on portal ? thanks
Jake Bunce Well-known member Oct 19, 2013 #2 Inside of your hook function, maybe this: Code: // GET TEMPLATE PARAMS $params = $template->getParams(); // EXCLUDE XENPORTA if (isset($params['contentTemplate']) AND $params['contentTemplate'] != 'EWRporta_Portal') { } ...assuming you are talking about XenPorta. Otherwise you need to find the name of your contentTemplate (instead of using 'EWRporta_Portal'): http://xenforo.com/community/threads/1-0-0-b1-how-to-identify-the-root-template-of-a-page.5591/ Upvote 0 Downvote
Inside of your hook function, maybe this: Code: // GET TEMPLATE PARAMS $params = $template->getParams(); // EXCLUDE XENPORTA if (isset($params['contentTemplate']) AND $params['contentTemplate'] != 'EWRporta_Portal') { } ...assuming you are talking about XenPorta. Otherwise you need to find the name of your contentTemplate (instead of using 'EWRporta_Portal'): http://xenforo.com/community/threads/1-0-0-b1-how-to-identify-the-root-template-of-a-page.5591/