Hello,
You should move the Poll widget to the Core (currently it is tied to the Forums app) and add a node class in the widget configuration form so we can use it in any app that supports polls.
Thanks.
This print is from the IPS Default theme. Your default theme is another and it was still wrong BUT it is a child theme... as I'm not a designer, I'm not sure how that is supposed to work. Anyway, making the proper change, everything is ok now.
This is one example from one of my resources:
class _Main extends \IPS\core\MemberACPProfile\MainTab
{
/**
* Get left-column blocks
*
* @return array
*/
public function leftColumnBlocks()
{
return array(
'IPS\membernotes\extensions\core\MemberACPProfileBlocks\AccountData',
);
}
/**
* Get main-column blocks
*
* @return array
*/
public function mainColumnBlocks()
{
return array(
'IPS\membernotes\extensions\core\MemberACPProfileBlocks\Notes',
);
}
/**
* Get right-column blocks
*
* @return array
*/
public function rightColumnBlocks()
{
return array();
}
/**
* Get Output
*
* @return string
*/
public function output()
{
return parent::output();
}
}
Mobile phone. No way to use CODE tag.
You shouldn’t replace the ID by the “name”. You should allow both:
array( ‘id’, 'column_name');
and call the node using the name, like;
……load( ‘bla bla bla’, ‘column_name’ );
That’s the same case when you load a member by name or email.
I can’t reproduce as shown on my video with a fresh marketplace install.
Send a message with an unrestricted ACP account and URL. I’ll take a look when I’m able to.