I am new to Oxwall but have worked with WordPress and other platforms for a long time.
Hope this is the correct section, did not see any general development forum or plugins development forum. (Custom Code Modification does not really fit?)
I've installed the plugin Newsfeed which adds a widget to the dashboard. The problem with this widget is that it is not disaplying a background and border like the other boxes/widgets on the dashboard.
This is due to it having ow_box_empty class instead of ow_box
Here's where Newsfeed adds its widget:
$widget = $widgetService->addWidget('NEWSFEED_CMP_MyFeedWidget', false);
$widgetPlace = $widgetService->addWidgetToPlace($widget, BOL_ComponentService::PLACE_DASHBOARD);
$widgetService->addWidgetToPosition($widgetPlace, BOL_ComponentService::SECTION_LEFT, 0);
Do I do any change to this to make it have ow_box?
I cannot find any documentation on these functions unfortunately, hoping to get some clarity from these forums.
Thanks