Hi Loli,
Welcome on jSeblod CCK forums and thanks for your post.
It's difficult. The easy way is to use a custom template and add in this template a page system.
You must have a field which is display on page 1, a other field which is display on page 2 and...
The idea is to add a page variable to your article link to display or not a content.
//add this at the top of your template
$page = JRequest::getVar('page');
//Prepare the page link by using art_link value
if (strpos($jSeblod->content->art_link,"?") ){
$page_link = $jSeblod->content->art_link."&";
}else{
$page_link = $jSeblod->content->art_link."?";
}
//Build the link of the first page like this
<?php echo $page_link."&page=1"; ?>
//Build the link of the second page like this
<?php echo $jSeblod->content->art_link."&page=2"; ?>
...
//Before display the field value for the page 1
if ($page == 1 or !$page){
echo jSeblod->my_page_content_1->value
}
//Before display the field value for the page 2
if ($page == 2){
echo jSeblod->my_page_content_1->value
}
By using a group of fields (groupX field type), you will be able to do this page system totally automatically.
Best Regards