Hello All,
@Nuzzina
seb_css3 is not removed, so if you have a normal installation of SEBLOD you must see it.
Which version of Joomla & SEBLOD are you using?
@Gebeer
In the seb_table, override position and variation are not working.
To adapt the render in a column, the best way is to use the plugin code "Before Render".
You put all your desired fields in the column with the typo "Clear" exept 1 field, this which will be displayed..
Then in the Before Render you can modify the value of this displayed field, something like that :
$custom_content = $fields['field1']->value . '<div>' . $fields['field2']->typo . '</div>';
$custom_content .= '<a href="'.$fields['field3']->link.'">' . $field['field3']->text . '</a>';
.....
then
$fields['field_displayed']->value = $custom_content;
it an exemple. If you want to see all properties you can use, simply make a var_dump on the $fields.
You can also remove some fields from the array $fields, like "unset( $fields['field2'] );",
regards.
Lionel