Viewing 1 replies (of 1 total)
  • Plugin Author xnau webdesign

    (@xnau)

    Yes, the leading comma problem has been solved in the next release. This has been delayed due to my travel, but is planned for release later in December.

    To modify the template, you need to look at this line which looks for an empty field…you’ll need to modify it so it also looks for a field value that has the word “none” in it.

    <?php if ( ! $this->field->is_empty($this->field->value) ) : ?>

    becomes something like this (you may need to edit for your specific needs):

    <?php if ( ! $this->field->is_empty($this->field->value) or stripos($this->field->value, 'none') === false ) : ?>

Viewing 1 replies (of 1 total)
  • The topic ‘table-less list template’ is closed to new replies.