You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like Radix is still using the node template from Drupal, and has not yet been adapted for Backdrop. There are some minor but significant differences in variable names. For example:
<?php print render($content['comments']); ?>
The above code will not print comments, as comments are not part of $content in Backdrop. Instead we should use the following.
<?php print render($comments); ?>
The text was updated successfully, but these errors were encountered:
It looks like Radix is still using the node template from Drupal, and has not yet been adapted for Backdrop. There are some minor but significant differences in variable names. For example:
The above code will not print comments, as comments are not part of
$content
in Backdrop. Instead we should use the following.The text was updated successfully, but these errors were encountered: