Merhabalar, aşağıdaki linkte bir tema demosu mevcut. Tema ücretsiz dağıtılmakta olup demodaki kurulum gibi bir kurulum yapamıyorum.
content tag yani etiket üzerinden bir featured belirleme imkanı veriyor. Demoda sayısı fazla olmasına karşın ben kurduğumda 2 tanenin üstüne çıkamıyorum.
http://semicolon.kovshenin.com/
--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 13:46:57 -->-> Daha önceki mesaj 13:15:06 --
Aşağıdaki js ile ilgili bir durum olabilir mi aacaba?
Alıntı
// Reset featured and clear states when rendrawing.
if (redraw) {
if ($el.hasClass('semicolon-featured-removed'))
$el.removeClass('semicolon-featured-removed').addClass('semicolon-featured');
if ($el.hasClass('semicolon-clear-left'))
$el.removeClass('semicolon-clear-left');
if ($el.hasClass('semicolon-last'))
$el.removeClass('semicolon-last');
}
/**
* @todo: More featured-unfeatured ideas:
*
* Don't print more than one featured post per row except the first row. Maybe
* don't print featured posts in two consequent rows, so there will always be
* at least one row with 4 non-featured posts in between ones that contain feats.
*/
// Unfeature a post if it's about to be rendered in the last column position
// because it won't fit and wrap instead. Also unfeature the last item on the list.
if ($el.hasClass('semicolon-featured') && columns > 1) {
if (count % columns === columns - 1 || i == $entries.length - 1) {
$el.removeClass('semicolon-featured').addClass('semicolon-featured-removed');
}
}
count += 1;
if (count % columns === 1)
$el.addClass('semicolon-clear-left');
// One ghost element because featured posts take up two columns
if ($el.hasClass('semicolon-featured'))
count += 1;
if (count % columns === 0)
$el.addClass('semicolon-last');
});
});
};