For almost 8-9 months the Backdrop CMS community has been hosting regular office hours every Wednesday. Originally intended as a place for either folks evaluating Backdrop CMS or people that already use Backdrop CMS to drop in and ask questions, mostly these office hours have become a time for a regular group of participants to share projects and talk informally about things happening in the Backdrop community.
As someone that uses Backdrop CMS, is the availability of regular office hours that you can drop in and ask questions a valuable or useful resource?
If you haven't taken advantage of office hours, but would like to, what is holding you back? Is there something we could do to make office hours more useful or accessible?
Recent comments
The block system and API in Backdrop is very different from Drupal's. In Backdrop, as in Drupal, modules can define blocks in code (in fact some of the API at this level is the same, with...
Drupal block module conversion
This was from examining line 2463- of the webform.module, where // Attach necessary JavaScript and CSS. $form['#attached'] = array( 'css' => array(backdrop_get_path('module', 'webform...
How do I diagnose Webform Conditionals failing?
d'oh. Because of course it is reassigning. Don't mind me... the correct syntax is $form['#attached']['js'][] = backdrop_get_path('module', 'mymodule') . '/mymodule.js';
How do I diagnose Webform Conditionals failing?
Issue opened at Github: https://github.com/backdrop-contrib/webform/issues/220
How do I diagnose Webform Conditionals failing?
I have confirmed, that using the method $form['#attached']['js'] stops the webform.js from loading. https://docs.backdropcms.org/form_api#attached shows that this is the expected method of JS loading...
How do I diagnose Webform Conditionals failing?