39 Posts
dazzafact
5 years ago
Topic

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' );
Get a VIP membership
39 Posts
dazzafact
5 years ago
1
Level 1

Ok i solve this by filling the "Intro" and "Content" area in Backend with all Fields (Construction)

Get a VIP membership