Hello,
I already use the publish layouts. I’ll try and explain what I’m trying to do exactly, maybe I’m using the wrong approach.
I need to allow my customer to create product type entries and product entries.
The product type entries are shown on a single entry template, and the products are shown in a slideshow on the product type page.
I’ve got two channels :
1) product_types
2) slide_shows
I need for each slide_show entry to be able to specify on what product_type page it will be shown. Each silde being able to be shown on multiple pages.
I need to achieve this without creating seperate channels per slide show.
I’ve allowed my customer to create categories and at the mement they have to input the category_id integer on the product_types channel entries.
I rearly wanted to have a drop down in the entries editor built from the channels with a similar code to this :
<select name="product_type"><option value="5">Product type 5</option><option value="6">Product type 6</option></select>
Instead of having :
<input name="product_type" value="5" />
As an inbetween solutin I was looking to have the categories checkboxes on both slide_shows entries and product_types entries and to only take the first value in the selected checkbox list…