2Nd Carousel

Hi

I'm trying to create a second carousel with different design. I've found where to create the second template however I can't find where to add the template selection in the drop down.

Can anyone direct me to the right place please

Kind regards

Jamie

screen.png

please try to examinate app/addons/banners/schemas/block_manager/blocks.post.php. So, you need to extend $schema. but please use your own addon or my_changes addon.

For example, open the app/addons/banners/schemas/block_manager/blocks.post.php file and replace:

'templates' => array (
		'addons/banners/blocks/original.tpl' => array(),
		'addons/banners/blocks/carousel.tpl' => array(
			'settings' => array (
				'navigation' => array (
					'type' => 'selectbox',
					'values' => array (
						'N' => 'none',
						'D' => 'dots',
						'P' => 'pages',
						'A' => 'arrows',
					),
					'default_value' => 'D'
				),
				'delay' => array (
					'type' => 'input',
					'default_value' => '3'
				),
			),
		)
	),	

with

'templates' => array (
		'addons/banners/blocks/original.tpl' => array(),
		'addons/banners/blocks/carousel.tpl' => array(
			'settings' => array (
				'navigation' => array (
					'type' => 'selectbox',
					'values' => array (
						'N' => 'none',
						'D' => 'dots',
						'P' => 'pages',
						'A' => 'arrows',
					),
					'default_value' => 'D'
				),
				'delay' => array (
					'type' => 'input',
					'default_value' => '3'
				),
			),
		),
                'addons/banners/blocks/carousel2.tpl' => array(
			'settings' => array (
				'navigation' => array (
					'type' => 'selectbox',
					'values' => array (
						'N' => 'none',
						'D' => 'dots',
						'P' => 'pages',
						'A' => 'arrows',
					),
					'default_value' => 'D'
				),
				'delay' => array (
					'type' => 'input',
					'default_value' => '3'
				),
			),
		)
	),	

The new template should be located here:

skins/basic/customer/addons/banners/blocks/carousel2.tpl (for Pro and MVE versions)

or

stores/1/skins/basic/customer/addons/banners/blocks/carousel2.tpl (for Ultimate versions)

Thanks guys