I managed to get https://www.drupal.org/project/paragraphs_jquery_ui_accordion working in Backdrop last week but I really want Bootstrap Accordions. I've found the Field Collection template file in the Drupal code. How do you do this with Paragraphs?
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<?php foreach($rows as $key => $row) { ?>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-<?php print $key . '-' . $row['entity_id']; ?>">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapse-<?php print $key . '-' . $row['entity_id']; ?>" aria-expanded="true" aria-controls="collapse-<?php print $key . '-' . $row['entity_id']; ?>">
<?php print $row['field_fc_title']; ?>
</a>
</h4>
</div>
<div id="collapse-<?php print $key . '-' . $row['entity_id']; ?>" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-<?php print $key . '-' . $row['entity_id']; ?>">
<div class="panel-body">
<?php print $row['field_fc_panel_body']['value']; ?>
</div>
</div>
</div>
<?php } ?>
</div>
Recent comments
Congratulations for solving this on your own. Please, keep using the forum to ask questions. Maybe next time, we'll be able to help you before you figure it out on your own.
Error on Search Results
Solved. There was a function in my template file that made attachments automatically open in another window. Still have to figure out why it was giving Bd such a problem but… I also still don't...
Error on Search Results
More weird…I can search Boo and Poo, they work…Too does not :? or any other word I've tried.
Error on Search Results
And randomly it works if I search the word Boo, but nothing else I've tried.
Error on Search Results
Sorry if this got posted twice. For some reason it didn't seem that the post was working? Anyway I've given the view the machine name but it's not an option in the string when I...
Machnine Name missing in tpl strings in Views Theme: Information