Hello! I would like to hear from you so I made some modifications in SEBLOD to meet my needs. The problem was this: when I created a list to research, the results came in a way that did not match my layout. The results came each separated by several divs, one below the other, and I needed to stay beside each other. I looked for solutions SEBLOD own, but not found. So I made the following manner.
In the file: "\templates\seb_blog\index.php" some content was removed leaving more simply.
// -- Initialize
require_once dirname(__FILE__).'/config.php';
$cck=CCK_Rendering::getInstance( $this->template );
if ( $cck->initialize() === false ) { return; }
// Params init
$id = $cck->id;
$items=$cck->getItems();
// Params init Leadings 1
$top_display=$cck->getStyleParam( 'top_display', 'renderItem' );
// Set template
$count=count( $items );
?>
/******************/
<?php foreach ( $items as $item ) {
echo $cck->$top_display($item->pk);
}
$cck->finalize();
?>
In the file: "\libraries\cck\rendering\variations\seb_css3\seb_css3.php" some divs was removed.
<div id="<?php echo $id; ?>" class="<?php echo $class .' '. $cck->id.'-deepest'; ?>"></div>
In the file: "\templates\seb_one\index.php" some divs was removed
<div id="<?php echo $cck->id; ?>" class="<?php echo $cck->id_class; ?>cck-f100 cck-pad-<?php echo $cck->getStyleParam( 'position_margin', '10' ); ?>"></div>
<div></div>
<div class="cck-line-body"></div>
<div class="cck-plr cck-ptb"></div>
Based on changes made in a template override: "\templates\ seb_one\positions\ [content_search] \item\mainbody.php" adding customization, and gave really sure. There were no breaks layout in other articles and no problem. Just think go there problem when upgrading the SEBLOD because there were modifications in the code. Finally, I would like to know your opinions on the subject. Is there another way without having to modify the code so thoroughly?