@ Magnus
re: Is there a way in Slim to display the Title in the collapsed single name row, as displayed when all items are collapsed?
I want something like “John Doe, Chairman”
There is not a builtin in way to do this, the template would have to be altered. You would need to edit the card.php
file found here:
../wp-content/plugins/connections-slim/
Look for this line:
echo '<h3 class="cn-accordion-item" data-div-id="cn-detail-' , $uuid , '"' , ' style="border-bottom: ' , $atts['color'] , ' 1px solid; color:' , $atts['color'] , ';"><span class="cn-sprite' . $open . '" style="background-color: ' , $atts['color'] , ';"></span>' , $entry->getNameBlock( array( 'format' => $atts['name_format'] ) ) , '</h3>';
And change it to:
echo '<h3 class="cn-accordion-item" data-div-id="cn-detail-' , $uuid , '"' , ' style="border-bottom: ' , $atts['color'] , ' 1px solid; color:' , $atts['color'] , ';"><span class="cn-sprite' . $open . '" style="background-color: ' , $atts['color'] , ';"></span>' , $entry->getNameBlock( array( 'format' => $atts['name_format'] ) ) . ' ' . $entry->getTitleBlock() , '</h3>';
And then remove this line:
if ( $atts['show_title'] )$entry->getTitleBlock();
re: Is there a way to request a special sort order for one category list, så “Chairman” person comes first in list, regardsless of his/her name?
Sorry, no, something would have to be custom developed for you to do this.
re: Is there a way to display the Slim list as “all expanded” from start on a page load, but want other (larger) lists collapsed as normal?
You can do this, however, it will affect all lists. So I guess the answers would be no, sorry.
I hope you do find this helpful.