Hello I am at the last stage of a project and will really appreciate some help on a couple questions I have to wrap things up.
Here is the test link for both examples:
http://sofia-marikh.com/index.php/main/test_entries
1) On the top slider (flickr photos) I have setup 6 categories to filter content (each with their own weblog). Each thumbnail links to a specific flickr slideshow. So far this is working fine. Also thanks to EE support! Now my issue with this section is that I now added a “ALL” category preceding the rest of categories. This category “ALL” combines the 6 other categories into 1 master category. So far the HTML/CSS works ok. The problem I am having is with the flickr slideshow and EE, as the lightbox is popping out without flickr slideshow showing.
If you try accessing those same thumbnails through their respective categories, and not through “ALL”, then the flickr correspondant to each thumbnail works fine.
At last, I ve noticed that only the first thumbnail category inside “ALL” (I am referring to “news” category), will work fine with flickr lightbox. And I have no clue why, as the code is the same than the rest of the categories. So maybe you have a better clue on this!
Here is a sample of the code for this slider:
<div class="panes_photos_div">
<div class="photos_slider">
<ul id="slider_photos_all" class="multiple ceebox">
{exp:channel:entries channel="photos_news|photos_clip|photos_concerts|photos_shows|photos_lifestyle|photos_travels" limit="60" sort="asc"}
<li>a href="http://sofia-marikh.com/index.php/embeds/flickr_news/{url_title}" rel="width:550 height:540" title="Sofia Flickr Concert 01" class="ceebox">{image_thumbnail}</a>
<h5 class="title_thumb">{title_image}</h5><h5 class="date_thumb">Added {current_time format="%F - %d - %Y"}</h5></li>
{/exp:channel:entries}
</ul>
</div>
</div>
<div class="panes_photos_div">
<div class="photos_slider">
<ul id="slider_photos_news" class="multiple ceebox">
{exp:channel:entries channel="photos_news" limit="30" sort="asc"}
<li>a href="http://sofia-marikh.com/index.php/embeds/flickr_news/{url_title}" rel="width:550 height:540" title="Sofia Flickr Concert 01" class="ceebox">{image_thumbnail}</a>
<h5 class="title_thumb">{title_image}</h5><h5 class="date_thumb">Added {current_time format="%F - %d - %Y"}</h5></li>
{/exp:channel:entries}
</ul>
</div>
</div>
<div class="panes_photos_div">
<div class="photos_slider">
<ul id="slider_photos_clip" class="multiple ceebox">
{exp:channel:entries channel="photos_clip" limit="30" sort="asc"}
<li>a href="http://sofia-marikh.com/index.php/embeds/flickr_clip/{url_title}" rel="width:550 height:540" title="Sofia Flickr Concert 01" class="ceebox">{image_thumbnail}</a>
<h5 class="title_thumb">{title_image}</h5><h5 class="date_thumb">Added {current_time format="%F - %d - %Y"}</h5></li>
{/exp:channel:entries}
</ul>
</div>
</div>a href="http://sofia-marikh.com/index.php/embeds/flickr_clip/{url_title}</code></pre>. Is the following:
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Flickr - Lightbox Test</title>
</head>
<body>
{exp:channel:entries channel="photos_clip" limit="45" url_title="{segment_3}" }
{flickr_link}
{/exp:channel:entries}
</body>
</html>
...second question in next post.