I need some help. ![]()
I have installed the new EEpoll module and it works great. My issue is with the specific set up on my blog. I wanted it so that my sticky entries not only stay at the top of the blog, but also have a different css designation.
I wanted to really stand out ![]()
{exp:weblog:entries status="open|sticky" weblog="weblog1" orderby="date" sort="desc" limit="9"}
[\code]
The following is the code that I use on my site now. Like I said above the code DOES work, and I do get the sticky entries to look different.
[code]
{if status=="sticky"}
{date_heading}
{/date_heading}
<div class="title"><IMG SRC="http://www.incogblogo.net/smiles/flamingo.gif"> {title} : {entry_date format=' %l, %F %d, %Y '} : Sticky</div>
<div class="stickybody">
{exp:acronym}
{body}
{/exp:acronym}
</div>
{/if}
{if status=="open"}
{date_heading}
<div class="date">{entry_date format=' %l, %F %d, %Y '}</div>
{/date_heading}
<div class="title">{title}</div>
<div class="logbody">
{if pollid != ""}
{exp:eepoll poll_id="{pollid}"}
{poll}
{/exp:eepoll}
{/if}
{exp:acronym}
{body}
{/exp:acronym}
{/if}
{if extended != ""}
<div id="extLink{entry_id}">
<a href="javascript:void(0);" name="ext{entry_id}" onclick="showHide({entry_id},'{permalink}',this,'entry');return false;">Read More →<BR></a>
</div>
<div id="extText{entry_id}" style="display: none">
{extended}
<a href="javascript:void(0);" onclick="showHide({entry_id},0,this,'entry');return true;"><BR>That's It.</a>
</div>
{/if}
</div>
The problem comes in when I try to add the ee poll code to both the sticky status area AND the open status area. I tried created a THIRD status, as I figured that would solve the problem, but it didn’t. It’s possible that I didn’t create the status like I should have, but I am unsure.
What I would like is that I can have polls in EITHER area. So that if I want to post a sticky poll I can, but that it would also show the poll if the entry is not sticky. Every time I add the code to BOTH areas though my blog breaks. The 1st entry will show, but then all the others will show BEHIND the blog. Example
I guess that if I cannot figure this out, I can place the EEpoll code in one area or the other and just not have that functionality.
Thanks for your help ![]()
Luka
