I'm trying to create an album at the link below, and I'm using the separate thumbnails template. however, the thumbnails also appear in the left column. how do I stop this happening?
http://www.silviasjewellery.co.uk/index ... collection
thumbnails appear in left column
Re: thumbnails appear in left column
The reason for the thumbnails appearing in the left hand column is that I was choosing "Photo Albums" from the dropdown menu of Content Type when I was editing a page (I think). Leaving the Content Type as "Content" seems to have solved this. Choosing "Photo Albums" from the Content Types also means that you can't edit the page any longer as far as I can see. There's just nothing there. I couldn't see a way round this apart from deleting the page and starting over again.
I'm not swimming with the dolphins yet, but sometimes I can get my head above water just long enough to see them way off in the distance.
Keep up the good work.
I'm not swimming with the dolphins yet, but sometimes I can get my head above water just long enough to see them way off in the distance.
Keep up the good work.
Re: thumbnails appear in left column
Looks like there are javascript errors when you choose content type 'photo album' when creating a page.
This result in the page not even displaying.document.getElementById(tabs[j].id + "_c") has no properties
in standard.js line 55
Greg
Re: thumbnails appear in left column
The patch for Album fixes the edit problem in 'pages - edit content'
New problem
New problem
Notice: Undefined index: content_id in D:\AAAWeb\cms\modules\Album\classes\module\class.AlbumContent.php on line 119
Greg
Re: thumbnails appear in left column
To get rid of the notice in the preview:Greg wrote: The patch for Album fixes the edit problem in 'pages - edit content'
New problemNotice: Undefined index: content_id in D:\AAAWeb\cms\modules\Album\classes\module\class.AlbumContent.php on line 119
On line 119 of class.AlbumContent.php replace
Code: Select all
$variables['content_id']
Code: Select all
isset($variables['content_id']) ? $variables['content_id'] : ''
Code: Select all
$newalbum->DoAction('default', 'album', $params, isset($variables['content_id']) ? $variables['content_id']: '');
Regards,
D