I put this
Code snip into my Template (list) to view the Group X fields:
echo $cck->getValue( 'video_snips', 0, 'snip_title' );
echo $cck->getTypo( 'video_snips', 1, 'snip_title' );
But there isn`t any output? All other Fields which are not GroupX fields are listed properly
here is all a Code
require_once __DIR__.'/config.php';
$cck=CCK_Rendering::getInstance( $this->template );
if ( $cck->initialize() === false ) { return; }
// -- Prepare
$attributes=$cck->id_attributes ? ' '.$cck->id_attributes : '';
$attributes=$cck->replaceLive( $attributes );
echo $cck->getValue( 'snip_title' );
echo$cck->getValue( 'video_snips', 0, 'snip_title' );